Podcast/lib/angular/i18n/angular-locale_mt.js
2013-04-07 11:37:21 +02:00

98 lines
No EOL
2.3 KiB
JavaScript
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
$provide.value("$locale", {
"DATETIME_FORMATS": {
"AMPMS": {
"0": "QN",
"1": "WN"
},
"DAY": {
"0": "Il-Ħadd",
"1": "It-Tnejn",
"2": "It-Tlieta",
"3": "L-Erbgħa",
"4": "Il-Ħamis",
"5": "Il-Ġimgħa",
"6": "Is-Sibt"
},
"MONTH": {
"0": "Jannar",
"1": "Frar",
"2": "Marzu",
"3": "April",
"4": "Mejju",
"5": "Ġunju",
"6": "Lulju",
"7": "Awwissu",
"8": "Settembru",
"9": "Ottubru",
"10": "Novembru",
"11": "Diċembru"
},
"SHORTDAY": {
"0": "Ħad",
"1": "Tne",
"2": "Tli",
"3": "Erb",
"4": "Ħam",
"5": "Ġim",
"6": "Sib"
},
"SHORTMONTH": {
"0": "Jan",
"1": "Fra",
"2": "Mar",
"3": "Apr",
"4": "Mej",
"5": "Ġun",
"6": "Lul",
"7": "Aww",
"8": "Set",
"9": "Ott",
"10": "Nov",
"11": "Diċ"
},
"fullDate": "EEEE, d 'ta' MMMM y",
"longDate": "d 'ta' MMMM y",
"medium": "dd MMM y HH:mm:ss",
"mediumDate": "dd MMM y",
"mediumTime": "HH:mm:ss",
"short": "dd/MM/yyyy HH:mm",
"shortDate": "dd/MM/yyyy",
"shortTime": "HH:mm"
},
"NUMBER_FORMATS": {
"CURRENCY_SYM": "€",
"DECIMAL_SEP": ".",
"GROUP_SEP": ",",
"PATTERNS": {
"0": {
"gSize": 3,
"lgSize": 3,
"macFrac": 0,
"maxFrac": 3,
"minFrac": 0,
"minInt": 1,
"negPre": "-",
"negSuf": "",
"posPre": "",
"posSuf": ""
},
"1": {
"gSize": 3,
"lgSize": 3,
"macFrac": 0,
"maxFrac": 2,
"minFrac": 2,
"minInt": 1,
"negPre": "\u00A4-",
"negSuf": "",
"posPre": "\u00A4",
"posSuf": ""
}
}
},
"id": "mt",
"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;}
});
}]);