diff options
Diffstat (limited to 'src/ngLocale/angular-locale_ur-in.js')
| -rw-r--r-- | src/ngLocale/angular-locale_ur-in.js | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/src/ngLocale/angular-locale_ur-in.js b/src/ngLocale/angular-locale_ur-in.js new file mode 100644 index 00000000..867fd18f --- /dev/null +++ b/src/ngLocale/angular-locale_ur-in.js @@ -0,0 +1,98 @@ +angular.module("ngLocale", [], ["$provide", function($provide) { +var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"}; +$provide.value("$locale", { + "DATETIME_FORMATS": { + "AMPMS": { + "0": "دن", + "1": "رات" + }, + "DAY": { + "0": "اتوار", + "1": "پير", + "2": "منگل", + "3": "بده", + "4": "جمعرات", + "5": "جمعہ", + "6": "ہفتہ" + }, + "MONTH": { + "0": "جنوری", + "1": "فروری", + "2": "مارچ", + "3": "اپريل", + "4": "مئ", + "5": "جون", + "6": "جولائ", + "7": "اگست", + "8": "ستمبر", + "9": "اکتوبر", + "10": "نومبر", + "11": "دسمبر" + }, + "SHORTDAY": { + "0": "اتوار", + "1": "پير", + "2": "منگل", + "3": "بده", + "4": "جمعرات", + "5": "جمعہ", + "6": "ہفتہ" + }, + "SHORTMONTH": { + "0": "جنوری", + "1": "فروری", + "2": "مارچ", + "3": "اپريل", + "4": "مئ", + "5": "جون", + "6": "جولائ", + "7": "اگست", + "8": "ستمبر", + "9": "اکتوبر", + "10": "نومبر", + "11": "دسمبر" + }, + "fullDate": "EEEE؍ d؍ MMMM y", + "longDate": "d؍ MMMM y", + "medium": "d؍ MMM y h:mm:ss a", + "mediumDate": "d؍ MMM y", + "mediumTime": "h:mm:ss a", + "short": "d/M/yy h:mm a", + "shortDate": "d/M/yy", + "shortTime": "h:mm a" + }, + "NUMBER_FORMATS": { + "CURRENCY_SYM": "Rs", + "DECIMAL_SEP": ".", + "GROUP_SEP": ",", + "PATTERNS": { + "0": { + "gSize": 3, + "lgSize": 3, + "macFrac": 0, + "maxFrac": 3, + "minFrac": 0, + "minInt": 1, + "negPre": "-", + "negSuf": "", + "posPre": "", + "posSuf": "" + }, + "1": { + "gSize": 3, + "lgSize": 3, + "macFrac": 0, + "maxFrac": 2, + "minFrac": 2, + "minInt": 1, + "negPre": "\u00A4-", + "negSuf": "", + "posPre": "\u00A4", + "posSuf": "" + } + } + }, + "id": "ur-in", + "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} +}); +}]);
\ No newline at end of file |
