src/p4l/static/p4l/lib/angular/i18n/angular-locale_es-cr.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       "a.m.",
       
     7       "p.m."
       
     8     ],
       
     9     "DAY": [
       
    10       "domingo",
       
    11       "lunes",
       
    12       "martes",
       
    13       "mi\u00e9rcoles",
       
    14       "jueves",
       
    15       "viernes",
       
    16       "s\u00e1bado"
       
    17     ],
       
    18     "MONTH": [
       
    19       "enero",
       
    20       "febrero",
       
    21       "marzo",
       
    22       "abril",
       
    23       "mayo",
       
    24       "junio",
       
    25       "julio",
       
    26       "agosto",
       
    27       "septiembre",
       
    28       "octubre",
       
    29       "noviembre",
       
    30       "diciembre"
       
    31     ],
       
    32     "SHORTDAY": [
       
    33       "dom",
       
    34       "lun",
       
    35       "mar",
       
    36       "mi\u00e9",
       
    37       "jue",
       
    38       "vie",
       
    39       "s\u00e1b"
       
    40     ],
       
    41     "SHORTMONTH": [
       
    42       "ene",
       
    43       "feb",
       
    44       "mar",
       
    45       "abr",
       
    46       "may",
       
    47       "jun",
       
    48       "jul",
       
    49       "ago",
       
    50       "sep",
       
    51       "oct",
       
    52       "nov",
       
    53       "dic"
       
    54     ],
       
    55     "fullDate": "EEEE, d 'de' MMMM 'de' y",
       
    56     "longDate": "d 'de' MMMM 'de' y",
       
    57     "medium": "dd/MM/yyyy HH:mm:ss",
       
    58     "mediumDate": "dd/MM/yyyy",
       
    59     "mediumTime": "HH:mm:ss",
       
    60     "short": "dd/MM/yy HH:mm",
       
    61     "shortDate": "dd/MM/yy",
       
    62     "shortTime": "HH:mm"
       
    63   },
       
    64   "NUMBER_FORMATS": {
       
    65     "CURRENCY_SYM": "\u20ac",
       
    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": "-",
       
    89         "negSuf": "\u00a0\u00a4",
       
    90         "posPre": "",
       
    91         "posSuf": "\u00a0\u00a4"
       
    92       }
       
    93     ]
       
    94   },
       
    95   "id": "es-cr",
       
    96   "pluralCat": function (n) {  if (n == 1) {   return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
       
    97 });
       
    98 }]);