~lkroland/junk/ExampleApp

« back to all changes in this revision

Viewing changes to app/lib/angular/i18n/angular-locale_mt-mt.js

  • Committer: mobilars
  • Date: 2013-10-31 13:08:25 UTC
  • Revision ID: lars@roland.bz-20131031130825-f25bh8v4j0e6jeb4
First version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
      "QN",
 
7
      "WN"
 
8
    ],
 
9
    "DAY": [
 
10
      "Il-\u0126add",
 
11
      "It-Tnejn",
 
12
      "It-Tlieta",
 
13
      "L-Erbg\u0127a",
 
14
      "Il-\u0126amis",
 
15
      "Il-\u0120img\u0127a",
 
16
      "Is-Sibt"
 
17
    ],
 
18
    "MONTH": [
 
19
      "Jannar",
 
20
      "Frar",
 
21
      "Marzu",
 
22
      "April",
 
23
      "Mejju",
 
24
      "\u0120unju",
 
25
      "Lulju",
 
26
      "Awwissu",
 
27
      "Settembru",
 
28
      "Ottubru",
 
29
      "Novembru",
 
30
      "Di\u010bembru"
 
31
    ],
 
32
    "SHORTDAY": [
 
33
      "\u0126ad",
 
34
      "Tne",
 
35
      "Tli",
 
36
      "Erb",
 
37
      "\u0126am",
 
38
      "\u0120im",
 
39
      "Sib"
 
40
    ],
 
41
    "SHORTMONTH": [
 
42
      "Jan",
 
43
      "Fra",
 
44
      "Mar",
 
45
      "Apr",
 
46
      "Mej",
 
47
      "\u0120un",
 
48
      "Lul",
 
49
      "Aww",
 
50
      "Set",
 
51
      "Ott",
 
52
      "Nov",
 
53
      "Di\u010b"
 
54
    ],
 
55
    "fullDate": "EEEE, d 'ta'\u2019 MMMM y",
 
56
    "longDate": "d 'ta'\u2019 MMMM y",
 
57
    "medium": "dd MMM y HH:mm:ss",
 
58
    "mediumDate": "dd MMM y",
 
59
    "mediumTime": "HH:mm:ss",
 
60
    "short": "dd/MM/yyyy HH:mm",
 
61
    "shortDate": "dd/MM/yyyy",
 
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": "\u00a4-",
 
89
        "negSuf": "",
 
90
        "posPre": "\u00a4",
 
91
        "posSuf": ""
 
92
      }
 
93
    ]
 
94
  },
 
95
  "id": "mt-mt",
 
96
  "pluralCat": function (n) {  if (n == 1) {   return PLURAL_CATEGORY.ONE;  }  if (n == 0 || n == (n | 0) && n % 100 >= 2 && n % 100 <= 10) {   return PLURAL_CATEGORY.FEW;  }  if (n == (n | 0) && n % 100 >= 11 && n % 100 <= 19) {   return PLURAL_CATEGORY.MANY;  }  return PLURAL_CATEGORY.OTHER;}
 
97
});
 
98
}]);
 
 
b'\\ No newline at end of file'