Skip to content

Commit 1db4d0f

Browse files
author
Dominic Watson
committed
chore($ngLocale): Added nb-no and no-no locale files
1 parent 3fc95e0 commit 1db4d0f

File tree

2 files changed

+198
-0
lines changed

2 files changed

+198
-0
lines changed

src/ngLocale/angular-locale_nb-no.js

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
'use strict';
2+
angular.module("ngLocale", [], ["$provide", function($provide) {
3+
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4+
$provide.value("$locale", {
5+
"DATETIME_FORMATS": {
6+
"AMPMS": [
7+
"AM",
8+
"PM"
9+
],
10+
"DAY": [
11+
"s\u00f8ndag",
12+
"mandag",
13+
"tirsdag",
14+
"onsdag",
15+
"torsdag",
16+
"fredag",
17+
"l\u00f8rdag"
18+
],
19+
"MONTH": [
20+
"januar",
21+
"februar",
22+
"mars",
23+
"april",
24+
"mai",
25+
"juni",
26+
"juli",
27+
"august",
28+
"september",
29+
"oktober",
30+
"november",
31+
"desember"
32+
],
33+
"SHORTDAY": [
34+
"s\u00f8n.",
35+
"man.",
36+
"tir.",
37+
"ons.",
38+
"tor.",
39+
"fre.",
40+
"l\u00f8r."
41+
],
42+
"SHORTMONTH": [
43+
"jan.",
44+
"feb.",
45+
"mars",
46+
"apr.",
47+
"mai",
48+
"juni",
49+
"juli",
50+
"aug.",
51+
"sep.",
52+
"okt.",
53+
"nov.",
54+
"des."
55+
],
56+
"fullDate": "EEEE d. MMMM y",
57+
"longDate": "d. MMMM y",
58+
"medium": "d. MMM y HH:mm:ss",
59+
"mediumDate": "d. MMM y",
60+
"mediumTime": "HH:mm:ss",
61+
"short": "dd.MM.yy HH:mm",
62+
"shortDate": "dd.MM.yy",
63+
"shortTime": "HH:mm"
64+
},
65+
"NUMBER_FORMATS": {
66+
"CURRENCY_SYM": "kr",
67+
"DECIMAL_SEP": ",",
68+
"GROUP_SEP": "\u00a0",
69+
"PATTERNS": [
70+
{
71+
"gSize": 3,
72+
"lgSize": 3,
73+
"macFrac": 0,
74+
"maxFrac": 3,
75+
"minFrac": 0,
76+
"minInt": 1,
77+
"negPre": "-",
78+
"negSuf": "",
79+
"posPre": "",
80+
"posSuf": ""
81+
},
82+
{
83+
"gSize": 3,
84+
"lgSize": 3,
85+
"macFrac": 0,
86+
"maxFrac": 2,
87+
"minFrac": 2,
88+
"minInt": 1,
89+
"negPre": "\u00a4\u00a0-",
90+
"negSuf": "",
91+
"posPre": "\u00a4\u00a0",
92+
"posSuf": ""
93+
}
94+
]
95+
},
96+
"id": "nb-no",
97+
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98+
});
99+
}]);

src/ngLocale/angular-locale_no-no.js

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
'use strict';
2+
angular.module("ngLocale", [], ["$provide", function($provide) {
3+
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4+
$provide.value("$locale", {
5+
"DATETIME_FORMATS": {
6+
"AMPMS": [
7+
"AM",
8+
"PM"
9+
],
10+
"DAY": [
11+
"s\u00f8ndag",
12+
"mandag",
13+
"tirsdag",
14+
"onsdag",
15+
"torsdag",
16+
"fredag",
17+
"l\u00f8rdag"
18+
],
19+
"MONTH": [
20+
"januar",
21+
"februar",
22+
"mars",
23+
"april",
24+
"mai",
25+
"juni",
26+
"juli",
27+
"august",
28+
"september",
29+
"oktober",
30+
"november",
31+
"desember"
32+
],
33+
"SHORTDAY": [
34+
"s\u00f8n.",
35+
"man.",
36+
"tir.",
37+
"ons.",
38+
"tor.",
39+
"fre.",
40+
"l\u00f8r."
41+
],
42+
"SHORTMONTH": [
43+
"jan.",
44+
"feb.",
45+
"mars",
46+
"apr.",
47+
"mai",
48+
"juni",
49+
"juli",
50+
"aug.",
51+
"sep.",
52+
"okt.",
53+
"nov.",
54+
"des."
55+
],
56+
"fullDate": "EEEE d. MMMM y",
57+
"longDate": "d. MMMM y",
58+
"medium": "d. MMM y HH:mm:ss",
59+
"mediumDate": "d. MMM y",
60+
"mediumTime": "HH:mm:ss",
61+
"short": "dd.MM.yy HH:mm",
62+
"shortDate": "dd.MM.yy",
63+
"shortTime": "HH:mm"
64+
},
65+
"NUMBER_FORMATS": {
66+
"CURRENCY_SYM": "kr",
67+
"DECIMAL_SEP": ",",
68+
"GROUP_SEP": "\u00a0",
69+
"PATTERNS": [
70+
{
71+
"gSize": 3,
72+
"lgSize": 3,
73+
"macFrac": 0,
74+
"maxFrac": 3,
75+
"minFrac": 0,
76+
"minInt": 1,
77+
"negPre": "-",
78+
"negSuf": "",
79+
"posPre": "",
80+
"posSuf": ""
81+
},
82+
{
83+
"gSize": 3,
84+
"lgSize": 3,
85+
"macFrac": 0,
86+
"maxFrac": 2,
87+
"minFrac": 2,
88+
"minInt": 1,
89+
"negPre": "\u00a4\u00a0-",
90+
"negSuf": "",
91+
"posPre": "\u00a4\u00a0",
92+
"posSuf": ""
93+
}
94+
]
95+
},
96+
"id": "no-no",
97+
"pluralCat": function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98+
});
99+
}]);

0 commit comments

Comments
 (0)