~lkroland/junk/ExampleApp

« back to all changes in this revision

Viewing changes to app/lib/angular/i18n/angular-locale_en-be.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
      "AM",
 
7
      "PM"
 
8
    ],
 
9
    "DAY": [
 
10
      "Sunday",
 
11
      "Monday",
 
12
      "Tuesday",
 
13
      "Wednesday",
 
14
      "Thursday",
 
15
      "Friday",
 
16
      "Saturday"
 
17
    ],
 
18
    "MONTH": [
 
19
      "January",
 
20
      "February",
 
21
      "March",
 
22
      "April",
 
23
      "May",
 
24
      "June",
 
25
      "July",
 
26
      "August",
 
27
      "September",
 
28
      "October",
 
29
      "November",
 
30
      "December"
 
31
    ],
 
32
    "SHORTDAY": [
 
33
      "Sun",
 
34
      "Mon",
 
35
      "Tue",
 
36
      "Wed",
 
37
      "Thu",
 
38
      "Fri",
 
39
      "Sat"
 
40
    ],
 
41
    "SHORTMONTH": [
 
42
      "Jan",
 
43
      "Feb",
 
44
      "Mar",
 
45
      "Apr",
 
46
      "May",
 
47
      "Jun",
 
48
      "Jul",
 
49
      "Aug",
 
50
      "Sep",
 
51
      "Oct",
 
52
      "Nov",
 
53
      "Dec"
 
54
    ],
 
55
    "fullDate": "EEEE d MMMM y",
 
56
    "longDate": "d MMM y",
 
57
    "medium": "dd MMM y HH:mm:ss",
 
58
    "mediumDate": "dd MMM y",
 
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": "$",
 
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": "en-be",
 
96
  "pluralCat": function (n) {  if (n == 1) {   return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
 
97
});
 
98
}]);
 
 
b'\\ No newline at end of file'