~lkroland/junk/ExampleApp

« back to all changes in this revision

Viewing changes to app/lib/angular/i18n/angular-locale_de.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
      "vorm.",
 
7
      "nachm."
 
8
    ],
 
9
    "DAY": [
 
10
      "Sonntag",
 
11
      "Montag",
 
12
      "Dienstag",
 
13
      "Mittwoch",
 
14
      "Donnerstag",
 
15
      "Freitag",
 
16
      "Samstag"
 
17
    ],
 
18
    "MONTH": [
 
19
      "Januar",
 
20
      "Februar",
 
21
      "M\u00e4rz",
 
22
      "April",
 
23
      "Mai",
 
24
      "Juni",
 
25
      "Juli",
 
26
      "August",
 
27
      "September",
 
28
      "Oktober",
 
29
      "November",
 
30
      "Dezember"
 
31
    ],
 
32
    "SHORTDAY": [
 
33
      "So.",
 
34
      "Mo.",
 
35
      "Di.",
 
36
      "Mi.",
 
37
      "Do.",
 
38
      "Fr.",
 
39
      "Sa."
 
40
    ],
 
41
    "SHORTMONTH": [
 
42
      "Jan",
 
43
      "Feb",
 
44
      "M\u00e4r",
 
45
      "Apr",
 
46
      "Mai",
 
47
      "Jun",
 
48
      "Jul",
 
49
      "Aug",
 
50
      "Sep",
 
51
      "Okt",
 
52
      "Nov",
 
53
      "Dez"
 
54
    ],
 
55
    "fullDate": "EEEE, d. MMMM y",
 
56
    "longDate": "d. MMMM 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": "de",
 
96
  "pluralCat": function (n) {  if (n == 1) {   return PLURAL_CATEGORY.ONE;  }  return PLURAL_CATEGORY.OTHER;}
 
97
});
 
98
}]);
 
 
b'\\ No newline at end of file'