diff options
| author | Chirayu Krishnappa | 2013-03-18 15:54:18 -0700 |
|---|---|---|
| committer | Chirayu Krishnappa | 2013-03-20 15:50:07 -0700 |
| commit | 0c72708a2bb123d2772f5c6b8cb6adc61f197a72 (patch) | |
| tree | c0aea4bbeeff58cf5a55226dce26c7e7e1c58635 /src/ngLocale/angular-locale_ca-ad.js | |
| parent | fec2909f3a5e97bfabbb65d957e0d20d1a588e40 (diff) | |
| download | angular.js-0c72708a2bb123d2772f5c6b8cb6adc61f197a72.tar.bz2 | |
chore($ngLocale): generate ngLocale files from the Closure code (includes datetimesymbolsext.js)
Diffstat (limited to 'src/ngLocale/angular-locale_ca-ad.js')
| -rw-r--r-- | src/ngLocale/angular-locale_ca-ad.js | 96 |
1 files changed, 95 insertions, 1 deletions
diff --git a/src/ngLocale/angular-locale_ca-ad.js b/src/ngLocale/angular-locale_ca-ad.js index bc7cc7f2..79735b1a 100644 --- a/src/ngLocale/angular-locale_ca-ad.js +++ b/src/ngLocale/angular-locale_ca-ad.js @@ -1,4 +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", {"NUMBER_FORMATS":{"DECIMAL_SEP":",","GROUP_SEP":".","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4","posSuf":"","negPre":"(\u00A4","negSuf":")","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"€"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["de gener","de febrer","de març","d’abril","de maig","de juny","de juliol","d’agost","de setembre","d’octubre","de novembre","de desembre"],"SHORTMONTH":["de gen.","de febr.","de març","d’abr.","de maig","de juny","de jul.","d’ag.","de set.","d’oct.","de nov.","de des."],"DAY":["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],"SHORTDAY":["dg.","dl.","dt.","dc.","dj.","dv.","ds."],"AMPMS":["a.m.","p.m."],"medium":"dd/MM/yyyy H:mm:ss","short":"dd/MM/yy H:mm","fullDate":"EEEE d MMMM 'de' y","longDate":"d MMMM 'de' y","mediumDate":"dd/MM/yyyy","shortDate":"dd/MM/yy","mediumTime":"H:mm:ss","shortTime":"H:mm"},"id":"ca-ad"}); +$provide.value("$locale", { + "DATETIME_FORMATS": { + "AMPMS": { + "0": "a.m.", + "1": "p.m." + }, + "DAY": { + "0": "diumenge", + "1": "dilluns", + "2": "dimarts", + "3": "dimecres", + "4": "dijous", + "5": "divendres", + "6": "dissabte" + }, + "MONTH": { + "0": "de gener", + "1": "de febrer", + "2": "de març", + "3": "d’abril", + "4": "de maig", + "5": "de juny", + "6": "de juliol", + "7": "d’agost", + "8": "de setembre", + "9": "d’octubre", + "10": "de novembre", + "11": "de desembre" + }, + "SHORTDAY": { + "0": "dg.", + "1": "dl.", + "2": "dt.", + "3": "dc.", + "4": "dj.", + "5": "dv.", + "6": "ds." + }, + "SHORTMONTH": { + "0": "de gen.", + "1": "de febr.", + "2": "de març", + "3": "d’abr.", + "4": "de maig", + "5": "de juny", + "6": "de jul.", + "7": "d’ag.", + "8": "de set.", + "9": "d’oct.", + "10": "de nov.", + "11": "de des." + }, + "fullDate": "EEEE d MMMM 'de' y", + "longDate": "d MMMM 'de' y", + "medium": "dd/MM/yyyy H:mm:ss", + "mediumDate": "dd/MM/yyyy", + "mediumTime": "H:mm:ss", + "short": "dd/MM/yy H:mm", + "shortDate": "dd/MM/yy", + "shortTime": "H:mm" + }, + "NUMBER_FORMATS": { + "CURRENCY_SYM": "€", + "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": "ca-ad", + "pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} +}); }]);
\ No newline at end of file |
