Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc6ce59

Browse files
committed
chore(ngLocale): update ngLocale scripts
1 parent 96a3147 commit fc6ce59

36 files changed

+3370
-4
lines changed

src/ngLocale/angular-locale_fr-rw.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+
"dimanche",
12+
"lundi",
13+
"mardi",
14+
"mercredi",
15+
"jeudi",
16+
"vendredi",
17+
"samedi"
18+
],
19+
"MONTH": [
20+
"janvier",
21+
"f\u00e9vrier",
22+
"mars",
23+
"avril",
24+
"mai",
25+
"juin",
26+
"juillet",
27+
"ao\u00fbt",
28+
"septembre",
29+
"octobre",
30+
"novembre",
31+
"d\u00e9cembre"
32+
],
33+
"SHORTDAY": [
34+
"dim.",
35+
"lun.",
36+
"mar.",
37+
"mer.",
38+
"jeu.",
39+
"ven.",
40+
"sam."
41+
],
42+
"SHORTMONTH": [
43+
"janv.",
44+
"f\u00e9vr.",
45+
"mars",
46+
"avr.",
47+
"mai",
48+
"juin",
49+
"juil.",
50+
"ao\u00fbt",
51+
"sept.",
52+
"oct.",
53+
"nov.",
54+
"d\u00e9c."
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": "\u20ac",
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": "(",
90+
"negSuf": "\u00a0\u00a4)",
91+
"posPre": "",
92+
"posSuf": "\u00a0\u00a4"
93+
}
94+
]
95+
},
96+
"id": "fr-rw",
97+
"pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98+
});
99+
}]);

src/ngLocale/angular-locale_fr-sn.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+
"dimanche",
12+
"lundi",
13+
"mardi",
14+
"mercredi",
15+
"jeudi",
16+
"vendredi",
17+
"samedi"
18+
],
19+
"MONTH": [
20+
"janvier",
21+
"f\u00e9vrier",
22+
"mars",
23+
"avril",
24+
"mai",
25+
"juin",
26+
"juillet",
27+
"ao\u00fbt",
28+
"septembre",
29+
"octobre",
30+
"novembre",
31+
"d\u00e9cembre"
32+
],
33+
"SHORTDAY": [
34+
"dim.",
35+
"lun.",
36+
"mar.",
37+
"mer.",
38+
"jeu.",
39+
"ven.",
40+
"sam."
41+
],
42+
"SHORTMONTH": [
43+
"janv.",
44+
"f\u00e9vr.",
45+
"mars",
46+
"avr.",
47+
"mai",
48+
"juin",
49+
"juil.",
50+
"ao\u00fbt",
51+
"sept.",
52+
"oct.",
53+
"nov.",
54+
"d\u00e9c."
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": "\u20ac",
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": "(",
90+
"negSuf": "\u00a0\u00a4)",
91+
"posPre": "",
92+
"posSuf": "\u00a0\u00a4"
93+
}
94+
]
95+
},
96+
"id": "fr-sn",
97+
"pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98+
});
99+
}]);

src/ngLocale/angular-locale_fr-td.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+
"dimanche",
12+
"lundi",
13+
"mardi",
14+
"mercredi",
15+
"jeudi",
16+
"vendredi",
17+
"samedi"
18+
],
19+
"MONTH": [
20+
"janvier",
21+
"f\u00e9vrier",
22+
"mars",
23+
"avril",
24+
"mai",
25+
"juin",
26+
"juillet",
27+
"ao\u00fbt",
28+
"septembre",
29+
"octobre",
30+
"novembre",
31+
"d\u00e9cembre"
32+
],
33+
"SHORTDAY": [
34+
"dim.",
35+
"lun.",
36+
"mar.",
37+
"mer.",
38+
"jeu.",
39+
"ven.",
40+
"sam."
41+
],
42+
"SHORTMONTH": [
43+
"janv.",
44+
"f\u00e9vr.",
45+
"mars",
46+
"avr.",
47+
"mai",
48+
"juin",
49+
"juil.",
50+
"ao\u00fbt",
51+
"sept.",
52+
"oct.",
53+
"nov.",
54+
"d\u00e9c."
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": "\u20ac",
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": "(",
90+
"negSuf": "\u00a0\u00a4)",
91+
"posPre": "",
92+
"posSuf": "\u00a0\u00a4"
93+
}
94+
]
95+
},
96+
"id": "fr-td",
97+
"pluralCat": function (n) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;}
98+
});
99+
}]);

0 commit comments

Comments
 (0)