src/p4l/static/p4l/lib/angular/i18n/angular-locale_zu-za.js
changeset 47 b07f8d11f2b8
child 166 0f99a7fff851
equal deleted inserted replaced
46:1cee12d1d400 47:b07f8d11f2b8
       
     1 angular.module("ngLocale", [], ["$provide", function($provide) {
       
     2 var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
       
     3 $provide.value("$locale", {
       
     4   "DATETIME_FORMATS": {
       
     5     "AMPMS": [
       
     6       "AM",
       
     7       "PM"
       
     8     ],
       
     9     "DAY": [
       
    10       "Sonto",
       
    11       "Msombuluko",
       
    12       "Lwesibili",
       
    13       "Lwesithathu",
       
    14       "uLwesine",
       
    15       "Lwesihlanu",
       
    16       "Mgqibelo"
       
    17     ],
       
    18     "MONTH": [
       
    19       "Januwari",
       
    20       "Februwari",
       
    21       "Mashi",
       
    22       "Apreli",
       
    23       "Meyi",
       
    24       "Juni",
       
    25       "Julayi",
       
    26       "Agasti",
       
    27       "Septhemba",
       
    28       "Okthoba",
       
    29       "Novemba",
       
    30       "Disemba"
       
    31     ],
       
    32     "SHORTDAY": [
       
    33       "Son",
       
    34       "Mso",
       
    35       "Bil",
       
    36       "Tha",
       
    37       "Sin",
       
    38       "Hla",
       
    39       "Mgq"
       
    40     ],
       
    41     "SHORTMONTH": [
       
    42       "Jan",
       
    43       "Feb",
       
    44       "Mas",
       
    45       "Apr",
       
    46       "Mey",
       
    47       "Jun",
       
    48       "Jul",
       
    49       "Aga",
       
    50       "Sep",
       
    51       "Okt",
       
    52       "Nov",
       
    53       "Dis"
       
    54     ],
       
    55     "fullDate": "EEEE dd MMMM y",
       
    56     "longDate": "d MMMM y",
       
    57     "medium": "d MMM y h:mm:ss a",
       
    58     "mediumDate": "d MMM y",
       
    59     "mediumTime": "h:mm:ss a",
       
    60     "short": "yyyy-MM-dd h:mm a",
       
    61     "shortDate": "yyyy-MM-dd",
       
    62     "shortTime": "h:mm a"
       
    63   },
       
    64   "NUMBER_FORMATS": {
       
    65     "CURRENCY_SYM": "R",
       
    66     "DECIMAL_SEP": ".",
       
    67     "GROUP_SEP": ",",
       
    68     "PATTERNS": [
       
    69       {
       
    70         "gSize": 3,
       
    71         "lgSize": 3,
       
    72         "macFrac": 0,
       
    73         "maxFrac": 3,
       
    74         "minFrac": 0,
       
    75         "minInt": 1,
       
    76         "negPre": "-",
       
    77         "negSuf": "",
       
    78         "posPre": "",
       
    79         "posSuf": ""
       
    80       },
       
    81       {
       
    82         "gSize": 3,
       
    83         "lgSize": 3,
       
    84         "macFrac": 0,
       
    85         "maxFrac": 2,
       
    86         "minFrac": 2,
       
    87         "minInt": 1,
       
    88         "negPre": "(\u00a4",
       
    89         "negSuf": ")",
       
    90         "posPre": "\u00a4",
       
    91         "posSuf": ""
       
    92       }
       
    93     ]
       
    94   },
       
    95   "id": "zu-za",
       
    96   "pluralCat": function (n) {  if (n == 1) {   return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
       
    97 });
       
    98 }]);