mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-22220 CLDR release-43-alpha1 to ICU main
This commit is contained in:
parent
bd065d4704
commit
d469e628f3
2765 changed files with 137706 additions and 2331 deletions
File diff suppressed because it is too large
Load diff
|
@ -114,7 +114,20 @@ uscript_getCode(const char* nameOrAbbrOrLocale,
|
|||
}
|
||||
|
||||
triedCode = false;
|
||||
if(uprv_strchr(nameOrAbbrOrLocale, '-')==nullptr && uprv_strchr(nameOrAbbrOrLocale, '_')==nullptr ){
|
||||
const char* lastSepPtr = uprv_strrchr(nameOrAbbrOrLocale, '-');
|
||||
if (lastSepPtr==nullptr) {
|
||||
lastSepPtr = uprv_strrchr(nameOrAbbrOrLocale, '_');
|
||||
}
|
||||
// Favor interpretation of nameOrAbbrOrLocale as a script alias if either
|
||||
// 1. nameOrAbbrOrLocale does not contain -/_. Handles Han, Mro, Nko, etc.
|
||||
// 2. The last instance of -/_ is at offset 3, and the portion after that is
|
||||
// longer than 4 characters (i.e. not a script or region code). This handles
|
||||
// Old_Hungarian, Old_Italic, etc. ("old" is a valid language code)
|
||||
// 3. The last instance of -/_ is at offset 7, and the portion after that is
|
||||
// 3 characters. This handles New_Tai_Lue ("new" is a valid language code).
|
||||
if (lastSepPtr==nullptr
|
||||
|| (lastSepPtr-nameOrAbbrOrLocale == 3 && uprv_strlen(nameOrAbbrOrLocale) > 8)
|
||||
|| (lastSepPtr-nameOrAbbrOrLocale == 7 && uprv_strlen(nameOrAbbrOrLocale) == 11) ) {
|
||||
/* try long and abbreviated script names first */
|
||||
UScriptCode code = (UScriptCode) u_getPropertyValueEnum(UCHAR_SCRIPT, nameOrAbbrOrLocale);
|
||||
if(code!=USCRIPT_INVALID_CODE) {
|
||||
|
|
|
@ -1121,6 +1121,10 @@ af{
|
|||
one{"Liberiese dollar"}
|
||||
other{"Liberiese dollar"}
|
||||
}
|
||||
LSL{
|
||||
one{"Lesotho loti"}
|
||||
other{"Lesotho loti"}
|
||||
}
|
||||
LTL{
|
||||
one{"Litause litas"}
|
||||
other{"Litause litas"}
|
||||
|
|
|
@ -1104,6 +1104,10 @@ am{
|
|||
one{"የላይቤሪያ ዶላር"}
|
||||
other{"የላይቤሪያ ዶላር"}
|
||||
}
|
||||
LSL{
|
||||
one{"የሌሶቶ ሎቲ"}
|
||||
other{"የሌሶቶ ሎቲ"}
|
||||
}
|
||||
LTL{
|
||||
one{"ሊቱዌንያን ሊታስ"}
|
||||
other{"ሊቱዌንያን ሊታስ"}
|
||||
|
|
|
@ -1532,6 +1532,10 @@ bn{
|
|||
one{"লিবেরিয়ান ডলার"}
|
||||
other{"লিবেরিয়ান ডলার"}
|
||||
}
|
||||
LSL{
|
||||
one{"লেসুটু লোটি"}
|
||||
other{"লেসুটু লোটি"}
|
||||
}
|
||||
LTL{
|
||||
one{"লিথুইনিয়ান লিটা"}
|
||||
other{"লিথুইনিয়ান লিটা"}
|
||||
|
|
|
@ -1133,6 +1133,9 @@ bs_Cyrl{
|
|||
"Зимбабвеански долар (2008)",
|
||||
}
|
||||
}
|
||||
Currencies%narrow{
|
||||
BYN{"BYN"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
ADP{
|
||||
few{"андорске пезете"}
|
||||
|
|
|
@ -632,6 +632,9 @@ ceb{
|
|||
"Zambian Kwacha",
|
||||
}
|
||||
}
|
||||
Currencies%narrow{
|
||||
BYN{"BYN"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
AED{
|
||||
one{"UAE dirham"}
|
||||
|
|
|
@ -2520,6 +2520,10 @@ eu{
|
|||
one{"rand hegoafrikar"}
|
||||
other{"rand hegoafrikar"}
|
||||
}
|
||||
ZMK{
|
||||
one{"Zambiako kwacha (1968–2012)"}
|
||||
other{"Zambiako kwacha (1968–2012)"}
|
||||
}
|
||||
ZMW{
|
||||
one{"kwacha zambiar"}
|
||||
other{"kwacha zambiar"}
|
||||
|
|
|
@ -1158,6 +1158,10 @@ fa{
|
|||
one{"بولیویانوی بولیوی"}
|
||||
other{"بولیویانوی بولیوی"}
|
||||
}
|
||||
BOP{
|
||||
one{"پزوی بولیوی"}
|
||||
other{"پزوی بولیوی"}
|
||||
}
|
||||
BRL{
|
||||
one{"رئال برزیل"}
|
||||
other{"رئال برزیل"}
|
||||
|
|
|
@ -1581,4 +1581,8 @@ ff_Adlm{
|
|||
other{"𞤳𞤢𞤱𞤢𞤧𞤢𞥄𞤶𞤭 𞤟𞤢𞤥𞤦𞤭𞤲𞤳𞤮"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1165,6 +1165,7 @@ ga{
|
|||
BRL{"R$"}
|
||||
BSD{"$"}
|
||||
BWP{"P"}
|
||||
BYN{"BYN"}
|
||||
BZD{"$"}
|
||||
CAD{"$"}
|
||||
CLP{"$"}
|
||||
|
|
|
@ -1091,6 +1091,10 @@ gu{
|
|||
one{"લિબેરિયન ડોલર"}
|
||||
other{"લિબેરિયન ડોલર"}
|
||||
}
|
||||
LSL{
|
||||
one{"લેસોથો લોતી"}
|
||||
other{"લેસોથો લોતી"}
|
||||
}
|
||||
LTL{
|
||||
one{"લિથુએનિયન લિતાસ"}
|
||||
other{"લિથુએનિયન લિતાસ"}
|
||||
|
|
|
@ -662,8 +662,13 @@ ha{
|
|||
}
|
||||
Currencies%narrow{
|
||||
AUD{"$"}
|
||||
BYN{"BYN"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
AED{
|
||||
one{"Kuɗin Haɗaɗɗiyar Daular Larabawa"}
|
||||
other{"Kuɗin Haɗaɗɗiyar Daular Larabawa"}
|
||||
}
|
||||
AFN{
|
||||
one{"Afghani na ƙasar Afghanistan"}
|
||||
other{"Afghani na ƙasar Afghanistan"}
|
||||
|
@ -680,6 +685,10 @@ ha{
|
|||
one{"Antillean guilder na ƙasar Netherlands"}
|
||||
other{"Antillean Guilder na ƙasar Netherlands"}
|
||||
}
|
||||
AOA{
|
||||
one{"Kuɗin Angola"}
|
||||
other{"Kuɗin Angola"}
|
||||
}
|
||||
ARS{
|
||||
one{"peso na ƙasar Argentina"}
|
||||
other{"Peso na ƙasar Argentina"}
|
||||
|
@ -700,6 +709,10 @@ ha{
|
|||
one{"Kuɗaɗen Bosnia da Herzegovina"}
|
||||
other{"Kuɗaɗen Bosnia da Herzegovina"}
|
||||
}
|
||||
BBD{
|
||||
one{"Dalar ƙasar Barbados"}
|
||||
other{"Dalar ƙasar Barbados"}
|
||||
}
|
||||
BDT{
|
||||
one{"taka na ƙasar Bangladesh"}
|
||||
other{"Taka na ƙasar Bangladesh"}
|
||||
|
@ -708,6 +721,18 @@ ha{
|
|||
one{"Kuɗin Bulgeria"}
|
||||
other{"Kuɗin Bulgeria"}
|
||||
}
|
||||
BHD{
|
||||
one{"Kuɗin Baharan"}
|
||||
other{"Kuɗin Baharan"}
|
||||
}
|
||||
BIF{
|
||||
one{"Kuɗin Burundi"}
|
||||
other{"Kuɗin Burundi"}
|
||||
}
|
||||
BMD{
|
||||
one{"Dalar ƙasar Bermuda"}
|
||||
other{"Dalar ƙasar Bermuda"}
|
||||
}
|
||||
BND{
|
||||
one{"Dalolin Brunei"}
|
||||
other{"Dalolin Brunei"}
|
||||
|
@ -728,6 +753,10 @@ ha{
|
|||
one{"ngultrum na ƙasar Bhutan"}
|
||||
other{"Ngultrum na ƙasar Bhutan"}
|
||||
}
|
||||
BWP{
|
||||
one{"Kuɗin Baswana"}
|
||||
other{"Kuɗin Baswana"}
|
||||
}
|
||||
BYN{
|
||||
one{"Kuɗin Belarus"}
|
||||
other{"Kuɗin Belarus"}
|
||||
|
@ -736,6 +765,18 @@ ha{
|
|||
one{"Dalar ƙasar Belize"}
|
||||
other{"Dalar ƙasar Belize"}
|
||||
}
|
||||
CAD{
|
||||
one{"Dalar Kanada"}
|
||||
other{"Dalar Kanada"}
|
||||
}
|
||||
CDF{
|
||||
one{"Kuɗin Kongo"}
|
||||
other{"Kuɗin Kongo"}
|
||||
}
|
||||
CHF{
|
||||
one{"Kuɗin Suwizalan"}
|
||||
other{"Kuɗin Suwizalan"}
|
||||
}
|
||||
CLP{
|
||||
one{"peso na ƙasar Chile"}
|
||||
other{"Peso na ƙasar Chile"}
|
||||
|
@ -756,14 +797,26 @@ ha{
|
|||
one{"colón na ƙasar Costa Rica"}
|
||||
other{"colón na ƙasar Costa Rica"}
|
||||
}
|
||||
CUC{
|
||||
one{"Peso mai fuska biyu na ƙasar Kuba"}
|
||||
other{"Peso mai fuska biyu na ƙasar Kuba"}
|
||||
}
|
||||
CUP{
|
||||
one{"peso na ƙasar Cuba"}
|
||||
other{"Peso na ƙasar Kuba"}
|
||||
}
|
||||
CVE{
|
||||
one{"Kuɗin Tsibiran Kap Barde"}
|
||||
other{"Kuɗin Tsibiran Kap Barde"}
|
||||
}
|
||||
CZK{
|
||||
one{"kuɗin Czech"}
|
||||
other{"Kuɗin Czech"}
|
||||
}
|
||||
DJF{
|
||||
one{"Kuɗin Jibuti"}
|
||||
other{"Kuɗin Jibuti"}
|
||||
}
|
||||
DKK{
|
||||
one{"krone na ƙasar Denmark"}
|
||||
other{"Krone na ƙasar Denmark"}
|
||||
|
@ -780,10 +833,26 @@ ha{
|
|||
one{"Fam na Masar"}
|
||||
other{"Fam na Masar"}
|
||||
}
|
||||
ERN{
|
||||
one{"Kuɗin Eritireya"}
|
||||
other{"Kuɗin Eritireya"}
|
||||
}
|
||||
ETB{
|
||||
one{"Kuɗin Habasha"}
|
||||
other{"Kuɗin Habasha"}
|
||||
}
|
||||
EUR{
|
||||
one{"Yuro"}
|
||||
other{"Yuro"}
|
||||
}
|
||||
FJD{
|
||||
one{"Dalolin Fiji"}
|
||||
other{"Dalolin Fiji"}
|
||||
}
|
||||
FKP{
|
||||
one{"Fam na ƙasar Tsibirai na Falkland"}
|
||||
other{"Fam na ƙasar Tsibirai na Falkland"}
|
||||
}
|
||||
GBP{
|
||||
one{"Fam na Ingila"}
|
||||
other{"Fam na Ingila"}
|
||||
|
@ -800,6 +869,10 @@ ha{
|
|||
one{"Kuɗin Gibraltal"}
|
||||
other{"Kuɗin Gibraltal"}
|
||||
}
|
||||
GMD{
|
||||
one{"Kuɗin Gambiya"}
|
||||
other{"Kuɗin Gambiya"}
|
||||
}
|
||||
GNF{
|
||||
one{"Kuɗin Guinea"}
|
||||
other{"Kuɗin Guinea"}
|
||||
|
@ -840,6 +913,10 @@ ha{
|
|||
one{"Sabbin Kuɗin Israʼila"}
|
||||
other{"Sabbin Kuɗin Israʼila"}
|
||||
}
|
||||
INR{
|
||||
one{"Kuɗin Indiya"}
|
||||
other{"Kuɗin Indiya"}
|
||||
}
|
||||
IQD{
|
||||
one{"dinarin Iraqi"}
|
||||
other{"Dinarin Iraqi"}
|
||||
|
@ -864,6 +941,10 @@ ha{
|
|||
one{"Yen na ƙasar Japan"}
|
||||
other{"Yen na ƙasar Japan"}
|
||||
}
|
||||
KES{
|
||||
one{"Sulen Kenya"}
|
||||
other{"Sulen Kenya"}
|
||||
}
|
||||
KGS{
|
||||
one{"som na ƙasar Kyrgystani"}
|
||||
other{"Som na ƙasar Kyrgystani"}
|
||||
|
@ -872,6 +953,10 @@ ha{
|
|||
one{"riel na ƙasar Cambodia"}
|
||||
other{"Riel na ƙasar Cambodia"}
|
||||
}
|
||||
KMF{
|
||||
one{"Kuɗin Kwamoras"}
|
||||
other{"Kuɗin Kwamoras"}
|
||||
}
|
||||
KPW{
|
||||
one{"won na ƙasar Koriya ta Arewa"}
|
||||
other{"won na ƙasar Koriya ta Arewa"}
|
||||
|
@ -904,6 +989,10 @@ ha{
|
|||
one{"rupee na ƙasar Sri Lanka"}
|
||||
other{"Rupee na ƙasar Sri Lanka"}
|
||||
}
|
||||
LRD{
|
||||
one{"Dalar Laberiya"}
|
||||
other{"Dalar Laberiya"}
|
||||
}
|
||||
LSL{
|
||||
one{"Kuɗaɗen Lesoto"}
|
||||
other{"Kuɗaɗen Lesoto"}
|
||||
|
@ -920,6 +1009,10 @@ ha{
|
|||
one{"Kuɗaɗen Moldova"}
|
||||
other{"kuɗaɗen Moldova"}
|
||||
}
|
||||
MGA{
|
||||
one{"Kuɗin Madagaskar"}
|
||||
other{"Kuɗin Madagaskar"}
|
||||
}
|
||||
MKD{
|
||||
one{"Dinarin Macedonia"}
|
||||
other{"Dinarin Macedonia"}
|
||||
|
@ -936,10 +1029,22 @@ ha{
|
|||
one{"pataca na ƙasar Macao"}
|
||||
other{"Pataca na ƙasar Macao"}
|
||||
}
|
||||
MRU{
|
||||
one{"Kuɗin Moritaniya"}
|
||||
other{"Kuɗin Moritaniya"}
|
||||
}
|
||||
MUR{
|
||||
one{"Kuɗin Moritus"}
|
||||
other{"Kuɗin Moritus"}
|
||||
}
|
||||
MVR{
|
||||
one{"Rufiyaa na ɓasar Maldives"}
|
||||
other{"Rufiyaa na ɓasar Maldives"}
|
||||
}
|
||||
MWK{
|
||||
one{"Kuɗin Malawi"}
|
||||
other{"Kuɗin Malawi"}
|
||||
}
|
||||
MXN{
|
||||
one{"peso na ƙasar Mekziko"}
|
||||
other{"peso na ƙasar Mekziko"}
|
||||
|
@ -952,6 +1057,10 @@ ha{
|
|||
one{"metical na ƙasar Mozambique"}
|
||||
other{"Metical na ƙasar Mozambique"}
|
||||
}
|
||||
NAD{
|
||||
one{"Dalar Namibiya"}
|
||||
other{"Dalar Namibiya"}
|
||||
}
|
||||
NGN{
|
||||
one{"Nairar Nijeriya"}
|
||||
other{"Nairar Nijeriya"}
|
||||
|
@ -1020,6 +1129,10 @@ ha{
|
|||
one{"Ruble na ƙasar Rasha"}
|
||||
other{"Ruble na ƙasar Rasha"}
|
||||
}
|
||||
RWF{
|
||||
one{"Kuɗin Ruwanda"}
|
||||
other{"Kuɗin Ruwanda"}
|
||||
}
|
||||
SAR{
|
||||
one{"Riyal ɗin Saudiyya"}
|
||||
other{"Riyal"}
|
||||
|
@ -1028,6 +1141,10 @@ ha{
|
|||
one{"Dalolin Tsibirai na Solomon"}
|
||||
other{"Dalolin Tsibirai na Solomon"}
|
||||
}
|
||||
SCR{
|
||||
one{"Kuɗin Saishal"}
|
||||
other{"Kuɗin Saishal"}
|
||||
}
|
||||
SDG{
|
||||
one{"Fam na Sudan"}
|
||||
other{"Fam na Sudan"}
|
||||
|
@ -1048,6 +1165,10 @@ ha{
|
|||
one{"Kuɗin Saliyo"}
|
||||
other{"Kuɗin Saliyo"}
|
||||
}
|
||||
SOS{
|
||||
one{"Sulen Somaliya"}
|
||||
other{"Sulen Somaliya"}
|
||||
}
|
||||
SRD{
|
||||
one{"dalar ƙasar Suriname"}
|
||||
other{"Dalar ƙasar Suriname"}
|
||||
|
@ -1056,10 +1177,18 @@ ha{
|
|||
one{"fam na Kudancin Sudan"}
|
||||
other{"Fam na Kudancin Sudan"}
|
||||
}
|
||||
STN{
|
||||
one{"Kuɗin Sawo Tome da Paransip"}
|
||||
other{"Kuɗin Sawo Tome da Paransip"}
|
||||
}
|
||||
SYP{
|
||||
one{"Kuɗin Siriya"}
|
||||
other{"Kuɗin Siriya"}
|
||||
}
|
||||
SZL{
|
||||
one{"Kuɗin Lilangeni"}
|
||||
other{"Kuɗin Lilangeni"}
|
||||
}
|
||||
THB{
|
||||
one{"baht na ƙasar Thailand"}
|
||||
other{"Baht na ƙasar Thailand"}
|
||||
|
@ -1092,6 +1221,10 @@ ha{
|
|||
one{"Sabuwar dalar Taiwan"}
|
||||
other{"Sabuwar Dalar Taiwan"}
|
||||
}
|
||||
TZS{
|
||||
one{"Sulen Tanzaniya"}
|
||||
other{"Sulen Tanzaniya"}
|
||||
}
|
||||
UAH{
|
||||
one{"kuɗin Ukrain"}
|
||||
other{"Kuɗin Ukrain"}
|
||||
|
@ -1128,10 +1261,18 @@ ha{
|
|||
one{"tala na ƙasar Samoa"}
|
||||
other{"Tala na ƙasar Samoa"}
|
||||
}
|
||||
XAF{
|
||||
one{"Kuɗin Sefa na Afirka Ta Tsakiya"}
|
||||
other{"Kuɗin Sefa na Afirka Ta Tsakiya"}
|
||||
}
|
||||
XCD{
|
||||
one{"dalar Gabashin Karebiyan"}
|
||||
other{"dalar Gabashin Karebiyan"}
|
||||
}
|
||||
XOF{
|
||||
one{"Kuɗin Sefa na Afirka Ta Yamma"}
|
||||
other{"Kuɗin Sefa na Afirka Ta Yamma"}
|
||||
}
|
||||
XPF{
|
||||
one{"kuɗin CFP franc"}
|
||||
other{"Kuɗin CFP franc"}
|
||||
|
@ -1144,5 +1285,17 @@ ha{
|
|||
one{"riyal ɗin Yemen"}
|
||||
other{"Riyal ɗin Yemen"}
|
||||
}
|
||||
ZAR{
|
||||
one{"Kuɗin Afirka Ta Kudu"}
|
||||
other{"Kuɗin Afirka Ta Kudu"}
|
||||
}
|
||||
ZMW{
|
||||
one{"Kuɗin Zambiya"}
|
||||
other{"Kuɗin Zambiya"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1519,6 +1519,12 @@ he{
|
|||
other{"דולר ליברי"}
|
||||
two{"דולר ליברי"}
|
||||
}
|
||||
LSL{
|
||||
many{"לוטי לסותי"}
|
||||
one{"לוטי לסותי"}
|
||||
other{"לוטי לסותי"}
|
||||
two{"לוטי לסותי"}
|
||||
}
|
||||
LTL{
|
||||
many{"ליטא ליטאי"}
|
||||
one{"ליטא ליטאי"}
|
||||
|
@ -1927,6 +1933,18 @@ he{
|
|||
other{"דולר אמריקאי"}
|
||||
two{"דולר אמריקאי"}
|
||||
}
|
||||
USN{
|
||||
many{"דולר אמריקאי (היום הבא)"}
|
||||
one{"דולר אמריקאי (היום הבא)"}
|
||||
other{"דולר אמריקאי (היום הבא)"}
|
||||
two{"דולר אמריקאי (היום הבא)"}
|
||||
}
|
||||
USS{
|
||||
many{"דולר אמריקאי (היום הזה)"}
|
||||
one{"דולר אמריקאי (היום הזה)"}
|
||||
other{"דולר אמריקאי (היום הזה)"}
|
||||
two{"דולר אמריקאי (היום הזה)"}
|
||||
}
|
||||
UYU{
|
||||
many{"פסו אורוגוואי"}
|
||||
one{"פסו אורוגוואי"}
|
||||
|
|
|
@ -1193,6 +1193,10 @@ hi{
|
|||
one{"लाइबेरियाई डॉलर"}
|
||||
other{"लाइबेरियाई डॉलर"}
|
||||
}
|
||||
LSL{
|
||||
one{"लेसोथो लोटी"}
|
||||
other{"लेसोथो लोटी"}
|
||||
}
|
||||
LTL{
|
||||
one{"लिथुआनियाई लितास"}
|
||||
other{"लिथुआनियाई लितास"}
|
||||
|
|
|
@ -1229,6 +1229,7 @@ hu{
|
|||
PYG{"₲"}
|
||||
RON{"lei"}
|
||||
RUB{"₽"}
|
||||
RUR{"RUR"}
|
||||
RWF{"RF"}
|
||||
SBD{"$"}
|
||||
SEK{"kr"}
|
||||
|
@ -1556,6 +1557,10 @@ hu{
|
|||
one{"spanyol peseta (A–kontó)"}
|
||||
other{"spanyol peseta (A–kontó)"}
|
||||
}
|
||||
ESB{
|
||||
one{"spanyol peseta (konvertibilis kontó)"}
|
||||
other{"spanyol peseta (konvertibilis kontó)"}
|
||||
}
|
||||
ESP{
|
||||
one{"spanyol peseta"}
|
||||
other{"spanyol peseta"}
|
||||
|
@ -1740,6 +1745,14 @@ hu{
|
|||
one{"litvániai litas"}
|
||||
other{"litvániai litas"}
|
||||
}
|
||||
LUC{
|
||||
one{"luxemburgi konvertibilis frank"}
|
||||
other{"luxemburgi konvertibilis frank"}
|
||||
}
|
||||
LUL{
|
||||
one{"luxemburgi pénzügyi frank"}
|
||||
other{"luxemburgi pénzügyi frank"}
|
||||
}
|
||||
LVL{
|
||||
one{"lett lats"}
|
||||
other{"lett lats"}
|
||||
|
@ -1868,10 +1881,18 @@ hu{
|
|||
one{"panamai balboa"}
|
||||
other{"panamai balboa"}
|
||||
}
|
||||
PEI{
|
||||
one{"perui inti"}
|
||||
other{"perui inti"}
|
||||
}
|
||||
PEN{
|
||||
one{"perui sol"}
|
||||
other{"perui sol"}
|
||||
}
|
||||
PES{
|
||||
one{"perui sol (1863–1965)"}
|
||||
other{"perui sol (1863–1965)"}
|
||||
}
|
||||
PGK{
|
||||
one{"pápua új-guineai kina"}
|
||||
other{"pápua új-guineai kina"}
|
||||
|
|
|
@ -1619,6 +1619,9 @@ id{
|
|||
LRD{
|
||||
other{"Dolar Liberia"}
|
||||
}
|
||||
LSL{
|
||||
other{"Loti Lesotho"}
|
||||
}
|
||||
LTL{
|
||||
other{"Litas Lituania"}
|
||||
}
|
||||
|
|
|
@ -632,31 +632,82 @@ ig{
|
|||
"Ego Kwacha Obodo Zambia",
|
||||
}
|
||||
}
|
||||
Currencies%narrow{
|
||||
BYN{"BYN"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
AED{
|
||||
other{"Ego dirhams obodo UAE"}
|
||||
}
|
||||
AFN{
|
||||
other{"Ego Afghani Obodo Afghanistan"}
|
||||
}
|
||||
ALL{
|
||||
other{"Ego Lek Obodo Albania"}
|
||||
}
|
||||
AMD{
|
||||
other{"Ego Dram obodo Armenia"}
|
||||
}
|
||||
ANG{
|
||||
other{"Ego Antillean Guilder obodo Netherlands"}
|
||||
}
|
||||
AOA{
|
||||
other{"Ego kwanzas obodo Angola"}
|
||||
}
|
||||
ARS{
|
||||
other{"Ego Peso obodo Argentina"}
|
||||
}
|
||||
AUD{
|
||||
other{"Ego dollars obodo Australia"}
|
||||
}
|
||||
AWG{
|
||||
other{"Ego Florin obodo Aruba"}
|
||||
}
|
||||
AZN{
|
||||
other{"Ego manats obodo Azerbaijan"}
|
||||
}
|
||||
BAM{
|
||||
other{"Akara mgbanwe ego obodo Bosnia-Herzegovina"}
|
||||
}
|
||||
BBD{
|
||||
other{"Ego Dollar obodo Barbados"}
|
||||
}
|
||||
BDT{
|
||||
other{"Ego Taka obodo Bangladesh"}
|
||||
}
|
||||
BGN{
|
||||
other{"Ego Lev mba Bulgaria"}
|
||||
}
|
||||
BHD{
|
||||
other{"Ego Dinar Obodo Bahrain"}
|
||||
}
|
||||
BIF{
|
||||
other{"Ego Franc obodo Burundi"}
|
||||
}
|
||||
BMD{
|
||||
other{"Dollars Bermuda"}
|
||||
}
|
||||
BND{
|
||||
other{"Ego dollars obodo Brunei"}
|
||||
}
|
||||
BOB{
|
||||
other{"Ego Boliviano obodo Bolivia"}
|
||||
}
|
||||
BRL{
|
||||
other{"Real Brazil"}
|
||||
}
|
||||
BSD{
|
||||
other{"Ego Dollar Obodo Bahamas"}
|
||||
}
|
||||
BTN{
|
||||
other{"Ego Ngultrum obodo Bhutan"}
|
||||
}
|
||||
BWP{
|
||||
other{"Ego pulas obodo Bostwana"}
|
||||
}
|
||||
BYN{
|
||||
other{"Ego Ruble mba Belarus"}
|
||||
}
|
||||
BZD{
|
||||
other{"Dollars Belize"}
|
||||
}
|
||||
|
@ -666,18 +717,51 @@ ig{
|
|||
CDF{
|
||||
other{"Ego francs mba Congo"}
|
||||
}
|
||||
CHF{
|
||||
other{"Ego Franc mba Switzerland"}
|
||||
}
|
||||
CLP{
|
||||
other{"Ego Peso obodo Chile"}
|
||||
}
|
||||
CNH{
|
||||
other{"Ego Yuan Obodo China (ndị bi na mmiri)"}
|
||||
}
|
||||
CNY{
|
||||
other{"Yuan China"}
|
||||
}
|
||||
COP{
|
||||
other{"Ego Peso obodo Columbia"}
|
||||
}
|
||||
CRC{
|
||||
other{"Ego colóns obodo Costa Rica"}
|
||||
}
|
||||
CUC{
|
||||
other{"Ego Peso e nwere ike ịgbanwe nke obodo Cuba"}
|
||||
}
|
||||
CUP{
|
||||
other{"Ego pesos obodo Cuba"}
|
||||
}
|
||||
CVE{
|
||||
other{"Escudo Caboverdiano"}
|
||||
}
|
||||
CZK{
|
||||
other{"Ego Koruna obodo Czech"}
|
||||
}
|
||||
DJF{
|
||||
other{"ego francs obodo Djibouti"}
|
||||
}
|
||||
DKK{
|
||||
other{"Ego Krone Obodo Denmark"}
|
||||
}
|
||||
DOP{
|
||||
other{"Ego Peso Obodo Dominica"}
|
||||
}
|
||||
DZD{
|
||||
other{"Ego Dinar Obodo Algeria"}
|
||||
}
|
||||
EGP{
|
||||
other{"Ego Pound obodo Egypt"}
|
||||
}
|
||||
ERN{
|
||||
other{"Ego nakfas obodo Eritrea"}
|
||||
}
|
||||
|
@ -690,30 +774,123 @@ ig{
|
|||
FJD{
|
||||
other{"Ego dollars obodo Fijian"}
|
||||
}
|
||||
FKP{
|
||||
other{"Ego Pound obodo Falkland Islands"}
|
||||
}
|
||||
GBP{
|
||||
other{"Pound British"}
|
||||
}
|
||||
GEL{
|
||||
other{"Ego Lari Obodo Georgia"}
|
||||
}
|
||||
GHS{
|
||||
other{"Ego Cedi obodo Ghana"}
|
||||
}
|
||||
GIP{
|
||||
other{"Ego Pound obodo Gibraltar"}
|
||||
}
|
||||
GMD{
|
||||
other{"Ego Dalasi obodo Gambia"}
|
||||
}
|
||||
GNF{
|
||||
other{"Ego Franc obodo Guinea"}
|
||||
}
|
||||
GTQ{
|
||||
other{"Ego Quetzal obodo Guatemala"}
|
||||
}
|
||||
GYD{
|
||||
other{"Ego Dollar obodo Guyana"}
|
||||
}
|
||||
HKD{
|
||||
other{"Ego Dollar Obodo Honk Kong"}
|
||||
}
|
||||
HNL{
|
||||
other{"Ego Lempira obodo Honduras"}
|
||||
}
|
||||
HRK{
|
||||
other{"Ego kunas obodo Croatia"}
|
||||
}
|
||||
HTG{
|
||||
other{"Ego Gourde obodo Haiti"}
|
||||
}
|
||||
HUF{
|
||||
other{"Ego Forint obodo Hungary"}
|
||||
}
|
||||
IDR{
|
||||
other{"Ego Rupiah Obodo Indonesia"}
|
||||
}
|
||||
ILS{
|
||||
other{"Ego Shekel ọhụrụ obodo Israel"}
|
||||
}
|
||||
INR{
|
||||
other{"Rupee India"}
|
||||
}
|
||||
IQD{
|
||||
other{"Ego dinars obodo Iraq"}
|
||||
}
|
||||
IRR{
|
||||
other{"Ego Rial obodo Iran"}
|
||||
}
|
||||
ISK{
|
||||
other{"Ego Króna obodo Iceland"}
|
||||
}
|
||||
JMD{
|
||||
other{"Ego Dollar obodo Jamaica"}
|
||||
}
|
||||
JOD{
|
||||
other{"Ego Dinar Obodo Jordan"}
|
||||
}
|
||||
JPY{
|
||||
other{"Yen Japan"}
|
||||
}
|
||||
KES{
|
||||
other{"Ego Shilling obodo Kenya"}
|
||||
}
|
||||
KGS{
|
||||
other{"Ego Som Obodo Kyrgyzstan"}
|
||||
}
|
||||
KHR{
|
||||
other{"Ego Riel obodo Cambodia"}
|
||||
}
|
||||
KMF{
|
||||
other{"Ego Franc obodo Comoros"}
|
||||
}
|
||||
KPW{
|
||||
other{"Ego Won Obodo North Korea"}
|
||||
}
|
||||
KRW{
|
||||
other{"Ego Won Obodo South Korea"}
|
||||
}
|
||||
KWD{
|
||||
other{"Ego Dinar Obodo Kuwait"}
|
||||
}
|
||||
KYD{
|
||||
other{"Ego dollars obodo Cayman Islands"}
|
||||
}
|
||||
KZT{
|
||||
other{"Ego Tenge obodo Kazakhstani"}
|
||||
}
|
||||
LAK{
|
||||
other{"Ego Kip Obodo Laos"}
|
||||
}
|
||||
LBP{
|
||||
other{"Ego Pound Obodo Lebanon"}
|
||||
}
|
||||
LKR{
|
||||
other{"Ego Rupee obodo Sri Lanka"}
|
||||
}
|
||||
LRD{
|
||||
other{"Ego Dollar obodo Liberia"}
|
||||
}
|
||||
LSL{
|
||||
other{"Ego loti obodo Lesotho"}
|
||||
}
|
||||
LYD{
|
||||
other{"Ego Dinar obodo Libya"}
|
||||
}
|
||||
MAD{
|
||||
other{"Ego Dirham obodo Morocco"}
|
||||
}
|
||||
MDL{
|
||||
other{"Ego leu mba Moldova"}
|
||||
}
|
||||
|
@ -723,63 +900,195 @@ ig{
|
|||
MKD{
|
||||
other{"Ego denari mba Macedonia"}
|
||||
}
|
||||
MMK{
|
||||
other{"Ego Kyat obodo Myanmar"}
|
||||
}
|
||||
MNT{
|
||||
other{"Ego Turgik Obodo Mongolia"}
|
||||
}
|
||||
MOP{
|
||||
other{"Ego Pataca ndị Obodo Macanese"}
|
||||
}
|
||||
MRU{
|
||||
other{"Ego Ouguiya Obodo Mauritania"}
|
||||
}
|
||||
MUR{
|
||||
other{"Ego Rupee obodo Mauritania"}
|
||||
}
|
||||
MVR{
|
||||
other{"Ego Rufiyaa obodo Moldova"}
|
||||
}
|
||||
MWK{
|
||||
other{"Ego kwachas obodo Malawi"}
|
||||
}
|
||||
MXN{
|
||||
other{"Ego Peso obodo Mexico"}
|
||||
}
|
||||
MYR{
|
||||
other{"Ego Ringgit obodo Malaysia"}
|
||||
}
|
||||
MZN{
|
||||
other{"Ego meticals obodo Mozambique"}
|
||||
}
|
||||
NAD{
|
||||
other{"Ego Dollar obodo Namibia"}
|
||||
}
|
||||
NGN{
|
||||
other{"Naịra"}
|
||||
}
|
||||
NIO{
|
||||
other{"Ego Córodoba obodo Nicaragua"}
|
||||
}
|
||||
NOK{
|
||||
other{"Ego Krone Obodo Norway"}
|
||||
}
|
||||
NPR{
|
||||
other{"Ego Rupee obodo Nepal"}
|
||||
}
|
||||
NZD{
|
||||
other{"Ego dollars obodo New Zealand"}
|
||||
}
|
||||
OMR{
|
||||
other{"Ego rials Obodo Oman"}
|
||||
}
|
||||
PAB{
|
||||
other{"Ego Balboa obodo Panama"}
|
||||
}
|
||||
PEN{
|
||||
other{"Ego Sol obodo Peru"}
|
||||
}
|
||||
PGK{
|
||||
other{"Ego Kina obodo Papua New Guinea"}
|
||||
}
|
||||
PHP{
|
||||
other{"Ego piso obodo Philippine"}
|
||||
}
|
||||
PKR{
|
||||
other{"Ego Rupee obodo Pakistan"}
|
||||
}
|
||||
PLN{
|
||||
other{"Ego Zloty mba Poland"}
|
||||
}
|
||||
PYG{
|
||||
other{"Ego Guarani obodo Paraguay"}
|
||||
}
|
||||
QAR{
|
||||
other{"Ego rials obodo Qatar"}
|
||||
}
|
||||
RON{
|
||||
other{"Ego leu Obodo Romania"}
|
||||
}
|
||||
RSD{
|
||||
other{"Ego Dinar obodo Serbia"}
|
||||
}
|
||||
RUB{
|
||||
other{"Ruble Russia"}
|
||||
}
|
||||
RWF{
|
||||
other{"Ego Franc obodo Rwanda"}
|
||||
}
|
||||
SAR{
|
||||
other{"Ego Riyal obodo Saudi"}
|
||||
}
|
||||
SBD{
|
||||
other{"Ego dollars obodo Solomon Islands"}
|
||||
}
|
||||
SCR{
|
||||
other{"Ego rupees obodo Seychelles"}
|
||||
}
|
||||
SDG{
|
||||
other{"Ego Pound obodo Sudan"}
|
||||
}
|
||||
SEK{
|
||||
other{"Ego Krona Obodo Sweden"}
|
||||
}
|
||||
SGD{
|
||||
other{"Ego Dollar obodo Singapore"}
|
||||
}
|
||||
SHP{
|
||||
other{"Ego Pound obodo St Helena"}
|
||||
}
|
||||
SLL{
|
||||
other{"Ego Leone obodo Sierra Leone"}
|
||||
}
|
||||
SOS{
|
||||
other{"Ego shilling obodo Somali"}
|
||||
}
|
||||
SRD{
|
||||
other{"Dollar Surinamese"}
|
||||
}
|
||||
SSP{
|
||||
other{"Ego pounds mba ọdịda anyanwụ Sudan"}
|
||||
}
|
||||
STN{
|
||||
other{"Ego Dobra nke obodo Sāo Tomé na Principe"}
|
||||
}
|
||||
SYP{
|
||||
other{"Ego Pound obodo Syria"}
|
||||
}
|
||||
SZL{
|
||||
other{"Ego emalangeni obodo Swaziland"}
|
||||
}
|
||||
THB{
|
||||
other{"Ego Baht obodo Thai"}
|
||||
}
|
||||
TJS{
|
||||
other{"Who Somoni obodo Tajikistan"}
|
||||
}
|
||||
TMT{
|
||||
other{"Ego Manat Obodo Turkmenistan"}
|
||||
}
|
||||
TND{
|
||||
other{"Ego Dinar Obodo Tunisia"}
|
||||
}
|
||||
TOP{
|
||||
other{"Ego paʻanga obodo Tonga"}
|
||||
}
|
||||
TRY{
|
||||
other{"Ego Lira obodo Turkey"}
|
||||
}
|
||||
TTD{
|
||||
other{"Dollars Trinidad & Tobago"}
|
||||
}
|
||||
TWD{
|
||||
other{"Dollar obodo New Taiwan"}
|
||||
}
|
||||
TZS{
|
||||
other{"Ego Shillings Obodo Tanzania"}
|
||||
}
|
||||
UAH{
|
||||
other{"Ego Hryvnia obodo Ukraine"}
|
||||
}
|
||||
UGX{
|
||||
other{"Ego shillings obodo Uganda"}
|
||||
}
|
||||
USD{
|
||||
other{"Dollars US"}
|
||||
}
|
||||
UYU{
|
||||
other{"Ego Peso obodo Uruguay"}
|
||||
}
|
||||
UZS{
|
||||
other{"Ego som obodo Uzbekistan"}
|
||||
}
|
||||
VES{
|
||||
other{"Ego Bolivar obodo Venezuela"}
|
||||
}
|
||||
VND{
|
||||
other{"Ego Dong obodo Vietnam"}
|
||||
}
|
||||
VUV{
|
||||
other{"Ego Vanuatu vatus obodo Vanuatu"}
|
||||
}
|
||||
WST{
|
||||
other{"Ego Tala obodo Samoa"}
|
||||
}
|
||||
XAF{
|
||||
other{"Ego francs mba etiti Africa"}
|
||||
}
|
||||
XCD{
|
||||
other{"Ego Dollar obodo East Carribbean"}
|
||||
}
|
||||
XOF{
|
||||
other{"Ego CFA francs mba ọdịda anyanwụ Afrịka"}
|
||||
}
|
||||
|
@ -789,6 +1098,9 @@ ig{
|
|||
XXX{
|
||||
other{"(ego amaghị)"}
|
||||
}
|
||||
YER{
|
||||
other{"Ego Rial obodo Yemeni"}
|
||||
}
|
||||
ZAR{
|
||||
other{"Ego rand obodo South Africa"}
|
||||
}
|
||||
|
|
|
@ -996,6 +996,10 @@ is{
|
|||
one{"angólsk kvansa"}
|
||||
other{"angólskar kvönsur"}
|
||||
}
|
||||
ARP{
|
||||
one{"Argentískur pesi (1983–1985)"}
|
||||
other{"Argentískur pesi (1983–1985)"}
|
||||
}
|
||||
ARS{
|
||||
one{"argentínskur pesi"}
|
||||
other{"argentínskir pesar"}
|
||||
|
@ -1048,6 +1052,10 @@ is{
|
|||
one{"bólivíani"}
|
||||
other{"bólivíanar"}
|
||||
}
|
||||
BOP{
|
||||
one{"Bólivískur pesi"}
|
||||
other{"Bólivískur pesi"}
|
||||
}
|
||||
BRL{
|
||||
one{"brasilískt ríal"}
|
||||
other{"brasilísk ríöl"}
|
||||
|
@ -1376,6 +1384,10 @@ is{
|
|||
one{"mexíkóskur pesi"}
|
||||
other{"mexíkóskir pesar"}
|
||||
}
|
||||
MXP{
|
||||
one{"Mexíkóskur silfurpesi (1861–1992)"}
|
||||
other{"Mexíkóskur silfurpesi (1861–1992)"}
|
||||
}
|
||||
MYR{
|
||||
one{"malasískt ringit"}
|
||||
other{"malasísk ringit"}
|
||||
|
@ -1584,6 +1596,14 @@ is{
|
|||
one{"Bandaríkjadalur"}
|
||||
other{"Bandaríkjadalir"}
|
||||
}
|
||||
USN{
|
||||
one{"Bandaríkjadalur (næsta dag)"}
|
||||
other{"Bandaríkjadalur (næsta dag)"}
|
||||
}
|
||||
USS{
|
||||
one{"Bandaríkjadalur (sama dag)"}
|
||||
other{"Bandaríkjadalur (sama dag)"}
|
||||
}
|
||||
UYU{
|
||||
one{"úrúgvæskur pesi"}
|
||||
other{"úrúgvæskir pesar"}
|
||||
|
|
|
@ -641,6 +641,7 @@ jv{
|
|||
}
|
||||
}
|
||||
Currencies%narrow{
|
||||
BYN{"BYN"}
|
||||
VEF{"Bs"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
|
@ -914,6 +915,9 @@ jv{
|
|||
MNT{
|
||||
other{"Tugrik Mongol"}
|
||||
}
|
||||
MOP{
|
||||
other{"Pataca Macau"}
|
||||
}
|
||||
MRO{
|
||||
other{"Ouguiya Mauritania (1973 - 2017)"}
|
||||
}
|
||||
|
|
|
@ -619,6 +619,9 @@ kea{
|
|||
GBP{
|
||||
other{"Libra britániku"}
|
||||
}
|
||||
GHC{
|
||||
other{"Sedi di Gana (1979–2007)"}
|
||||
}
|
||||
GMD{
|
||||
other{"Dalasi"}
|
||||
}
|
||||
|
@ -712,6 +715,9 @@ kea{
|
|||
STD{
|
||||
other{"Dobra di San Tume i Prínsipi (1977–2017)"}
|
||||
}
|
||||
STN{
|
||||
other{"Dobra di San Tume i Prínsipi"}
|
||||
}
|
||||
SZL{
|
||||
other{"Lilanjeni"}
|
||||
}
|
||||
|
|
|
@ -765,6 +765,9 @@ km{
|
|||
ALL{
|
||||
other{"លិកអាល់បានី"}
|
||||
}
|
||||
AMD{
|
||||
other{"ដ្រាំអាមេនី"}
|
||||
}
|
||||
ANG{
|
||||
other{"ហ្គីឌិនហុល្លង់អង់ទីលៀន"}
|
||||
}
|
||||
|
|
|
@ -917,6 +917,9 @@ kok{
|
|||
ILS{
|
||||
other{"इस्त्रायली न्यु शेकेल्स"}
|
||||
}
|
||||
INR{
|
||||
other{"भारतीय रुपया"}
|
||||
}
|
||||
IQD{
|
||||
other{"इराकी डिनार्स"}
|
||||
}
|
||||
|
|
|
@ -1032,10 +1032,18 @@ ks{
|
|||
one{"چیٖنی یُوان"}
|
||||
other{"چیٖنی یُوان"}
|
||||
}
|
||||
EUR{
|
||||
one{"یوٗرو"}
|
||||
other{"یوٗرو"}
|
||||
}
|
||||
GBP{
|
||||
one{"برطٲنوی پوٗنڈ"}
|
||||
other{"برطٲنوی پوٗنڈ"}
|
||||
}
|
||||
INR{
|
||||
one{"ہِندُستٲنۍ رۄپَے"}
|
||||
other{"ہِندُستٲنۍ رۄپَے"}
|
||||
}
|
||||
JPY{
|
||||
one{"جاپٲن یَن"}
|
||||
other{"جاپٲن یَن"}
|
||||
|
|
|
@ -79,4 +79,8 @@ ks_Deva{
|
|||
other{"(नामोलुम करन्सी)"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1532,6 +1532,9 @@ lo{
|
|||
LRD{
|
||||
other{"ລິເບີຣຽນ ໂດລ່າ"}
|
||||
}
|
||||
LSL{
|
||||
other{"ໂລຕິ ເລໂຊໂຕ"}
|
||||
}
|
||||
LTL{
|
||||
other{"ລິທົວນຽນ ລິທັສ"}
|
||||
}
|
||||
|
|
|
@ -1366,6 +1366,11 @@ lv{
|
|||
other{"Libērijas dolāri"}
|
||||
zero{"Libērijas dolāri"}
|
||||
}
|
||||
LSL{
|
||||
one{"Lesoto loti"}
|
||||
other{"Lesoto loti"}
|
||||
zero{"Lesoto loti"}
|
||||
}
|
||||
LTL{
|
||||
one{"Lietuvas lits"}
|
||||
other{"Lietuvas liti"}
|
||||
|
|
|
@ -1092,6 +1092,10 @@ mr{
|
|||
one{"लाइबेरियन डॉलर"}
|
||||
other{"लाइबेरियन डॉलर्स"}
|
||||
}
|
||||
LSL{
|
||||
one{"लेसोटो लोटी"}
|
||||
other{"लेसोटो लोटी"}
|
||||
}
|
||||
LTL{
|
||||
one{"लिथुआनियन लिटास"}
|
||||
other{"लिथुआनियन लिटाई"}
|
||||
|
|
|
@ -765,6 +765,7 @@ ms{
|
|||
PYG{"₲"}
|
||||
RON{"lei"}
|
||||
RUB{"₽"}
|
||||
RUR{"RUR"}
|
||||
RWF{"RF"}
|
||||
SBD{"$"}
|
||||
SEK{"kr"}
|
||||
|
@ -863,6 +864,9 @@ ms{
|
|||
BYN{
|
||||
other{"Rubel Belarus"}
|
||||
}
|
||||
BYR{
|
||||
other{"Rubel Belarus (2000–2016)"}
|
||||
}
|
||||
BZD{
|
||||
other{"Dolar Belize"}
|
||||
}
|
||||
|
@ -1037,6 +1041,9 @@ ms{
|
|||
LRD{
|
||||
other{"Dolar Liberia"}
|
||||
}
|
||||
LSL{
|
||||
other{"Loti Lesotho"}
|
||||
}
|
||||
LTL{
|
||||
other{"Litas Lithuania"}
|
||||
}
|
||||
|
@ -1055,6 +1062,9 @@ ms{
|
|||
MGA{
|
||||
other{"Ariary Malagasy"}
|
||||
}
|
||||
MGF{
|
||||
other{"Franc Malagasy"}
|
||||
}
|
||||
MKD{
|
||||
other{"Denar Macedonia"}
|
||||
}
|
||||
|
@ -1283,6 +1293,9 @@ ms{
|
|||
ZAR{
|
||||
other{"Rand Afrika Selatan"}
|
||||
}
|
||||
ZMK{
|
||||
other{"Kwacha Zambia (1968–2012)"}
|
||||
}
|
||||
ZMW{
|
||||
other{"Kwacha Zambia"}
|
||||
}
|
||||
|
|
|
@ -1001,6 +1001,10 @@ ne{
|
|||
one{"क्रोएशियाली कुना"}
|
||||
other{"क्रोएशियाली कुना"}
|
||||
}
|
||||
HTG{
|
||||
one{"हैटियाली गुर्ड"}
|
||||
other{"हैटियाली गुर्ड"}
|
||||
}
|
||||
HUF{
|
||||
one{"हङ्गेरियन फोरिन्ट"}
|
||||
other{"हङ्गेरियन फोरिन्ट"}
|
||||
|
|
|
@ -2225,6 +2225,10 @@ nl{
|
|||
one{"Slowaakse koruna"}
|
||||
other{"Slowaakse koruna"}
|
||||
}
|
||||
SLE{
|
||||
one{"Sierra Leoonse leone"}
|
||||
other{"Sierra Leoonse leone"}
|
||||
}
|
||||
SLL{
|
||||
one{"Sierraleoonse leone (1964—2022)"}
|
||||
other{"Sierraleoonse leone (1964—2022)"}
|
||||
|
|
|
@ -1155,6 +1155,10 @@ ps{
|
|||
one{"سورينيمي ډالر"}
|
||||
other{"سورينيمي ډالرې"}
|
||||
}
|
||||
SSP{
|
||||
one{"جنوب سوډاني پونډ"}
|
||||
other{"جنوب سوډاني پونډ"}
|
||||
}
|
||||
STN{
|
||||
one{"ساو ټوم او پرينسپي ډوبرا"}
|
||||
other{"ساو ټوم او پرينسپي ډوبراس"}
|
||||
|
@ -1227,6 +1231,10 @@ ps{
|
|||
one{"وينزويلي بوليوار"}
|
||||
other{"وينزويلي بوليوارز"}
|
||||
}
|
||||
VND{
|
||||
one{"ويتنامي ډونګ"}
|
||||
other{"ويتنامي ډونګ"}
|
||||
}
|
||||
VUV{
|
||||
one{"ونواتو واتو"}
|
||||
other{"ونواتو واتوس"}
|
||||
|
|
|
@ -771,6 +771,9 @@ qu{
|
|||
EUR{
|
||||
other{"euro"}
|
||||
}
|
||||
FJD{
|
||||
other{"Dólar Fiyiano"}
|
||||
}
|
||||
FKP{
|
||||
other{"Libra malvinense"}
|
||||
}
|
||||
|
|
|
@ -1194,6 +1194,7 @@ rm{
|
|||
}
|
||||
Currencies%narrow{
|
||||
AUD{"$"}
|
||||
BYN{"BYN"}
|
||||
CAD{"$"}
|
||||
EUR{"€"}
|
||||
GBP{"£"}
|
||||
|
|
|
@ -46,6 +46,11 @@ sat{
|
|||
other{"ᱵᱨᱟᱡᱤᱞᱤᱭᱟᱱ ᱨᱤᱭᱟᱹᱞᱥ"}
|
||||
two{"ᱵᱨᱟᱡᱤᱞᱤᱭᱟᱱ ᱨᱤᱭᱟᱹᱞᱥ"}
|
||||
}
|
||||
CNY{
|
||||
one{"ᱪᱤᱱᱤ ᱭᱩᱣᱟᱱ"}
|
||||
other{"ᱪᱤᱱᱤ ᱭᱩᱣᱟᱱ"}
|
||||
two{"ᱪᱤᱱᱤ ᱭᱩᱣᱟᱱ"}
|
||||
}
|
||||
EUR{
|
||||
one{"ᱭᱩᱨᱚ"}
|
||||
other{"ᱭᱩᱨᱚ"}
|
||||
|
|
|
@ -1224,6 +1224,10 @@ sc{
|
|||
"dòllaru zimbabweanu (2008)",
|
||||
}
|
||||
}
|
||||
Currencies%narrow{
|
||||
BYN{"BYN"}
|
||||
RUR{"RUR"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
ADP{
|
||||
one{"peseta andorrana"}
|
||||
|
@ -2446,4 +2450,8 @@ sc{
|
|||
other{"dòllaros zimbabweanos (2008)"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,6 +55,10 @@ sd_Deva{
|
|||
one{"चीनी युआनु"}
|
||||
other{"चीनी युआन"}
|
||||
}
|
||||
EUR{
|
||||
one{"यूरो"}
|
||||
other{"यूरो"}
|
||||
}
|
||||
GBP{
|
||||
one{"बरतानवी पाउंडु"}
|
||||
other{"बरतानवी पाउंड"}
|
||||
|
@ -80,4 +84,8 @@ sd_Deva{
|
|||
other{"अणजा॒तल सिको"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
one{"{0} {1}"}
|
||||
other{"{0} {1}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -684,6 +684,7 @@ so{
|
|||
AFN{"؋"}
|
||||
AMD{"֏"}
|
||||
AZN{"₼"}
|
||||
BYN{"BYN"}
|
||||
GHS{"GH₵"}
|
||||
VEF{"Bs"}
|
||||
}
|
||||
|
@ -1239,6 +1240,10 @@ so{
|
|||
one{"leonka Sira Leon"}
|
||||
other{"leonka Sira Leon"}
|
||||
}
|
||||
SOS{
|
||||
one{"Shilingka Soomaaliya"}
|
||||
other{"Shilingka Soomaaliya"}
|
||||
}
|
||||
SRD{
|
||||
one{"Doolarka Surinamees"}
|
||||
other{"Doolarada Surinamees"}
|
||||
|
|
|
@ -1290,6 +1290,7 @@ sv{
|
|||
PYG{"₲"}
|
||||
RON{"L"}
|
||||
RUB{"₽"}
|
||||
RUR{"RUR"}
|
||||
RWF{"RF"}
|
||||
SBD{"$"}
|
||||
SEK{"kr"}
|
||||
|
|
|
@ -1542,6 +1542,9 @@ th{
|
|||
LRD{
|
||||
other{"ดอลลาร์ไลบีเรีย"}
|
||||
}
|
||||
LSL{
|
||||
other{"โลตีเลโซโท"}
|
||||
}
|
||||
LTL{
|
||||
other{"ลีตัสลิทัวเนีย"}
|
||||
}
|
||||
|
|
|
@ -1202,6 +1202,7 @@ vi{
|
|||
KYD{"$"}
|
||||
MXN{"$"}
|
||||
NIO{"C$"}
|
||||
RUR{"RUR"}
|
||||
TTD{"$"}
|
||||
TWD{"NT$"}
|
||||
USD{"$"}
|
||||
|
|
|
@ -1346,6 +1346,10 @@ xh{
|
|||
one{"I-franc yaseCFP"}
|
||||
other{"Ii-franc zaseCFP"}
|
||||
}
|
||||
XXX{
|
||||
one{"Ikharensi Engaziwayo"}
|
||||
other{"Ikharensi Engaziwayo"}
|
||||
}
|
||||
YER{
|
||||
one{"I-rial yaseYemen"}
|
||||
other{"Ii-rial zaseYemen"}
|
||||
|
|
|
@ -665,12 +665,22 @@ yo{
|
|||
}
|
||||
}
|
||||
Currencies%narrow{
|
||||
BYN{"BYN"}
|
||||
KRW{"₩"}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
AED{
|
||||
other{"Diami ti Awon Orílẹ́ède Arabu"}
|
||||
}
|
||||
AFN{
|
||||
other{"Afugánì Afuganísítàànì"}
|
||||
}
|
||||
ALL{
|
||||
other{"lẹ́kè Àlìbéníà"}
|
||||
}
|
||||
AMD{
|
||||
other{"Dírààmù Àmẹ́níà"}
|
||||
}
|
||||
ANG{
|
||||
other{"àwọn gílídà Netherlands Antillean"}
|
||||
}
|
||||
|
@ -680,24 +690,39 @@ yo{
|
|||
ARS{
|
||||
other{"àwọn pẹ́sò Agẹntínà"}
|
||||
}
|
||||
AUD{
|
||||
other{"Dọla ti Orílẹ́ède Ástràlìá"}
|
||||
}
|
||||
AWG{
|
||||
other{"àwọn fuloríìnì Àrúbà"}
|
||||
}
|
||||
AZN{
|
||||
other{"Mánààtì Àsàbáíjáì"}
|
||||
}
|
||||
BAM{
|
||||
other{"àwọn àmi Yíyípadà Bosnia-Herzegovina"}
|
||||
}
|
||||
BBD{
|
||||
other{"àwọn dọ́là Bábádọ̀ọ̀sì"}
|
||||
}
|
||||
BDT{
|
||||
other{"Tákà Báńgíládẹ̀ẹ̀ṣì"}
|
||||
}
|
||||
BGN{
|
||||
other{"Lẹ́fà Bọ̀lìgéríà"}
|
||||
}
|
||||
BHD{
|
||||
other{"Dina ti Orílẹ́ède Báránì"}
|
||||
}
|
||||
BIF{
|
||||
other{"àwọn faransi Bùùrúndì"}
|
||||
}
|
||||
BMD{
|
||||
other{"àwọ́n dọ́là Bẹ̀múdà"}
|
||||
}
|
||||
BND{
|
||||
other{"Dọ́là Bùrùnéì"}
|
||||
}
|
||||
BOB{
|
||||
other{"àwọn bọlifiánò Bọ̀lífíà"}
|
||||
}
|
||||
|
@ -707,6 +732,9 @@ yo{
|
|||
BSD{
|
||||
other{"àwọn dọ́là Bàhámà"}
|
||||
}
|
||||
BTN{
|
||||
other{"Ìngọ́tírọ̀mù Bútàànì"}
|
||||
}
|
||||
BWP{
|
||||
other{"àwọn pula Bọ̀tìsúwánà"}
|
||||
}
|
||||
|
@ -728,6 +756,12 @@ yo{
|
|||
CLP{
|
||||
other{"àwọn pẹ́sò Ṣílè"}
|
||||
}
|
||||
CNH{
|
||||
other{"Yúànì Sháínà"}
|
||||
}
|
||||
CNY{
|
||||
other{"Reminibi ti Orílẹ́ède ṣáínà"}
|
||||
}
|
||||
COP{
|
||||
other{"àwọn pẹ́sò Kòlóḿbíà"}
|
||||
}
|
||||
|
@ -737,6 +771,9 @@ yo{
|
|||
CUC{
|
||||
other{"àwọn pẹ́sò yíyípadà Kúbà"}
|
||||
}
|
||||
CUP{
|
||||
other{"Pẹ́sò Kúbà"}
|
||||
}
|
||||
CVE{
|
||||
other{"àwọn èsìkúdò Kapú Faadì"}
|
||||
}
|
||||
|
@ -767,12 +804,21 @@ yo{
|
|||
EUR{
|
||||
other{"Awon owó Yúrò"}
|
||||
}
|
||||
FJD{
|
||||
other{"Dọ́là Fíjì"}
|
||||
}
|
||||
FKP{
|
||||
other{
|
||||
"àwọn Pọ́n-ùn Erékùsù Falkland [ Pɔ́n-ùn Erékùsù Falkland ] 1.23 Pọ́n"
|
||||
"-ùn Erékùsù Falkland 0.00 pọ́n-ùn Erékùsù Falkland"
|
||||
}
|
||||
}
|
||||
GBP{
|
||||
other{"Pọ́n-ùn ti Orilẹ̀-èdè Gẹ̀ẹ́sì"}
|
||||
}
|
||||
GEL{
|
||||
other{"Lárì Jọ́jíà"}
|
||||
}
|
||||
GHS{
|
||||
other{"àwọn sídì Gana"}
|
||||
}
|
||||
|
@ -791,6 +837,9 @@ yo{
|
|||
GYD{
|
||||
other{"àwọn dọ́là Gùyánà"}
|
||||
}
|
||||
HKD{
|
||||
other{"Dọ́là Hong Kong"}
|
||||
}
|
||||
HNL{
|
||||
other{"àwọn Lẹmipírà Ọ́ńdúrà"}
|
||||
}
|
||||
|
@ -803,21 +852,69 @@ yo{
|
|||
HUF{
|
||||
other{"àwọn fọ́ríǹtì Họ̀ngérí"}
|
||||
}
|
||||
IDR{
|
||||
other{"Rúpìyá Indonésíà"}
|
||||
}
|
||||
ILS{
|
||||
other{"Ṣékélì Tuntun Ísírẹ̀ẹ̀lì"}
|
||||
}
|
||||
INR{
|
||||
other{"Rupi ti Orílẹ́ède Indina"}
|
||||
}
|
||||
IQD{
|
||||
other{"Dínárì Ìráákì"}
|
||||
}
|
||||
IRR{
|
||||
other{"Rial Iranian"}
|
||||
}
|
||||
ISK{
|
||||
other{"kórónọ̀ Áílándíìkì"}
|
||||
}
|
||||
JMD{
|
||||
other{"àwọn dọ́là Jàmáíkà"}
|
||||
}
|
||||
JOD{
|
||||
other{"Dínárì Jọ́dàànì"}
|
||||
}
|
||||
JPY{
|
||||
other{"Yeni ti Orílẹ́ède Japani"}
|
||||
}
|
||||
KES{
|
||||
other{"àwọ́n ṣiili Kenya"}
|
||||
}
|
||||
KGS{
|
||||
other{"Sómú Kirijísítàànì"}
|
||||
}
|
||||
KHR{
|
||||
other{"Ráyò Kàm̀bọ́díà"}
|
||||
}
|
||||
KMF{
|
||||
other{"àwọn faransi Komori"}
|
||||
}
|
||||
KPW{
|
||||
other{"Wọ́ọ̀nù Àríwá Kòríà"}
|
||||
}
|
||||
KRW{
|
||||
other{"Wọ́ọ̀nù Gúúsù Kòríà"}
|
||||
}
|
||||
KWD{
|
||||
other{"Dínárì Kuwaiti"}
|
||||
}
|
||||
KYD{
|
||||
other{"àwọn dọ́là Erékùsù Cayman"}
|
||||
}
|
||||
KZT{
|
||||
other{"Tẹngé Kasakísítàànì"}
|
||||
}
|
||||
LAK{
|
||||
other{"Kíììpù Làótì"}
|
||||
}
|
||||
LBP{
|
||||
other{"Pọ́n-ùn Lebanese"}
|
||||
}
|
||||
LKR{
|
||||
other{"Rúpìì Siri Láńkà"}
|
||||
}
|
||||
LRD{
|
||||
other{"àwọn dọla Liberia"}
|
||||
}
|
||||
|
@ -839,15 +936,33 @@ yo{
|
|||
MKD{
|
||||
other{"dẹ́nàrì Masidóníà"}
|
||||
}
|
||||
MMK{
|
||||
other{"Kíyàtì Myanmar"}
|
||||
}
|
||||
MNT{
|
||||
other{"Túgúrììkì Mòǹgólíà"}
|
||||
}
|
||||
MOP{
|
||||
other{"Pàtákà Màkáò"}
|
||||
}
|
||||
MRU{
|
||||
other{"Ouguiya ti Orílẹ́ède Maritania"}
|
||||
}
|
||||
MUR{
|
||||
other{"àwọn rupi Maritusi"}
|
||||
}
|
||||
MVR{
|
||||
other{"Rúfìyá Mọ̀lìdífà"}
|
||||
}
|
||||
MWK{
|
||||
other{"àwọn kásà Màláwì"}
|
||||
}
|
||||
MXN{
|
||||
other{"àwọn pẹ́sò Mẹ́síkò"}
|
||||
}
|
||||
MYR{
|
||||
other{"Ríngìtì Màléṣíà"}
|
||||
}
|
||||
MZN{
|
||||
other{"àwọn mẹ́tíkààlì Mòsáḿbíìkì"}
|
||||
}
|
||||
|
@ -863,18 +978,39 @@ yo{
|
|||
NOK{
|
||||
other{"kórónà Nọ́wè"}
|
||||
}
|
||||
NPR{
|
||||
other{"Rúpìì Nẹ̵́pààlì"}
|
||||
}
|
||||
NZD{
|
||||
other{"Dọ́là New Zealand"}
|
||||
}
|
||||
OMR{
|
||||
other{"Ráyò Omani"}
|
||||
}
|
||||
PAB{
|
||||
other{"àwọn bálíbóà Pànámà"}
|
||||
}
|
||||
PEN{
|
||||
other{"àwọn sólì Pèrúù"}
|
||||
}
|
||||
PGK{
|
||||
other{"Kínà Papua Guinea Tuntun"}
|
||||
}
|
||||
PHP{
|
||||
other{"Písò Fílípìnì"}
|
||||
}
|
||||
PKR{
|
||||
other{"Rúpìì Pakisitánì"}
|
||||
}
|
||||
PLN{
|
||||
other{"àwọn sílọ̀tì Pọ́líṣì"}
|
||||
}
|
||||
PYG{
|
||||
other{"àwọn gúáránì Párágúwè"}
|
||||
}
|
||||
QAR{
|
||||
other{"Ráyò Kàtárì"}
|
||||
}
|
||||
RON{
|
||||
other{"Léhì Ròméníà"}
|
||||
}
|
||||
|
@ -887,6 +1023,12 @@ yo{
|
|||
RWF{
|
||||
other{"àwọn faransi Ruwanda"}
|
||||
}
|
||||
SAR{
|
||||
other{"Riya ti Orílẹ́ède Saudi"}
|
||||
}
|
||||
SBD{
|
||||
other{"Dọ́là Erékùsù Sọ́lómọ́nì"}
|
||||
}
|
||||
SCR{
|
||||
other{"àwọ́n rúpì Sayiselesi"}
|
||||
}
|
||||
|
@ -896,6 +1038,9 @@ yo{
|
|||
SEK{
|
||||
other{"Kòrónọ̀ Súwídìn"}
|
||||
}
|
||||
SGD{
|
||||
other{"Dọ́là Síngápọ̀"}
|
||||
}
|
||||
SHP{
|
||||
other{"àwọn pọ́n-un Elena"}
|
||||
}
|
||||
|
@ -911,18 +1056,45 @@ yo{
|
|||
SSP{
|
||||
other{"àwọn pọ́n-un Gúúsù Sùdáànì"}
|
||||
}
|
||||
STN{
|
||||
other{"Dọbíra Sao tome àti Pirisipi"}
|
||||
}
|
||||
SYP{
|
||||
other{"Pọ́n-ùn Sírìà"}
|
||||
}
|
||||
SZL{
|
||||
other{"emalangeni Suwasi"}
|
||||
}
|
||||
THB{
|
||||
other{"Báàtì Tháì"}
|
||||
}
|
||||
TJS{
|
||||
other{"Sómónì Tajikístàànì"}
|
||||
}
|
||||
TMT{
|
||||
other{"Mánààtì Tọkimẹnístàànì"}
|
||||
}
|
||||
TND{
|
||||
other{"àwọn dínà Tuniṣíà"}
|
||||
}
|
||||
TOP{
|
||||
other{"Pàángà Tóńgà"}
|
||||
}
|
||||
TRY{
|
||||
other{"Lírà Tọ́kì"}
|
||||
}
|
||||
TTD{
|
||||
other{"àwọn dọ́là Trinidad àti Tobago"}
|
||||
}
|
||||
TWD{
|
||||
other{"Dọ́là Tàìwánì Tuntun"}
|
||||
}
|
||||
TZS{
|
||||
other{"àwọn ṣile Tansania"}
|
||||
}
|
||||
UAH{
|
||||
other{"Ọrifiníyà Yukiréníà"}
|
||||
}
|
||||
UGX{
|
||||
other{"àwọn ṣile Uganda"}
|
||||
}
|
||||
|
@ -932,9 +1104,21 @@ yo{
|
|||
UYU{
|
||||
other{"àwọn pẹ́sò Úrúgúwè"}
|
||||
}
|
||||
UZS{
|
||||
other{"Sómú Usibẹkísítàànì"}
|
||||
}
|
||||
VES{
|
||||
other{"àwọn bọ̀lífà Fẹnẹsuẹ́là"}
|
||||
}
|
||||
VND{
|
||||
other{"Dáhùn Vietnamese"}
|
||||
}
|
||||
VUV{
|
||||
other{"Fátù Vanuatu"}
|
||||
}
|
||||
WST{
|
||||
other{"Tálà Sàmóà"}
|
||||
}
|
||||
XAF{
|
||||
other{"àwọn firanki àárín Afíríkà"}
|
||||
}
|
||||
|
@ -944,9 +1128,15 @@ yo{
|
|||
XOF{
|
||||
other{"àwọn faransì ìwọ̀-oorùn Afíríkà"}
|
||||
}
|
||||
XPF{
|
||||
other{"Fírànkì CFP"}
|
||||
}
|
||||
XXX{
|
||||
other{"owóníná àìmọ̀"}
|
||||
}
|
||||
YER{
|
||||
other{"Ráyò Yẹ́mẹ̀nì"}
|
||||
}
|
||||
ZAR{
|
||||
other{"rándì Gúúsù Afíríkà"}
|
||||
}
|
||||
|
|
|
@ -413,9 +413,15 @@ yo_BJ{
|
|||
}
|
||||
}
|
||||
CurrencyPlurals{
|
||||
AED{
|
||||
other{"Diami ti Awon Orílɛ́ède Arabu"}
|
||||
}
|
||||
ALL{
|
||||
other{"lɛ́kè Àlìbéníà"}
|
||||
}
|
||||
AMD{
|
||||
other{"Dírààmù Àmɛ́níà"}
|
||||
}
|
||||
ANG{
|
||||
other{"àwɔn gílídà Netherlands Antillean"}
|
||||
}
|
||||
|
@ -425,6 +431,9 @@ yo_BJ{
|
|||
ARS{
|
||||
other{"àwɔn pɛ́sò Agɛntínà"}
|
||||
}
|
||||
AUD{
|
||||
other{"Dɔla ti Orílɛ́ède Ástràlìá"}
|
||||
}
|
||||
AWG{
|
||||
other{"àwɔn fuloríìnì Àrúbà"}
|
||||
}
|
||||
|
@ -434,15 +443,24 @@ yo_BJ{
|
|||
BBD{
|
||||
other{"àwɔn dɔ́là Bábádɔ̀ɔ̀sì"}
|
||||
}
|
||||
BDT{
|
||||
other{"Tákà Báńgíládɛ̀ɛ̀shì"}
|
||||
}
|
||||
BGN{
|
||||
other{"Lɛ́fà Bɔ̀lìgéríà"}
|
||||
}
|
||||
BHD{
|
||||
other{"Dina ti Orílɛ́ède Báránì"}
|
||||
}
|
||||
BIF{
|
||||
other{"àwɔn faransi Bùùrúndì"}
|
||||
}
|
||||
BMD{
|
||||
other{"àwɔ́n dɔ́là Bɛ̀múdà"}
|
||||
}
|
||||
BND{
|
||||
other{"Dɔ́là Bùrùnéì"}
|
||||
}
|
||||
BOB{
|
||||
other{"àwɔn bɔlifiánò Bɔ̀lífíà"}
|
||||
}
|
||||
|
@ -452,6 +470,9 @@ yo_BJ{
|
|||
BSD{
|
||||
other{"àwɔn dɔ́là Bàhámà"}
|
||||
}
|
||||
BTN{
|
||||
other{"Ìngɔ́tírɔ̀mù Bútàànì"}
|
||||
}
|
||||
BWP{
|
||||
other{"àwɔn pula Bɔ̀tìsúwánà"}
|
||||
}
|
||||
|
@ -470,6 +491,9 @@ yo_BJ{
|
|||
CLP{
|
||||
other{"àwɔn pɛ́sò Shílè"}
|
||||
}
|
||||
CNY{
|
||||
other{"Reminibi ti Orílɛ́ède sháínà"}
|
||||
}
|
||||
COP{
|
||||
other{"àwɔn pɛ́sò Kòlóḿbíà"}
|
||||
}
|
||||
|
@ -479,6 +503,9 @@ yo_BJ{
|
|||
CUC{
|
||||
other{"àwɔn pɛ́sò yíyípadà Kúbà"}
|
||||
}
|
||||
CUP{
|
||||
other{"Pɛ́sò Kúbà"}
|
||||
}
|
||||
CVE{
|
||||
other{"àwɔn èsìkúdò Kapú Faadì"}
|
||||
}
|
||||
|
@ -506,12 +533,21 @@ yo_BJ{
|
|||
ETB{
|
||||
other{"àwɔn báà Etópíà"}
|
||||
}
|
||||
FJD{
|
||||
other{"Dɔ́là Fíjì"}
|
||||
}
|
||||
FKP{
|
||||
other{
|
||||
"àwɔn Pɔ́n-ùn Erékùsù Falkland [ Pɔ́n-ùn Erékùsù Falkland ] 1.23 Pɔ́n"
|
||||
"-ùn Erékùsù Falkland 0.00 pɔ́n-ùn Erékùsù Falkland"
|
||||
}
|
||||
}
|
||||
GBP{
|
||||
other{"Pɔ́n-ùn ti Orilɛ̀-èdè Gɛ̀ɛ́sì"}
|
||||
}
|
||||
GEL{
|
||||
other{"Lárì Jɔ́jíà"}
|
||||
}
|
||||
GHS{
|
||||
other{"àwɔn sídì Gana"}
|
||||
}
|
||||
|
@ -530,6 +566,9 @@ yo_BJ{
|
|||
GYD{
|
||||
other{"àwɔn dɔ́là Gùyánà"}
|
||||
}
|
||||
HKD{
|
||||
other{"Dɔ́là Hong Kong"}
|
||||
}
|
||||
HNL{
|
||||
other{"àwɔn Lɛmipírà Ɔ́ńdúrà"}
|
||||
}
|
||||
|
@ -542,21 +581,48 @@ yo_BJ{
|
|||
HUF{
|
||||
other{"àwɔn fɔ́ríǹtì Hɔ̀ngérí"}
|
||||
}
|
||||
ILS{
|
||||
other{"Shékélì Tuntun Ísírɛ̀ɛ̀lì"}
|
||||
}
|
||||
INR{
|
||||
other{"Rupi ti Orílɛ́ède Indina"}
|
||||
}
|
||||
ISK{
|
||||
other{"kórónɔ̀ Áílándíìkì"}
|
||||
}
|
||||
JMD{
|
||||
other{"àwɔn dɔ́là Jàmáíkà"}
|
||||
}
|
||||
JOD{
|
||||
other{"Dínárì Jɔ́dàànì"}
|
||||
}
|
||||
JPY{
|
||||
other{"Yeni ti Orílɛ́ède Japani"}
|
||||
}
|
||||
KES{
|
||||
other{"àwɔ́n shiili Kenya"}
|
||||
}
|
||||
KHR{
|
||||
other{"Ráyò Kàm̀bɔ́díà"}
|
||||
}
|
||||
KMF{
|
||||
other{"àwɔn faransi Komori"}
|
||||
}
|
||||
KPW{
|
||||
other{"Wɔ́ɔ̀nù Àríwá Kòríà"}
|
||||
}
|
||||
KRW{
|
||||
other{"Wɔ́ɔ̀nù Gúúsù Kòríà"}
|
||||
}
|
||||
KYD{
|
||||
other{"àwɔn dɔ́là Erékùsù Cayman"}
|
||||
}
|
||||
KZT{
|
||||
other{"Tɛngé Kasakísítàànì"}
|
||||
}
|
||||
LBP{
|
||||
other{"Pɔ́n-ùn Lebanese"}
|
||||
}
|
||||
LRD{
|
||||
other{"àwɔn dɔla Liberia"}
|
||||
}
|
||||
|
@ -575,15 +641,24 @@ yo_BJ{
|
|||
MKD{
|
||||
other{"dɛ́nàrì Masidóníà"}
|
||||
}
|
||||
MRU{
|
||||
other{"Ouguiya ti Orílɛ́ède Maritania"}
|
||||
}
|
||||
MUR{
|
||||
other{"àwɔn rupi Maritusi"}
|
||||
}
|
||||
MVR{
|
||||
other{"Rúfìyá Mɔ̀lìdífà"}
|
||||
}
|
||||
MWK{
|
||||
other{"àwɔn kásà Màláwì"}
|
||||
}
|
||||
MXN{
|
||||
other{"àwɔn pɛ́sò Mɛ́síkò"}
|
||||
}
|
||||
MYR{
|
||||
other{"Ríngìtì Màléshíà"}
|
||||
}
|
||||
MZN{
|
||||
other{"àwɔn mɛ́tíkààlì Mòsáḿbíìkì"}
|
||||
}
|
||||
|
@ -596,6 +671,12 @@ yo_BJ{
|
|||
NOK{
|
||||
other{"kórónà Nɔ́wè"}
|
||||
}
|
||||
NPR{
|
||||
other{"Rúpìì Nɛ̵́pààlì"}
|
||||
}
|
||||
NZD{
|
||||
other{"Dɔ́là New Zealand"}
|
||||
}
|
||||
PAB{
|
||||
other{"àwɔn bálíbóà Pànámà"}
|
||||
}
|
||||
|
@ -617,6 +698,12 @@ yo_BJ{
|
|||
RWF{
|
||||
other{"àwɔn faransi Ruwanda"}
|
||||
}
|
||||
SAR{
|
||||
other{"Riya ti Orílɛ́ède Saudi"}
|
||||
}
|
||||
SBD{
|
||||
other{"Dɔ́là Erékùsù Sɔ́lómɔ́nì"}
|
||||
}
|
||||
SCR{
|
||||
other{"àwɔ́n rúpì Sayiselesi"}
|
||||
}
|
||||
|
@ -626,6 +713,9 @@ yo_BJ{
|
|||
SEK{
|
||||
other{"Kòrónɔ̀ Súwídìn"}
|
||||
}
|
||||
SGD{
|
||||
other{"Dɔ́là Síngápɔ̀"}
|
||||
}
|
||||
SHP{
|
||||
other{"àwɔn pɔ́n-un Elena"}
|
||||
}
|
||||
|
@ -641,15 +731,33 @@ yo_BJ{
|
|||
SSP{
|
||||
other{"àwɔn pɔ́n-un Gúúsù Sùdáànì"}
|
||||
}
|
||||
STN{
|
||||
other{"Dɔbíra Sao tome àti Pirisipi"}
|
||||
}
|
||||
SYP{
|
||||
other{"Pɔ́n-ùn Sírìà"}
|
||||
}
|
||||
TMT{
|
||||
other{"Mánààtì Tɔkimɛnístàànì"}
|
||||
}
|
||||
TND{
|
||||
other{"àwɔn dínà Tunishíà"}
|
||||
}
|
||||
TRY{
|
||||
other{"Lírà Tɔ́kì"}
|
||||
}
|
||||
TTD{
|
||||
other{"àwɔn dɔ́là Trinidad àti Tobago"}
|
||||
}
|
||||
TWD{
|
||||
other{"Dɔ́là Tàìwánì Tuntun"}
|
||||
}
|
||||
TZS{
|
||||
other{"àwɔn shile Tansania"}
|
||||
}
|
||||
UAH{
|
||||
other{"Ɔrifiníyà Yukiréníà"}
|
||||
}
|
||||
UGX{
|
||||
other{"àwɔn shile Uganda"}
|
||||
}
|
||||
|
@ -659,6 +767,9 @@ yo_BJ{
|
|||
UYU{
|
||||
other{"àwɔn pɛ́sò Úrúgúwè"}
|
||||
}
|
||||
UZS{
|
||||
other{"Sómú Usibɛkísítàànì"}
|
||||
}
|
||||
VES{
|
||||
other{"àwɔn bɔ̀lífà Fɛnɛsuɛ́là"}
|
||||
}
|
||||
|
@ -674,6 +785,9 @@ yo_BJ{
|
|||
XXX{
|
||||
other{"owóníná àìmɔ̀"}
|
||||
}
|
||||
YER{
|
||||
other{"Ráyò Yɛ́mɛ̀nì"}
|
||||
}
|
||||
ZMW{
|
||||
other{"àwɔn kàwasà Sámbíà"}
|
||||
}
|
||||
|
|
|
@ -1332,6 +1332,9 @@ zh{
|
|||
AED{
|
||||
other{"阿联酋迪拉姆"}
|
||||
}
|
||||
AFA{
|
||||
other{"阿富汗尼 (1927–2002)"}
|
||||
}
|
||||
AFN{
|
||||
other{"阿富汗尼"}
|
||||
}
|
||||
|
@ -1476,6 +1479,9 @@ zh{
|
|||
BTN{
|
||||
other{"不丹努尔特鲁姆"}
|
||||
}
|
||||
BUK{
|
||||
other{"缅元"}
|
||||
}
|
||||
BWP{
|
||||
other{"博茨瓦纳普拉"}
|
||||
}
|
||||
|
@ -1734,6 +1740,12 @@ zh{
|
|||
KPW{
|
||||
other{"朝鲜元"}
|
||||
}
|
||||
KRH{
|
||||
other{"韩元 (1953–1962)"}
|
||||
}
|
||||
KRO{
|
||||
other{"韩元 (1945–1953)"}
|
||||
}
|
||||
KRW{
|
||||
other{"韩元"}
|
||||
}
|
||||
|
@ -2043,6 +2055,9 @@ zh{
|
|||
TOP{
|
||||
other{"汤加潘加"}
|
||||
}
|
||||
TPE{
|
||||
other{"帝汶埃斯库多"}
|
||||
}
|
||||
TRL{
|
||||
other{"土耳其里拉 (1922–2005)"}
|
||||
}
|
||||
|
@ -2109,6 +2124,9 @@ zh{
|
|||
VND{
|
||||
other{"越南盾"}
|
||||
}
|
||||
VNN{
|
||||
other{"越南盾 (1978–1985)"}
|
||||
}
|
||||
VUV{
|
||||
other{"瓦努阿图瓦图"}
|
||||
}
|
||||
|
@ -2118,21 +2136,60 @@ zh{
|
|||
XAF{
|
||||
other{"中非法郎"}
|
||||
}
|
||||
XAG{
|
||||
other{"银"}
|
||||
}
|
||||
XAU{
|
||||
other{"黄金"}
|
||||
}
|
||||
XBA{
|
||||
other{"欧洲复合单位"}
|
||||
}
|
||||
XBB{
|
||||
other{"欧洲货币联盟"}
|
||||
}
|
||||
XBC{
|
||||
other{"欧洲计算单位 (XBC)"}
|
||||
}
|
||||
XBD{
|
||||
other{"欧洲计算单位 (XBD)"}
|
||||
}
|
||||
XCD{
|
||||
other{"东加勒比元"}
|
||||
}
|
||||
XDR{
|
||||
other{"特别提款权"}
|
||||
}
|
||||
XEU{
|
||||
other{"欧洲货币单位"}
|
||||
}
|
||||
XFO{
|
||||
other{"法国金法郎"}
|
||||
}
|
||||
XFU{
|
||||
other{"法国法郎 (UIC)"}
|
||||
}
|
||||
XOF{
|
||||
other{"西非法郎"}
|
||||
}
|
||||
XPD{
|
||||
other{"钯"}
|
||||
}
|
||||
XPF{
|
||||
other{"太平洋法郎"}
|
||||
}
|
||||
XPT{
|
||||
other{"铂"}
|
||||
}
|
||||
XRE{
|
||||
other{"RINET 基金"}
|
||||
}
|
||||
XSU{
|
||||
other{"苏克雷"}
|
||||
}
|
||||
XTS{
|
||||
other{"测试货币代码"}
|
||||
}
|
||||
XUA{
|
||||
other{"非洲开发银行记账单位"}
|
||||
}
|
||||
|
|
|
@ -23,6 +23,9 @@ zh_Hans_HK{
|
|||
NIO{
|
||||
other{"尼加拉瓜科多巴"}
|
||||
}
|
||||
XAG{
|
||||
other{"白银"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
|
|
|
@ -23,6 +23,9 @@ zh_Hans_MO{
|
|||
NIO{
|
||||
other{"尼加拉瓜科多巴"}
|
||||
}
|
||||
XAG{
|
||||
other{"白银"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
|
|
|
@ -23,6 +23,9 @@ zh_Hans_SG{
|
|||
NIO{
|
||||
other{"尼加拉瓜科多巴"}
|
||||
}
|
||||
XAG{
|
||||
other{"白银"}
|
||||
}
|
||||
}
|
||||
CurrencyUnitPatterns{
|
||||
other{"{0} {1}"}
|
||||
|
|
|
@ -1091,6 +1091,10 @@ zu{
|
|||
one{"i-Liberian Dollar"}
|
||||
other{"i-Liberian Dollar"}
|
||||
}
|
||||
LSL{
|
||||
one{"i-Lesotho Loti"}
|
||||
other{"i-Lesotho Loti"}
|
||||
}
|
||||
LYD{
|
||||
one{"i-Libyan Dinar"}
|
||||
other{"i-Libyan Dinar"}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
Copyright © 1991-2022 Unicode, Inc.
|
||||
Copyright © 1991-2023 Unicode, Inc.
|
||||
For terms of use, see http://www.unicode.org/copyright.html
|
||||
SPDX-License-Identifier: Unicode-DFS-2016
|
||||
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
|
||||
|
@ -68,6 +68,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
|||
<!--@METADATA-->
|
||||
<!--@DEPRECATED:true, false-->
|
||||
<!ATTLIST language references CDATA #IMPLIED >
|
||||
<!--@MATCH:any-->
|
||||
<!--@METADATA-->
|
||||
|
||||
<!ELEMENT script ( #PCDATA ) >
|
||||
|
@ -465,6 +466,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
|||
<!--@METADATA-->
|
||||
<!--@DEPRECATED-->
|
||||
<!ATTLIST exemplarCharacters references CDATA #IMPLIED >
|
||||
<!--@MATCH:any-->
|
||||
<!--@METADATA-->
|
||||
<!ATTLIST exemplarCharacters validSubLocales CDATA #IMPLIED >
|
||||
<!--@VALUE-->
|
||||
|
@ -2825,10 +2827,11 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
|||
|
||||
<!ELEMENT cr ( #PCDATA ) >
|
||||
<!ATTLIST cr alt NMTOKENS #IMPLIED >
|
||||
<!--@MATCH:literal/variant-->
|
||||
<!--@MATCH:literal/variant, proposed, short-->
|
||||
<!ATTLIST cr draft (approved | contributed | provisional | unconfirmed) #IMPLIED >
|
||||
<!--@METADATA-->
|
||||
<!ATTLIST cr references CDATA #IMPLIED >
|
||||
<!--@MATCH:any-->
|
||||
<!--@METADATA-->
|
||||
|
||||
<!-- # Use the cr element instead, with ICU syntax. -->
|
||||
|
@ -3123,7 +3126,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
|||
<!--@MATCH:or/range/-1.0E20~1.0E20||literal/-x, 0, 0.x, NaN, -Inf, Inf, x,x, x.x-->
|
||||
<!--@VALUE-->
|
||||
<!ATTLIST rbnfrule radix CDATA #IMPLIED >
|
||||
<!--@MATCH:literal/1,000, 100, 1000, 100000, 20-->
|
||||
<!--@MATCH:literal/1,000, 100, 1000, 100000, 5, 20, 400, 8000, 160,000, 3,200,000, 64,000,000-->
|
||||
<!--@VALUE-->
|
||||
<!ATTLIST rbnfrule decexp CDATA #IMPLIED >
|
||||
<!--@VALUE-->
|
||||
|
@ -3214,7 +3217,7 @@ CLDR data files are interpreted according to the LDML specification (http://unic
|
|||
<!ELEMENT sampleName ( alias | ( nameField+, special* ) ) >
|
||||
<!--@TECHPREVIEW-->
|
||||
<!ATTLIST sampleName item NMTOKENS #REQUIRED >
|
||||
<!--@MATCH:literal/nativeG, nativeGS, nativeGGS, nativeFull, foreignG, foreignGS, foreignGGS, foreignFull -->
|
||||
<!--@MATCH:literal/nativeG, nativeGS, nativeGGS, nativeFull, foreignG, foreignGS, foreignGGS, foreignFull-->
|
||||
|
||||
<!ELEMENT nameField ( #PCDATA ) >
|
||||
<!--@TECHPREVIEW-->
|
||||
|
|
|
@ -80,6 +80,7 @@ fr_CA{
|
|||
en_US{"anglais (É.-U.)"}
|
||||
}
|
||||
Languages%variant{
|
||||
ckb{"kurde central"}
|
||||
ug{"ouïghour"}
|
||||
}
|
||||
Scripts{
|
||||
|
|
|
@ -816,6 +816,10 @@ or{
|
|||
}
|
||||
characterLabelPattern{
|
||||
other{"{0} — ଅନ୍ୟ"}
|
||||
strokes{
|
||||
one{"{0} strokes"}
|
||||
other{"{0} strokes"}
|
||||
}
|
||||
subscript{"ସବସ୍କ୍ରିପ୍ଟ {0}"}
|
||||
superscript{"ସୁପରସ୍କ୍ରିପ୍ଟ {0}"}
|
||||
}
|
||||
|
|
|
@ -298,6 +298,7 @@ sr_Latn{
|
|||
li{"limburški"}
|
||||
lil{"lilut"}
|
||||
lkt{"lakota"}
|
||||
lmo{"lombard"}
|
||||
ln{"lingala"}
|
||||
lo{"laoski"}
|
||||
lol{"mongo"}
|
||||
|
|
|
@ -17,6 +17,12 @@ ur_IN{
|
|||
zgh{"معیاری مراقشی تمازیقی"}
|
||||
zh_Hans{"آسان چینی"}
|
||||
}
|
||||
Languages%menu{
|
||||
ckb{"سورانی کردی"}
|
||||
}
|
||||
Languages%variant{
|
||||
ckb{"سورانی کردی"}
|
||||
}
|
||||
Types{
|
||||
numbers{
|
||||
armnlow{"آرمینیائی لوئر کیس اعداد"}
|
||||
|
|
|
@ -141,10 +141,6 @@ af{
|
|||
}
|
||||
}
|
||||
currencyFormat%alphaNextToNumber{
|
||||
1000000{
|
||||
one{"¤0 m"}
|
||||
other{"¤0 m"}
|
||||
}
|
||||
100000000{
|
||||
one{"¤ 000 m"}
|
||||
other{"¤ 000 m"}
|
||||
|
@ -1194,6 +1190,10 @@ af{
|
|||
one{"oor {0} Vr."}
|
||||
other{"oor {0} Vr."}
|
||||
}
|
||||
past{
|
||||
one{"{0} Vr. gelede"}
|
||||
other{"{0} Vr. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
fri-short{
|
||||
|
@ -1325,6 +1325,10 @@ af{
|
|||
one{"oor {0} Ma."}
|
||||
other{"oor {0} Ma."}
|
||||
}
|
||||
past{
|
||||
one{"{0} Ma. gelede"}
|
||||
other{"{0} Ma. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
mon-short{
|
||||
|
@ -1470,6 +1474,10 @@ af{
|
|||
one{"oor {0} Sa."}
|
||||
other{"oor {0} Sa."}
|
||||
}
|
||||
past{
|
||||
one{"{0} Sa. gelede"}
|
||||
other{"{0} Sa. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sat-short{
|
||||
|
@ -1549,11 +1557,20 @@ af{
|
|||
}
|
||||
}
|
||||
sun-narrow{
|
||||
relative{
|
||||
"-1"{"verlede So."}
|
||||
"0"{"hierdie So."}
|
||||
"1"{"volgende So."}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"oor {0} So."}
|
||||
other{"oor {0} So."}
|
||||
}
|
||||
past{
|
||||
one{"{0} So. gelede"}
|
||||
other{"{0} So. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sun-short{
|
||||
|
@ -1601,6 +1618,10 @@ af{
|
|||
one{"oor {0} Do."}
|
||||
other{"oor {0} Do."}
|
||||
}
|
||||
past{
|
||||
one{"{0} Do. gelede"}
|
||||
other{"{0} Do. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
thu-short{
|
||||
|
@ -1648,6 +1669,10 @@ af{
|
|||
one{"oor {0} Di."}
|
||||
other{"oor {0} Di."}
|
||||
}
|
||||
past{
|
||||
one{"{0} Di. gelede"}
|
||||
other{"{0} Di. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
tue-short{
|
||||
|
@ -1695,6 +1720,10 @@ af{
|
|||
one{"oor {0} Wo."}
|
||||
other{"oor {0} Wo."}
|
||||
}
|
||||
past{
|
||||
one{"{0} Wo. gelede"}
|
||||
other{"{0} Wo. gelede"}
|
||||
}
|
||||
}
|
||||
}
|
||||
wed-short{
|
||||
|
@ -1869,6 +1898,18 @@ af{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} of {1}"}
|
||||
end{"{0} of {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} of {1}"}
|
||||
end{"{0} of {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} en {1}"}
|
||||
end{"{0} en {1}"}
|
||||
|
@ -1876,7 +1917,10 @@ af{
|
|||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} en {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} en {1}"}
|
||||
|
|
|
@ -28,6 +28,61 @@ am{
|
|||
ExemplarCharactersPunctuation{"[‐ – , ፡ ፣ ፤ ፥ ፦ ! ? . ። ‹ › « » ( ) \\[ \\]]"}
|
||||
MoreInformation{"?"}
|
||||
NumberElements{
|
||||
adlm{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
bali{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
beng{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
brah{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
cakm{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
cham{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
deva{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
fullwide{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
gong{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
gujr{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
hanidec{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
latn{
|
||||
miscPatterns{
|
||||
approximately{"~{0}"}
|
||||
|
@ -449,6 +504,69 @@ am{
|
|||
}
|
||||
}
|
||||
}
|
||||
coptic{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE፣ d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
availableFormats{
|
||||
MEd{"E፣ M/d"}
|
||||
MMMEd{"E፣ MMM d"}
|
||||
MMMMEd{"E፣ MMMM d"}
|
||||
MMMMd{"MMMM d"}
|
||||
yMEd{"E፣ d/M/y"}
|
||||
yMMMEd{"E፣ MMM d y"}
|
||||
}
|
||||
intervalFormats{
|
||||
fallback{"{0} – {1}"}
|
||||
yMEd{
|
||||
d{"E፣ d/M/y – E፣ d/M/y"}
|
||||
y{"E፣ d/M/y – E፣ d/M/y"}
|
||||
}
|
||||
yMMMEd{
|
||||
y{"E፣ MMM d፣ y – E፣ MMM d፣ y"}
|
||||
}
|
||||
yMMMd{
|
||||
d{"MMM d–d፣ y"}
|
||||
y{"MMM d፣ y – MMM d፣ y"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"13",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
dangi{
|
||||
intervalFormats{
|
||||
fallback{"{0} – {1}"}
|
||||
}
|
||||
}
|
||||
ethiopic{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
|
@ -746,6 +864,12 @@ am{
|
|||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"ahmmsszzzz",
|
||||
"ahmmssz",
|
||||
|
@ -934,6 +1058,12 @@ am{
|
|||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"ahmmsszzzz",
|
||||
"ahmmssz",
|
||||
|
@ -1433,9 +1563,196 @@ am{
|
|||
}
|
||||
}
|
||||
}
|
||||
islamic{
|
||||
hebrew{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE፣ d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
availableFormats{
|
||||
MMMEd{"E፣ MMM d"}
|
||||
yMEd{"E፣ d/M/y"}
|
||||
}
|
||||
eras{
|
||||
narrow{
|
||||
"AM",
|
||||
}
|
||||
wide{
|
||||
"AM",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
MEd{
|
||||
M{"E፣ d/M – E፣ d/M"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E፣ MMM d – E፣ MMM d"}
|
||||
d{"E d – E d፣ MMM"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
yMEd{
|
||||
d{"E፣ d/M/y – E፣ d/M/y"}
|
||||
}
|
||||
yMMMEd{
|
||||
y{"E፣ MMM d፣ y – E፣ MMM d፣ y"}
|
||||
}
|
||||
yMMMd{
|
||||
d{"MMM d–d፣ y"}
|
||||
y{"MMM d፣ y – MMM d፣ y"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"13",
|
||||
"7",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
indian{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE፣ d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
availableFormats{
|
||||
MEd{"E፣ M/d"}
|
||||
MMMEd{"E፣ MMM d"}
|
||||
MMMMEd{"E፣ MMMM d"}
|
||||
yMEd{"E፣ d/M/y"}
|
||||
yMMMEd{"E፣ MMM d y"}
|
||||
}
|
||||
intervalFormats{
|
||||
MEd{
|
||||
M{"E፣ d/M – E፣ d/M"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E፣ MMM d – E፣ MMM d"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
yMEd{
|
||||
M{"E d/M/ – E d/M፣ y"}
|
||||
d{"E፣ d/M/y – E፣ d/M/y"}
|
||||
y{"E፣ d/M/y – E፣ d/M/y"}
|
||||
}
|
||||
yMMM{
|
||||
M{"MMM–MMM፣ y"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
islamic{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE፣ d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
availableFormats{
|
||||
GyMMMEd{"E MMM d፣ y G"}
|
||||
GyMMMd{"MMM d፣ y G"}
|
||||
MEd{"E፣ M/d"}
|
||||
MMMEd{"E፣ MMM d"}
|
||||
MMMMEd{"E፣ MMMM d"}
|
||||
yMEd{"E፣ d/M/y"}
|
||||
yMMMEd{"E፣ MMM d y"}
|
||||
}
|
||||
intervalFormats{
|
||||
MEd{
|
||||
M{"E፣ d/M – E፣ d/M"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E፣ MMM d – E፣ MMM d"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
yMEd{
|
||||
M{"E d/M/ – E d/M፣ y"}
|
||||
d{"E፣ d/M/y – E፣ d/M/y"}
|
||||
y{"E፣ d/M/y – E፣ d/M/y"}
|
||||
}
|
||||
yMMM{
|
||||
M{"MMM–MMM፣ y"}
|
||||
}
|
||||
yMMMd{
|
||||
d{"MMM d–d፣ y"}
|
||||
y{"MMM d፣ y – MMM d፣ y"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
wide{
|
||||
"ሙሀረም",
|
||||
"ሳፈር",
|
||||
|
@ -1451,6 +1768,97 @@ am{
|
|||
"ዙልሂጃህ",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
wide{
|
||||
"ሙሀረም",
|
||||
"ሳፈር",
|
||||
"ረቢዑል አወል",
|
||||
"ረቢዑል አኺር",
|
||||
"ጀማደል አወል",
|
||||
"ጀማደል አኺር",
|
||||
"ረጀብ",
|
||||
"ሻእባን",
|
||||
"ረመዳን",
|
||||
"ሸዋል",
|
||||
"ዙልቂዳህ",
|
||||
"ዙልሂጃህ",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
japanese{
|
||||
intervalFormats{
|
||||
MEd{
|
||||
M{"E፣ d/M – E፣ d/M"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E፣ MMM d – E፣ MMM d"}
|
||||
d{"E d – E d፣ MMM"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
yMEd{
|
||||
M{"E d/M/ – E d/M፣ y"}
|
||||
d{"E፣ d/M/y – E፣ d/M/y"}
|
||||
y{"E፣ d/M/y – E፣ d/M/y"}
|
||||
}
|
||||
yMMM{
|
||||
M{"MMM–MMM፣ y"}
|
||||
}
|
||||
yMMMd{
|
||||
d{"MMM d–d፣ y"}
|
||||
y{"MMM d፣ y – MMM d፣ y"}
|
||||
}
|
||||
}
|
||||
}
|
||||
persian{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE፣ d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
intervalFormats{
|
||||
fallback{"{0} – {1}"}
|
||||
yMMMEd{
|
||||
M{"E MMM d – E MMM d፣ y"}
|
||||
d{"E MMM d – E MMM d፣ y"}
|
||||
y{"E፣ MMM d፣ y – E፣ MMM d፣ y"}
|
||||
}
|
||||
yMMMd{
|
||||
M{"MMM d – MMM d፣ y"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
roc{
|
||||
intervalFormats{
|
||||
fallback{"{0} – {1}"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1705,6 +2113,9 @@ am{
|
|||
}
|
||||
hour-narrow{
|
||||
dn{"ሰዓት"}
|
||||
relative{
|
||||
"0"{"ይህ ሰዓት"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"በ{0} ሰዓት ውስጥ"}
|
||||
|
@ -1718,6 +2129,9 @@ am{
|
|||
}
|
||||
hour-short{
|
||||
dn{"ሰዓት"}
|
||||
relative{
|
||||
"0"{"ይህ ሰዓት"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"በ{0} ሰዓት ውስጥ"}
|
||||
|
@ -1747,6 +2161,9 @@ am{
|
|||
}
|
||||
minute-narrow{
|
||||
dn{"ደቂቃ"}
|
||||
relative{
|
||||
"0"{"ይህ ደቂቃ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"በ{0} ደቂቃ ውስጥ"}
|
||||
|
@ -1760,6 +2177,9 @@ am{
|
|||
}
|
||||
minute-short{
|
||||
dn{"ደቂቃ"}
|
||||
relative{
|
||||
"0"{"ይህ ደቂቃ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"በ{0} ደቂቃ ውስጥ"}
|
||||
|
@ -2389,7 +2809,16 @@ am{
|
|||
start{"{0}፣ {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ወይም {1}"}
|
||||
end{"{0}፣ ወይም {1}"}
|
||||
middle{"{0}፣ {1}"}
|
||||
start{"{0}፣ {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ወይም {1}"}
|
||||
end{"{0}፣ ወይም {1}"}
|
||||
middle{"{0}፣ {1}"}
|
||||
start{"{0}፣ {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} እና {1}"}
|
||||
|
@ -2398,6 +2827,9 @@ am{
|
|||
start{"{0}፣ {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} እና {1}"}
|
||||
end{"{0}, እና {1}"}
|
||||
middle{"{0}፣ {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
|
@ -2475,5 +2907,74 @@ am{
|
|||
"zh",
|
||||
}
|
||||
}
|
||||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-long-addressing-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-long-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-addressing-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-addressing-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
sorting-long-referring-informal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-medium-referring-formal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-medium-referring-informal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-short-referring-formal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-short-referring-informal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-long-addressing-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-long-addressing-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-addressing-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-addressing-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-addressing-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-addressing-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-referring-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-referring-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2344,6 +2344,11 @@ ar{
|
|||
}
|
||||
month-narrow{
|
||||
dn{"الشهر"}
|
||||
relative{
|
||||
"-1"{"الشهر الماضي"}
|
||||
"0"{"هذا الشهر"}
|
||||
"1"{"الشهر القادم"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"خلال {0} أشهر"}
|
||||
|
@ -2365,6 +2370,11 @@ ar{
|
|||
}
|
||||
month-short{
|
||||
dn{"الشهر"}
|
||||
relative{
|
||||
"-1"{"الشهر الماضي"}
|
||||
"0"{"هذا الشهر"}
|
||||
"1"{"الشهر القادم"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"خلال {0} أشهر"}
|
||||
|
@ -2932,6 +2942,11 @@ ar{
|
|||
}
|
||||
week-narrow{
|
||||
dn{"الأسبوع"}
|
||||
relative{
|
||||
"-1"{"الأسبوع الماضي"}
|
||||
"0"{"هذا الأسبوع"}
|
||||
"1"{"الأسبوع القادم"}
|
||||
}
|
||||
relativePeriod{"أسبوع {0}"}
|
||||
relativeTime{
|
||||
future{
|
||||
|
@ -2954,6 +2969,11 @@ ar{
|
|||
}
|
||||
week-short{
|
||||
dn{"الأسبوع"}
|
||||
relative{
|
||||
"-1"{"الأسبوع الماضي"}
|
||||
"0"{"هذا الأسبوع"}
|
||||
"1"{"الأسبوع القادم"}
|
||||
}
|
||||
relativePeriod{"أسبوع {0}"}
|
||||
relativeTime{
|
||||
future{
|
||||
|
@ -3029,6 +3049,11 @@ ar{
|
|||
}
|
||||
year-narrow{
|
||||
dn{"السنة"}
|
||||
relative{
|
||||
"-1"{"السنة الماضية"}
|
||||
"0"{"السنة الحالية"}
|
||||
"1"{"السنة القادمة"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"خلال {0} سنوات"}
|
||||
|
@ -3050,6 +3075,11 @@ ar{
|
|||
}
|
||||
year-short{
|
||||
dn{"السنة"}
|
||||
relative{
|
||||
"-1"{"السنة الماضية"}
|
||||
"0"{"السنة الحالية"}
|
||||
"1"{"السنة القادمة"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"خلال {0} سنوات"}
|
||||
|
@ -3090,10 +3120,16 @@ ar{
|
|||
start{"{0} أو {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} أو {1}"}
|
||||
end{"{0} أو {1}"}
|
||||
middle{"{0} أو {1}"}
|
||||
start{"{0} أو {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} أو {1}"}
|
||||
end{"{0} أو {1}"}
|
||||
middle{"{0} أو {1}"}
|
||||
start{"{0} أو {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} و{1}"}
|
||||
|
@ -3102,6 +3138,7 @@ ar{
|
|||
start{"{0} و{1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} و{1}"}
|
||||
end{"{0} و{1}"}
|
||||
middle{"{0} و{1}"}
|
||||
start{"{0} و{1}"}
|
||||
|
@ -3119,6 +3156,7 @@ ar{
|
|||
start{"{0}، و{1}"}
|
||||
}
|
||||
unit-narrow{
|
||||
2{"{0} و{1}"}
|
||||
end{"{0} و{1}"}
|
||||
middle{"{0} و{1}"}
|
||||
start{"{0} و{1}"}
|
||||
|
@ -3153,8 +3191,8 @@ ar{
|
|||
personNames{
|
||||
foreignSpaceReplacement{" "}
|
||||
initialPattern{
|
||||
initial{"{0}"}
|
||||
initialSequence{"{0}. {1}."}
|
||||
initial{"{0}."}
|
||||
initialSequence{"{0} {1}"}
|
||||
}
|
||||
nameOrderLocales{
|
||||
givenFirst{
|
||||
|
@ -3172,37 +3210,22 @@ ar{
|
|||
givenFirst-long-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-long-addressing-informal{"{given-informal}"}
|
||||
givenFirst-long-monogram-formal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-informal-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-long-monogram-informal{"{given-informal-monogram-allCaps}.{surname-monogram-allCaps}"}
|
||||
givenFirst-long-referring-formal{"{title} {given} {given2} {surname} {generation}، {credentials}"}
|
||||
givenFirst-long-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-medium-addressing-informal{"{given-informal}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
}
|
||||
givenFirst-medium-monogram-formal{"{given-monogram-allCaps}.{surname-monogram-allCaps}"}
|
||||
givenFirst-medium-monogram-informal{"{given-monogram-allCaps}.{surname-monogram-allCaps}"}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2-initial} {surname}"}
|
||||
givenFirst-medium-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-short-addressing-informal{"{given-informal}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
}
|
||||
givenFirst-short-monogram-informal{
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
"{given-monogram-allCaps}.{surname-monogram-allCaps}",
|
||||
}
|
||||
givenFirst-short-monogram-formal{"{surname-monogram-allCaps}"}
|
||||
givenFirst-short-monogram-informal{"{given-monogram-allCaps}.{surname-monogram-allCaps}"}
|
||||
givenFirst-short-referring-formal{"{title} {given-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given-informal-initial}. {surname}"}
|
||||
sorting-long-referring-formal{"{surname-prefix} {surname-core}، {given} {given2}"}
|
||||
|
|
|
@ -27,5 +27,17 @@ ar_AE{
|
|||
"1"{"السنة التالية"}
|
||||
}
|
||||
}
|
||||
year-narrow{
|
||||
relative{
|
||||
"0"{"هذه السنة"}
|
||||
"1"{"السنة التالية"}
|
||||
}
|
||||
}
|
||||
year-short{
|
||||
relative{
|
||||
"0"{"هذه السنة"}
|
||||
"1"{"السنة التالية"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -36,6 +36,7 @@ as{
|
|||
scientificFormat{"#E0"}
|
||||
}
|
||||
symbols{
|
||||
approximatelySign{"~"}
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
group{","}
|
||||
|
@ -937,6 +938,20 @@ as{
|
|||
"মাঘ",
|
||||
"ফাল্গুন",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
wide{
|
||||
"চৈত্ৰ",
|
||||
"বৈশাখ",
|
||||
|
@ -953,6 +968,20 @@ as{
|
|||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
"চৈত্ৰ",
|
||||
"বৈশাখ",
|
||||
"জ্যেষ্ঠ",
|
||||
"আষাঢ়",
|
||||
"শ্ৰাৱণ",
|
||||
"ভাদ্ৰ",
|
||||
"অশ্বিন",
|
||||
"কাৰ্তিক",
|
||||
"অগ্ৰহায়ণ",
|
||||
"পৌষ",
|
||||
"মাঘ",
|
||||
"ফাল্গুন",
|
||||
}
|
||||
wide{
|
||||
"চৈত্ৰ",
|
||||
"বৈশাখ",
|
||||
|
@ -1088,6 +1117,11 @@ as{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"দিন"}
|
||||
relative{
|
||||
"-1"{"কালি"}
|
||||
"0"{"আজি"}
|
||||
"1"{"কাইলৈ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} দিনত"}
|
||||
|
@ -1101,6 +1135,11 @@ as{
|
|||
}
|
||||
day-short{
|
||||
dn{"দিন"}
|
||||
relative{
|
||||
"-1"{"কালি"}
|
||||
"0"{"আজি"}
|
||||
"1"{"কাইলৈ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} দিনত"}
|
||||
|
@ -1363,6 +1402,11 @@ as{
|
|||
}
|
||||
month-short{
|
||||
dn{"মাহ"}
|
||||
relative{
|
||||
"-1"{"যোৱা মাহ"}
|
||||
"0"{"এই মাহ"}
|
||||
"1"{"অহা মাহ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} মাহত"}
|
||||
|
@ -1630,6 +1674,23 @@ as{
|
|||
}
|
||||
}
|
||||
}
|
||||
tue-narrow{
|
||||
relative{
|
||||
"-1"{"যোৱা মঙ্গল"}
|
||||
"0"{"এই মঙ্গল"}
|
||||
"1"{"অহা মঙ্গল"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} মঙ্গলে"}
|
||||
other{"{0} মঙ্গলে"}
|
||||
}
|
||||
past{
|
||||
one{"{0} মঙ্গলৰ পূৰ্বে"}
|
||||
other{"{0} মঙ্গলৰ পূৰ্বে"}
|
||||
}
|
||||
}
|
||||
}
|
||||
tue-short{
|
||||
relative{
|
||||
"-1"{"যোৱা মঙ্গল"}
|
||||
|
@ -1719,6 +1780,11 @@ as{
|
|||
}
|
||||
week-narrow{
|
||||
dn{"সপ্তাহ"}
|
||||
relative{
|
||||
"-1"{"যোৱা সপ্তাহ"}
|
||||
"0"{"এই সপ্তাহ"}
|
||||
"1"{"অহা সপ্তাহ"}
|
||||
}
|
||||
relativePeriod{"{0}ৰ সপ্তাহ"}
|
||||
relativeTime{
|
||||
future{
|
||||
|
@ -1733,6 +1799,11 @@ as{
|
|||
}
|
||||
week-short{
|
||||
dn{"সপ্তাহ"}
|
||||
relative{
|
||||
"-1"{"যোৱা সপ্তাহ"}
|
||||
"0"{"এই সপ্তাহ"}
|
||||
"1"{"অহা সপ্তাহ"}
|
||||
}
|
||||
relativePeriod{"{0}ৰ সপ্তাহ"}
|
||||
relativeTime{
|
||||
future{
|
||||
|
@ -1792,6 +1863,11 @@ as{
|
|||
}
|
||||
year-narrow{
|
||||
dn{"বছৰ"}
|
||||
relative{
|
||||
"-1"{"যোৱা বছৰ"}
|
||||
"0"{"এই বছৰ"}
|
||||
"1"{"অহা বছৰ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} বছৰত"}
|
||||
|
@ -1838,6 +1914,18 @@ as{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} বা {1}"}
|
||||
end{"{0} বা {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} বা {1}"}
|
||||
end{"{0} বা {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} আৰু {1}"}
|
||||
end{"{0} আৰু {1}"}
|
||||
|
@ -1848,6 +1936,13 @@ as{
|
|||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} আৰু {1}"}
|
||||
end{"{0} আৰু {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0}, {1}"}
|
||||
|
|
|
@ -961,6 +961,59 @@ az{
|
|||
}
|
||||
}
|
||||
islamic{
|
||||
DateTimePatterns{
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
"G d MMMM y, EEEE",
|
||||
"G d MMMM, y",
|
||||
"G d MMM y",
|
||||
"GGGGG dd.MM.y",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"HHmmsszzzz",
|
||||
"HHmmssz",
|
||||
"HHmmss",
|
||||
"HHmm",
|
||||
"GyMMMMEEEEd",
|
||||
"GyMMMMd",
|
||||
"GyMMMd",
|
||||
"GGGGGyMMdd",
|
||||
}
|
||||
availableFormats{
|
||||
E{"ccc"}
|
||||
Ed{"d, E"}
|
||||
Gy{"G y"}
|
||||
GyMMM{"G MMM y"}
|
||||
GyMMMEd{"G d MMM y, E"}
|
||||
GyMMMd{"G d MMM y"}
|
||||
GyMd{"GGGGG d M y"}
|
||||
M{"L"}
|
||||
MEd{"dd.MM, E"}
|
||||
MMM{"LLL"}
|
||||
MMMEd{"d MMM, E"}
|
||||
MMMMd{"MMMM d"}
|
||||
MMMd{"d MMM"}
|
||||
Md{"dd.MM"}
|
||||
d{"d"}
|
||||
y{"G y"}
|
||||
yyyy{"G y"}
|
||||
yyyyM{"GGGGG MM y"}
|
||||
yyyyMEd{"GGGGG dd.MM.y, E"}
|
||||
yyyyMMM{"G MMM y"}
|
||||
yyyyMMMEd{"G d MMM y, E"}
|
||||
yyyyMMMM{"G MMMM y"}
|
||||
yyyyMMMd{"G d MMM y"}
|
||||
yyyyMd{"GGGGG dd.MM.y"}
|
||||
yyyyQQQ{"G y QQQ"}
|
||||
yyyyQQQQ{"G y QQQQ"}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
abbreviated{
|
||||
|
@ -977,6 +1030,20 @@ az{
|
|||
"Zilq.",
|
||||
"Zilh.",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
wide{
|
||||
"Məhərrəm",
|
||||
"Səfər",
|
||||
|
@ -1027,6 +1094,64 @@ az{
|
|||
persian{
|
||||
monthNames{
|
||||
format{
|
||||
abbreviated{
|
||||
"fərvərdin",
|
||||
"ordibeheşt",
|
||||
"xordəd",
|
||||
"tir",
|
||||
"mordəd",
|
||||
"şəhrivar",
|
||||
"mehr",
|
||||
"abən",
|
||||
"azər",
|
||||
"dey",
|
||||
"bəhmən",
|
||||
"isfənd",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
wide{
|
||||
"fərvərdin",
|
||||
"ordibeheşt",
|
||||
"xordəd",
|
||||
"tir",
|
||||
"mordəd",
|
||||
"şəhrivar",
|
||||
"mehr",
|
||||
"abən",
|
||||
"azər",
|
||||
"dey",
|
||||
"bəhmən",
|
||||
"isfənd",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
"fərvərdin",
|
||||
"ordibeheşt",
|
||||
"xordəd",
|
||||
"tir",
|
||||
"mordəd",
|
||||
"şəhrivar",
|
||||
"mehr",
|
||||
"abən",
|
||||
"azər",
|
||||
"dey",
|
||||
"bəhmən",
|
||||
"isfənd",
|
||||
}
|
||||
wide{
|
||||
"fərvərdin",
|
||||
"ordibeheşt",
|
||||
|
@ -1158,12 +1283,60 @@ az{
|
|||
}
|
||||
}
|
||||
}
|
||||
day-narrow{
|
||||
dn{"Gün"}
|
||||
relative{
|
||||
"-1"{"dünən"}
|
||||
"0"{"bu gün"}
|
||||
"1"{"sabah"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} gün ərzində"}
|
||||
other{"{0} gün ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} gün öncə"}
|
||||
other{"{0} gün öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
day-short{
|
||||
dn{"Gün"}
|
||||
relative{
|
||||
"-1"{"dünən"}
|
||||
"0"{"bu gün"}
|
||||
"1"{"sabah"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} gün ərzində"}
|
||||
other{"{0} gün ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} gün öncə"}
|
||||
other{"{0} gün öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
dayOfYear{
|
||||
dn{"ilin günü"}
|
||||
}
|
||||
dayOfYear-narrow{
|
||||
dn{"ilin günü"}
|
||||
}
|
||||
dayOfYear-short{
|
||||
dn{"ilin günü"}
|
||||
}
|
||||
dayperiod{
|
||||
dn{"AM/PM"}
|
||||
}
|
||||
dayperiod-narrow{
|
||||
dn{"AM/PM"}
|
||||
}
|
||||
dayperiod-short{
|
||||
dn{"AM/PM"}
|
||||
}
|
||||
era{
|
||||
dn{"Era"}
|
||||
}
|
||||
|
@ -1240,8 +1413,31 @@ az{
|
|||
}
|
||||
}
|
||||
}
|
||||
hour-narrow{
|
||||
dn{"saat"}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} saat ərzində"}
|
||||
other{"{0} saat ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} saat öncə"}
|
||||
other{"{0} saat öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
hour-short{
|
||||
dn{"saat"}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} saat ərzində"}
|
||||
other{"{0} saat ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} saat öncə"}
|
||||
other{"{0} saat öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
minute{
|
||||
dn{"Dəqiqə"}
|
||||
|
@ -1259,8 +1455,31 @@ az{
|
|||
}
|
||||
}
|
||||
}
|
||||
minute-narrow{
|
||||
dn{"dəq."}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} dəqiqə ərzində"}
|
||||
other{"{0} dəqiqə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} dəqiqə öncə"}
|
||||
other{"{0} dəqiqə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
minute-short{
|
||||
dn{"dəq."}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} dəqiqə ərzində"}
|
||||
other{"{0} dəqiqə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} dəqiqə öncə"}
|
||||
other{"{0} dəqiqə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
mon{
|
||||
relative{
|
||||
|
@ -1297,11 +1516,20 @@ az{
|
|||
}
|
||||
}
|
||||
mon-short{
|
||||
relative{
|
||||
"-1"{"keçən bazar ertəsi"}
|
||||
"0"{"bu bazar ertəsi"}
|
||||
"1"{"gələn bazar ertəsi"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} bazar ertəsi ərzində"}
|
||||
other{"{0} bazar ertəsi ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} bazar ertəsi öncə"}
|
||||
other{"{0} bazar ertəsi öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
month{
|
||||
|
@ -1324,7 +1552,16 @@ az{
|
|||
}
|
||||
month-narrow{
|
||||
dn{"ay"}
|
||||
relative{
|
||||
"-1"{"keçən ay"}
|
||||
"0"{"bu ay"}
|
||||
"1"{"gələn ay"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} ay ərzində"}
|
||||
other{"{0} ay ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} ay öncə"}
|
||||
other{"{0} ay öncə"}
|
||||
|
@ -1333,6 +1570,21 @@ az{
|
|||
}
|
||||
month-short{
|
||||
dn{"ay"}
|
||||
relative{
|
||||
"-1"{"keçən ay"}
|
||||
"0"{"bu ay"}
|
||||
"1"{"gələn ay"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} ay ərzində"}
|
||||
other{"{0} ay ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} ay öncə"}
|
||||
other{"{0} ay öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
quarter{
|
||||
dn{"Rüb"}
|
||||
|
@ -1359,6 +1611,16 @@ az{
|
|||
"0"{"bu rüb"}
|
||||
"1"{"gələn rüb"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} rüb ərzində"}
|
||||
other{"{0} rüb ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} rüb öncə"}
|
||||
other{"{0} rüb öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
quarter-short{
|
||||
dn{"rüb"}
|
||||
|
@ -1367,6 +1629,16 @@ az{
|
|||
"0"{"bu rüb"}
|
||||
"1"{"gələn rüb"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} rüb ərzində"}
|
||||
other{"{0} rüb ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} rüb öncə"}
|
||||
other{"{0} rüb öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sat{
|
||||
relative{
|
||||
|
@ -1435,8 +1707,31 @@ az{
|
|||
}
|
||||
}
|
||||
}
|
||||
second-narrow{
|
||||
dn{"san."}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} saniyə ərzində"}
|
||||
other{"{0} saniyə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} saniyə öncə"}
|
||||
other{"{0} saniyə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
second-short{
|
||||
dn{"san."}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} saniyə ərzində"}
|
||||
other{"{0} saniyə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} saniyə öncə"}
|
||||
other{"{0} saniyə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sun{
|
||||
relative{
|
||||
|
@ -1455,6 +1750,40 @@ az{
|
|||
}
|
||||
}
|
||||
}
|
||||
sun-narrow{
|
||||
relative{
|
||||
"-1"{"keçən bazar"}
|
||||
"0"{"bu bazar"}
|
||||
"1"{"gələn bazar"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} bazar ərzində"}
|
||||
other{"{0} bazar ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} bazar öncə"}
|
||||
other{"{0} bazar öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sun-short{
|
||||
relative{
|
||||
"-1"{"keçən bazar"}
|
||||
"0"{"bu bazar"}
|
||||
"1"{"gələn bazar"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} bazar ərzində"}
|
||||
other{"{0} bazar ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} bazar öncə"}
|
||||
other{"{0} bazar öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
thu{
|
||||
relative{
|
||||
"-1"{"keçən cümə axşamı"}
|
||||
|
@ -1585,14 +1914,27 @@ az{
|
|||
one{"{0} çərşənbə ərzində"}
|
||||
other{"{0} çərşənbə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} çərşənbə öncə"}
|
||||
other{"{0} çərşənbə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
wed-short{
|
||||
relative{
|
||||
"-1"{"keçən çərşənbə"}
|
||||
"0"{"bu çərşənbə"}
|
||||
"1"{"gələn çərşənbə"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} çərşənbə ərzində"}
|
||||
other{"{0} çərşənbə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} çərşənbə öncə"}
|
||||
other{"{0} çərşənbə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
week{
|
||||
|
@ -1614,19 +1956,59 @@ az{
|
|||
}
|
||||
}
|
||||
}
|
||||
week-narrow{
|
||||
dn{"həftə"}
|
||||
relative{
|
||||
"-1"{"keçən həftə"}
|
||||
"0"{"bu həftə"}
|
||||
"1"{"gələn həftə"}
|
||||
}
|
||||
relativePeriod{"{0} həftəsi"}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} həftə ərzində"}
|
||||
other{"{0} həftə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} həftə öncə"}
|
||||
other{"{0} həftə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
week-short{
|
||||
dn{"həftə"}
|
||||
relative{
|
||||
"-1"{"keçən həftə"}
|
||||
"0"{"bu həftə"}
|
||||
"1"{"gələn həftə"}
|
||||
}
|
||||
relativePeriod{"{0} həftəsi"}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} həftə ərzində"}
|
||||
other{"{0} həftə ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} həftə öncə"}
|
||||
other{"{0} həftə öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
weekOfMonth{
|
||||
dn{"Ayın həftəsi"}
|
||||
}
|
||||
weekOfMonth-narrow{
|
||||
dn{"ay hft."}
|
||||
}
|
||||
weekOfMonth-short{
|
||||
dn{"ay hft."}
|
||||
}
|
||||
weekday{
|
||||
dn{"Həftənin Günü"}
|
||||
}
|
||||
weekday-narrow{
|
||||
dn{"hft. günü"}
|
||||
}
|
||||
weekday-short{
|
||||
dn{"hft. günü"}
|
||||
}
|
||||
|
@ -1659,13 +2041,46 @@ az{
|
|||
}
|
||||
year-narrow{
|
||||
dn{"il"}
|
||||
relative{
|
||||
"-1"{"keçən il"}
|
||||
"0"{"bu il"}
|
||||
"1"{"gələn il"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} il ərzində"}
|
||||
other{"{0} il ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} il öncə"}
|
||||
other{"{0} il öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
year-short{
|
||||
dn{"il"}
|
||||
relative{
|
||||
"-1"{"keçən il"}
|
||||
"0"{"bu il"}
|
||||
"1"{"gələn il"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} il ərzində"}
|
||||
other{"{0} il ərzində"}
|
||||
}
|
||||
past{
|
||||
one{"{0} il öncə"}
|
||||
other{"{0} il öncə"}
|
||||
}
|
||||
}
|
||||
}
|
||||
zone{
|
||||
dn{"Saat Qurşağı"}
|
||||
}
|
||||
zone-narrow{
|
||||
dn{"qurşaq"}
|
||||
}
|
||||
zone-short{
|
||||
dn{"qurşaq"}
|
||||
}
|
||||
|
@ -1679,9 +2094,15 @@ az{
|
|||
}
|
||||
or-narrow{
|
||||
2{"{0}, yaxud {1}"}
|
||||
end{"{0}, yaxud {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0}, yaxud {1}"}
|
||||
end{"{0}, yaxud {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} və {1}"}
|
||||
|
@ -1692,6 +2113,8 @@ az{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} və {1}"}
|
||||
|
@ -1785,6 +2208,11 @@ az{
|
|||
givenFirst-short-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given-informal} {surname-initial}"}
|
||||
sorting-long-referring-informal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-medium-referring-formal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-medium-referring-informal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-short-referring-formal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-short-referring-informal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-long-monogram-formal{
|
||||
|
@ -1796,8 +2224,28 @@ az{
|
|||
surnameFirst-long-referring-informal{"{surname} {given-informal}"}
|
||||
surnameFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-medium-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname} {given} {given2-initial} {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname} {given-informal}"}
|
||||
surnameFirst-short-addressing-formal{"{surname} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-addressing-informal{"{surname} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-referring-formal{"{surname} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-referring-informal{"{surname} {given} {given2} {credentials}"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -345,6 +345,12 @@ be{
|
|||
abbreviated{
|
||||
"б.э.",
|
||||
}
|
||||
narrow{
|
||||
"б.э.",
|
||||
}
|
||||
wide{
|
||||
"б.э.",
|
||||
}
|
||||
}
|
||||
}
|
||||
chinese{
|
||||
|
@ -364,6 +370,20 @@ be{
|
|||
"11",
|
||||
"12",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
|
@ -397,6 +417,91 @@ be{
|
|||
}
|
||||
}
|
||||
}
|
||||
coptic{
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"13",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
dangi{
|
||||
monthNames{
|
||||
format{
|
||||
abbreviated{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
generic{
|
||||
DateTimePatterns{
|
||||
"HH:mm:ss, zzzz",
|
||||
|
@ -818,6 +923,14 @@ be{
|
|||
"да н.э.",
|
||||
"н.э.",
|
||||
}
|
||||
narrow{
|
||||
"да н.э.",
|
||||
"н.э.",
|
||||
}
|
||||
narrow%variant{
|
||||
"да н.э.",
|
||||
"н.э.",
|
||||
}
|
||||
wide{
|
||||
"да нараджэння Хрыстова",
|
||||
"ад нараджэння Хрыстова",
|
||||
|
@ -1224,6 +1337,13 @@ be{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"д."}
|
||||
relative{
|
||||
"-1"{"учора"}
|
||||
"-2"{"пазаўчора"}
|
||||
"0"{"сёння"}
|
||||
"1"{"заўтра"}
|
||||
"2"{"паслязаўтра"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} дні"}
|
||||
|
@ -1241,6 +1361,13 @@ be{
|
|||
}
|
||||
day-short{
|
||||
dn{"дзень"}
|
||||
relative{
|
||||
"-1"{"учора"}
|
||||
"-2"{"пазаўчора"}
|
||||
"0"{"сёння"}
|
||||
"1"{"заўтра"}
|
||||
"2"{"паслязаўтра"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} дні"}
|
||||
|
@ -1368,6 +1495,9 @@ be{
|
|||
}
|
||||
hour-narrow{
|
||||
dn{"гадз"}
|
||||
relative{
|
||||
"0"{"у гэту гадзіну"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} гадз"}
|
||||
|
@ -1385,6 +1515,9 @@ be{
|
|||
}
|
||||
hour-short{
|
||||
dn{"гадз"}
|
||||
relative{
|
||||
"0"{"у гэту гадзіну"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} гадз"}
|
||||
|
@ -1422,6 +1555,9 @@ be{
|
|||
}
|
||||
minute-narrow{
|
||||
dn{"хв"}
|
||||
relative{
|
||||
"0"{"у гэту хвіліну"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} хв"}
|
||||
|
@ -1439,6 +1575,9 @@ be{
|
|||
}
|
||||
minute-short{
|
||||
dn{"хв"}
|
||||
relative{
|
||||
"0"{"у гэту хвіліну"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} хв"}
|
||||
|
@ -1607,6 +1746,11 @@ be{
|
|||
}
|
||||
quarter-narrow{
|
||||
dn{"кв."}
|
||||
relative{
|
||||
"-1"{"у мінулым квартале"}
|
||||
"0"{"у гэтым квартале"}
|
||||
"1"{"у наступным квартале"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} кв."}
|
||||
|
@ -1624,6 +1768,11 @@ be{
|
|||
}
|
||||
quarter-short{
|
||||
dn{"кв."}
|
||||
relative{
|
||||
"-1"{"у мінулым квартале"}
|
||||
"0"{"у гэтым квартале"}
|
||||
"1"{"у наступным квартале"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} кв."}
|
||||
|
@ -1724,6 +1873,9 @@ be{
|
|||
}
|
||||
second-narrow{
|
||||
dn{"с"}
|
||||
relative{
|
||||
"0"{"цяпер"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} с"}
|
||||
|
@ -1741,6 +1893,9 @@ be{
|
|||
}
|
||||
second-short{
|
||||
dn{"с"}
|
||||
relative{
|
||||
"0"{"цяпер"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"праз {0} с"}
|
||||
|
@ -2187,12 +2342,30 @@ be{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ці {1}"}
|
||||
end{"{0} ці {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ці {1}"}
|
||||
end{"{0} ці {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} і {1}"}
|
||||
end{"{0} і {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} і {1}"}
|
||||
end{"{0} і {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} і {1}"}
|
||||
end{"{0} і {1}"}
|
||||
|
@ -2233,12 +2406,17 @@ be{
|
|||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-long-addressing-informal{"{given-informal}"}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-long-referring-formal{"{given} {given2} {surname} {credentials}"}
|
||||
givenFirst-long-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-medium-addressing-informal{"{given-informal}"}
|
||||
givenFirst-medium-monogram-formal{"{surname-monogram-allCaps}"}
|
||||
givenFirst-medium-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
givenFirst-medium-referring-formal{"{given} {given2} {surname} {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-short-addressing-informal{"{given-informal}"}
|
||||
|
@ -2248,7 +2426,9 @@ be{
|
|||
givenFirst-short-referring-informal{"{given-informal} {surname-initial}"}
|
||||
sorting-long-referring-formal{"{surname-core}, {given} {given2} {surname-prefix}"}
|
||||
sorting-long-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-medium-referring-formal{"{surname-core}, {given} {given2} {surname-prefix}"}
|
||||
sorting-medium-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-short-referring-formal{"{surname-core}, {given} {given2} {surname-prefix}"}
|
||||
sorting-short-referring-informal{"{surname}, {given-informal}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given-informal}"}
|
||||
|
@ -2259,6 +2439,7 @@ be{
|
|||
surnameFirst-medium-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-medium-monogram-formal{"{surname-monogram-allCaps}"}
|
||||
surnameFirst-medium-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
surnameFirst-medium-referring-formal{"{surname} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname} {given-informal}"}
|
||||
surnameFirst-short-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-short-addressing-informal{"{given-informal}"}
|
||||
|
|
|
@ -1628,6 +1628,7 @@ bg{
|
|||
}
|
||||
}
|
||||
second-narrow{
|
||||
dn{"сек"}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"сл. {0} сек"}
|
||||
|
@ -2011,6 +2012,18 @@ bg{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} или {1}"}
|
||||
end{"{0} или {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} или {1}"}
|
||||
end{"{0} или {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} и {1}"}
|
||||
end{"{0} и {1}"}
|
||||
|
@ -2019,8 +2032,12 @@ bg{
|
|||
}
|
||||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0} и {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} и {1}"}
|
||||
end{"{0} и {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
|
@ -2067,14 +2084,27 @@ bg{
|
|||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-core-monog"
|
||||
"ram-allCaps}"
|
||||
}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-core-monog"
|
||||
"ram-allCaps}"
|
||||
}
|
||||
givenFirst-long-referring-formal{"{title} {given} {given2} {surname-core}, {credentials}"}
|
||||
givenFirst-long-referring-informal{"{given} {surname-core}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {surname-core}"}
|
||||
givenFirst-medium-addressing-informal{"{given}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-core-monog"
|
||||
"ram-allCaps}"
|
||||
}
|
||||
givenFirst-medium-monogram-informal{"{given-monogram-allCaps}"}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname-core}, {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{given} {surname-core}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname-core}"}
|
||||
givenFirst-short-addressing-informal{"{given}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-core-monog"
|
||||
"ram-allCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{"{given-monogram-allCaps}"}
|
||||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname-core}"}
|
||||
givenFirst-short-referring-informal{"{given} {surname-core-initial}"}
|
||||
|
|
|
@ -37,6 +37,7 @@ bn{
|
|||
scientificFormat{"#E0"}
|
||||
}
|
||||
symbols{
|
||||
approximatelySign{"~"}
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
group{","}
|
||||
|
@ -1656,6 +1657,62 @@ bn{
|
|||
}
|
||||
}
|
||||
islamic{
|
||||
DateTimePatterns{
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/y GGGGG",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"ahmmsszzzz",
|
||||
"ahmmssz",
|
||||
"ahmmss",
|
||||
"ahmm",
|
||||
"GyMMMMEEEEd",
|
||||
"GyMMMMd",
|
||||
"GyMMMd",
|
||||
"GGGGGyMd",
|
||||
}
|
||||
availableFormats{
|
||||
E{"ccc"}
|
||||
Ed{"d E"}
|
||||
Gy{"y G"}
|
||||
GyMMM{"MMM y G"}
|
||||
GyMMMEd{"E, d MMM, y G"}
|
||||
GyMMMd{"d MMM, y G"}
|
||||
GyMd{"d/M/y GGGGG"}
|
||||
M{"L"}
|
||||
MEd{"E, d-M"}
|
||||
MMM{"LLL"}
|
||||
MMMEd{"E d MMM"}
|
||||
MMMMEd{"E d MMMM"}
|
||||
MMMMd{"d MMMM"}
|
||||
MMMd{"d MMM"}
|
||||
MMdd{"dd-MM"}
|
||||
Md{"d/M"}
|
||||
d{"d"}
|
||||
y{"y G"}
|
||||
yyyy{"y G"}
|
||||
yyyyM{"M/y G"}
|
||||
yyyyMEd{"E, d/M/y G"}
|
||||
yyyyMM{"MM-y G"}
|
||||
yyyyMMM{"MMM y G"}
|
||||
yyyyMMMEd{"E, d MMM, y G"}
|
||||
yyyyMMMM{"MMMM y G"}
|
||||
yyyyMMMd{"d MMM, y G"}
|
||||
yyyyMd{"d/M/y G"}
|
||||
yyyyQQQ{"QQQ y G"}
|
||||
yyyyQQQQ{"QQQQ y G"}
|
||||
}
|
||||
eras{
|
||||
abbreviated{
|
||||
"যুগ",
|
||||
|
@ -1667,6 +1724,148 @@ bn{
|
|||
"যুগ",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h B – h B"}
|
||||
h{"h–h B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h:mm B – h:mm B"}
|
||||
h{"h:mm–h:mm B"}
|
||||
m{"h:mm–h:mm B"}
|
||||
}
|
||||
Gy{
|
||||
G{"y G – y G"}
|
||||
y{"y – y G"}
|
||||
}
|
||||
GyM{
|
||||
G{"M/y GGGGG – M/y GGGGG"}
|
||||
M{"M/y – M/y GGGGG"}
|
||||
y{"M/y – M/y GGGGG"}
|
||||
}
|
||||
GyMEd{
|
||||
G{"E, d/M/y GGGGG – E, d/M/y GGGGG"}
|
||||
M{"E, d/M/y – E, d/M/y GGGGG"}
|
||||
d{"E, d/M/y – E, d/M/y GGGGG"}
|
||||
y{"E, d/M/y – E, d/M/y GGGGG"}
|
||||
}
|
||||
GyMMM{
|
||||
G{"MMM y G – MMM y G"}
|
||||
M{"MMM – MMM y G"}
|
||||
y{"MMM y – MMM y G"}
|
||||
}
|
||||
GyMMMEd{
|
||||
G{"E, MMM d, y G – E, MMM d, y G"}
|
||||
M{"E, MMM d – E, MMM d, y G"}
|
||||
d{"E, MMM d – E, MMM d, y G"}
|
||||
y{"E, MMM d, y – E, MMM d, y G"}
|
||||
}
|
||||
GyMMMd{
|
||||
G{"MMM d, y G – MMM d, y G"}
|
||||
M{"MMM d – MMM d, y G"}
|
||||
d{"MMM d – d, y G"}
|
||||
y{"MMM d, y – MMM d, y G"}
|
||||
}
|
||||
GyMd{
|
||||
G{"d/M/y GGGGG – d/M/y GGGGG"}
|
||||
M{"d/M/y – d/M/y GGGGG"}
|
||||
d{"d/M/y – d/M/y GGGGG"}
|
||||
y{"d/M/y – d/M/y GGGGG"}
|
||||
}
|
||||
H{
|
||||
H{"HH–HH"}
|
||||
}
|
||||
Hm{
|
||||
H{"HH:mm–HH:mm"}
|
||||
m{"HH:mm–HH:mm"}
|
||||
}
|
||||
Hmv{
|
||||
H{"HH:mm–HH:mm v"}
|
||||
m{"HH:mm–HH:mm v"}
|
||||
}
|
||||
Hv{
|
||||
H{"HH–HH v"}
|
||||
}
|
||||
M{
|
||||
M{"M–M"}
|
||||
}
|
||||
MEd{
|
||||
M{"E, d/M – E, d/M"}
|
||||
d{"E, d/M – E, d/M"}
|
||||
}
|
||||
MMM{
|
||||
M{"MMM – MMM"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E, d MMM – E, d MMM"}
|
||||
d{"E, d MMM – E, d MMM"}
|
||||
}
|
||||
MMMd{
|
||||
M{"d MMM – d MMM"}
|
||||
d{"d–d MMM"}
|
||||
}
|
||||
Md{
|
||||
M{"d/M – d/M"}
|
||||
d{"d/M – d/M"}
|
||||
}
|
||||
d{
|
||||
d{"d–d"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
h{
|
||||
a{"h a – h a"}
|
||||
h{"h–h a"}
|
||||
}
|
||||
hm{
|
||||
a{"h:mm a – h:mm a"}
|
||||
h{"h:mm–h:mm a"}
|
||||
m{"h:mm–h:mm a"}
|
||||
}
|
||||
hmv{
|
||||
a{"h:mm a – h:mm a v"}
|
||||
h{"h:mm–h:mm a v"}
|
||||
m{"h:mm–h:mm a v"}
|
||||
}
|
||||
hv{
|
||||
a{"h a – h a v"}
|
||||
h{"h–h a v"}
|
||||
}
|
||||
y{
|
||||
y{"y–y G"}
|
||||
}
|
||||
yM{
|
||||
M{"M/y – M/y G"}
|
||||
y{"M/y – M/y G"}
|
||||
}
|
||||
yMEd{
|
||||
M{"E, d/M/y – E, d/M/y G"}
|
||||
d{"E, d/M/y – E, d/M/y G"}
|
||||
y{"E, d/M/y – E, d/M/y G"}
|
||||
}
|
||||
yMMM{
|
||||
M{"MMM–MMM y G"}
|
||||
y{"MMM y – MMM y G"}
|
||||
}
|
||||
yMMMEd{
|
||||
M{"E, d MMM – E, d MMM, y G"}
|
||||
d{"E, d MMM – E, d MMM, y G"}
|
||||
y{"E, d MMM, y – E, d MMM, y G"}
|
||||
}
|
||||
yMMMM{
|
||||
M{"MMMM–MMMM y G"}
|
||||
y{"MMMM y – MMMM y G"}
|
||||
}
|
||||
yMMMd{
|
||||
M{"d MMM – d MMM, y G"}
|
||||
d{"d–d MMM, y G"}
|
||||
y{"d MMM, y – d MMM, y G"}
|
||||
}
|
||||
yMd{
|
||||
M{"d/M/y – d/M/y G"}
|
||||
d{"d/M/y – d/M/y G"}
|
||||
y{"d/M/y – d/M/y G"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
abbreviated{
|
||||
|
@ -2796,6 +2995,18 @@ bn{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} বা {1}"}
|
||||
end{"{0}, বা {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} বা {1}"}
|
||||
end{"{0}, বা {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} এবং {1}"}
|
||||
end{"{0} এবং {1}"}
|
||||
|
@ -2805,6 +3016,8 @@ bn{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} এবং {1}"}
|
||||
|
@ -2886,20 +3099,72 @@ bn{
|
|||
}
|
||||
}
|
||||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-long-addressing-informal{"{given} {given2} {surname} {surname2}"}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-long-referring-informal{"{given} {given2} {surname} {surname2}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-addressing-informal{"{given} {given2} {surname} {surname2}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{given} {given2} {surname} {surname2}"}
|
||||
givenFirst-short-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-addressing-informal{"{given} {given2} {surname} {surname2}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-referring-informal{"{given} {given2} {surname} {surname2}"}
|
||||
sorting-long-referring-informal{"{surname} {surname2}, {given} {given2}"}
|
||||
sorting-medium-referring-formal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-medium-referring-informal{"{surname} {surname2}, {given} {given2}"}
|
||||
sorting-short-referring-formal{"{surname} {surname2}, {title} {given} {given2} {credentials}"}
|
||||
sorting-short-referring-informal{"{surname} {surname2}, {given} {given2}"}
|
||||
surnameFirst-long-addressing-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-long-addressing-informal{"{surname} {surname2} {given} {given2}"}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-informal{"{surname} {surname2} {given} {given2}"}
|
||||
surnameFirst-medium-addressing-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-addressing-informal{"{surname} {surname2} {given} {given2}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname} {surname2} {given} {given2}"}
|
||||
surnameFirst-short-addressing-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-addressing-informal{"{surname} {surname2} {given} {given2}"}
|
||||
surnameFirst-short-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-referring-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-referring-informal{"{surname} {surname2} {given} {given2}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,11 +17,36 @@ br{
|
|||
ExemplarCharactersPunctuation{"[\\- ‑ , ; \\: ! ? . ( ) \\[ \\] \\{ \\}]"}
|
||||
MoreInformation{"?"}
|
||||
NumberElements{
|
||||
adlm{
|
||||
patterns{
|
||||
accountingFormat{"#,##0.00 ¤"}
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
symbols{
|
||||
approximatelySign{"~"}
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
group{" "}
|
||||
infinity{"∞"}
|
||||
list{";"}
|
||||
minusSign{"-"}
|
||||
perMille{"‰"}
|
||||
percentSign{"%"}
|
||||
plusSign{"+"}
|
||||
superscriptingExponent{"×"}
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
arab{
|
||||
patterns{
|
||||
accountingFormat{"#,##0.00 ¤"}
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
symbols{
|
||||
approximatelySign{"~"}
|
||||
|
@ -91,6 +116,11 @@ br{
|
|||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
gong{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
gonm{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
|
@ -505,6 +535,11 @@ br{
|
|||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
rohg{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
saur{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
|
@ -595,17 +630,20 @@ br{
|
|||
"GGGGyMMdd",
|
||||
}
|
||||
availableFormats{
|
||||
E{"ccc"}
|
||||
Ed{"E d"}
|
||||
Gy{"y G"}
|
||||
GyMMM{"MMM y G"}
|
||||
GyMMMEd{"E d MMM y G"}
|
||||
GyMMMd{"d MMM y G"}
|
||||
M{"L"}
|
||||
MEd{"E dd/MM"}
|
||||
MMM{"LLL"}
|
||||
MMMEd{"E d MMM"}
|
||||
MMMMd{"d MMMM"}
|
||||
MMMd{"d MMM"}
|
||||
Md{"dd/MM"}
|
||||
d{"d"}
|
||||
y{"y G"}
|
||||
yyyy{"y G"}
|
||||
yyyyM{"MM/y GGGGG"}
|
||||
|
@ -630,6 +668,15 @@ br{
|
|||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h B – h B"}
|
||||
h{"h–h B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h:mm B – h:mm B"}
|
||||
h{"h:mm–h:mm B"}
|
||||
m{"h:mm–h:mm B"}
|
||||
}
|
||||
Gy{
|
||||
G{"y G – y G"}
|
||||
y{"y – y G"}
|
||||
|
@ -675,6 +722,9 @@ br{
|
|||
M{"dd/MM–dd/MM"}
|
||||
d{"dd/MM–dd/MM"}
|
||||
}
|
||||
d{
|
||||
d{"d–d"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
h{
|
||||
a{"h a – h a"}
|
||||
|
@ -1610,10 +1660,16 @@ br{
|
|||
Hv{
|
||||
H{"HH–HH v"}
|
||||
}
|
||||
M{
|
||||
M{"MM–MM"}
|
||||
}
|
||||
MEd{
|
||||
M{"E dd/MM – E dd/MM"}
|
||||
d{"E dd/MM – E dd/MM"}
|
||||
}
|
||||
MMM{
|
||||
M{"LLL–LLL"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E d MMM – E d MMM"}
|
||||
d{"E d MMM – E d MMM"}
|
||||
|
@ -1626,6 +1682,7 @@ br{
|
|||
M{"dd/MM–dd/MM"}
|
||||
d{"dd/MM–dd/MM"}
|
||||
}
|
||||
fallback{"{0} – {1}"}
|
||||
h{
|
||||
a{"h a – h a"}
|
||||
h{"h–h a"}
|
||||
|
@ -2574,6 +2631,9 @@ br{
|
|||
a{"h a – h a v"}
|
||||
h{"h–h a v"}
|
||||
}
|
||||
y{
|
||||
y{"U–U"}
|
||||
}
|
||||
yM{
|
||||
M{"MM/y – MM/y"}
|
||||
y{"MM/y – MM/y"}
|
||||
|
@ -5519,6 +5579,9 @@ br{
|
|||
}
|
||||
hour-narrow{
|
||||
dn{"e"}
|
||||
relative{
|
||||
"0"{"dʼan eur-mañ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} h"}
|
||||
|
@ -6370,10 +6433,16 @@ br{
|
|||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} pe {1}"}
|
||||
end{"{0} pe {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} pe {1}"}
|
||||
end{"{0} pe {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} ha {1}"}
|
||||
|
@ -6381,9 +6450,17 @@ br{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} & {1}"}
|
||||
end{"{0} & {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} & {1}"}
|
||||
end{"{0} & {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0}, {1}"}
|
||||
|
|
|
@ -1833,5 +1833,18 @@ brx{
|
|||
"zh",
|
||||
}
|
||||
}
|
||||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-long-addressing-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-long-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
surnameFirst-short-addressing-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-short-referring-informal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -14,6 +14,7 @@ bs_Cyrl{
|
|||
NumberElements{
|
||||
latn{
|
||||
patterns{
|
||||
accountingFormat{"#,##0.00 ¤"}
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0%"}
|
||||
|
@ -444,6 +445,10 @@ bs_Cyrl{
|
|||
"пре подне",
|
||||
"поподне",
|
||||
}
|
||||
AmPmMarkersNarrow{
|
||||
"пре подне",
|
||||
"поподне",
|
||||
}
|
||||
DateTimePatterns{
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
|
@ -518,6 +523,24 @@ bs_Cyrl{
|
|||
"пет",
|
||||
"суб",
|
||||
}
|
||||
narrow{
|
||||
"н",
|
||||
"п",
|
||||
"у",
|
||||
"с",
|
||||
"ч",
|
||||
"п",
|
||||
"с",
|
||||
}
|
||||
short{
|
||||
"нед",
|
||||
"пон",
|
||||
"уто",
|
||||
"сри",
|
||||
"чет",
|
||||
"пет",
|
||||
"суб",
|
||||
}
|
||||
wide{
|
||||
"недјеља",
|
||||
"понедјељак",
|
||||
|
@ -529,6 +552,15 @@ bs_Cyrl{
|
|||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
"нед",
|
||||
"пон",
|
||||
"уто",
|
||||
"сри",
|
||||
"чет",
|
||||
"пет",
|
||||
"суб",
|
||||
}
|
||||
narrow{
|
||||
"н",
|
||||
"п",
|
||||
|
@ -538,6 +570,15 @@ bs_Cyrl{
|
|||
"п",
|
||||
"с",
|
||||
}
|
||||
short{
|
||||
"нед",
|
||||
"пон",
|
||||
"уто",
|
||||
"сри",
|
||||
"чет",
|
||||
"пет",
|
||||
"суб",
|
||||
}
|
||||
wide{
|
||||
"недјеља",
|
||||
"понедјељак",
|
||||
|
@ -579,19 +620,23 @@ bs_Cyrl{
|
|||
stand-alone{
|
||||
abbreviated{
|
||||
afternoon1{"послийеподне"}
|
||||
am{"пре подне"}
|
||||
evening1{"вече"}
|
||||
midnight{"поноћ"}
|
||||
morning1{"јутро"}
|
||||
night1{"ноћ"}
|
||||
noon{"подне"}
|
||||
pm{"поподне"}
|
||||
}
|
||||
narrow{
|
||||
afternoon1{"послийеподне"}
|
||||
am{"пре подне"}
|
||||
evening1{"вече"}
|
||||
midnight{"поноћ"}
|
||||
morning1{"јутро"}
|
||||
night1{"ноћ"}
|
||||
noon{"подне"}
|
||||
pm{"поподне"}
|
||||
}
|
||||
wide{
|
||||
afternoon1{"послийеподне"}
|
||||
|
@ -619,8 +664,8 @@ bs_Cyrl{
|
|||
"нове ере",
|
||||
}
|
||||
wide%variant{
|
||||
"п.н.е",
|
||||
"н.е.",
|
||||
"п. н. е.",
|
||||
"н. е.",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
|
@ -733,6 +778,20 @@ bs_Cyrl{
|
|||
"нов",
|
||||
"дец",
|
||||
}
|
||||
narrow{
|
||||
"ј",
|
||||
"ф",
|
||||
"м",
|
||||
"а",
|
||||
"м",
|
||||
"ј",
|
||||
"ј",
|
||||
"а",
|
||||
"с",
|
||||
"о",
|
||||
"н",
|
||||
"д",
|
||||
}
|
||||
wide{
|
||||
"јануар",
|
||||
"фебруар",
|
||||
|
@ -815,12 +874,24 @@ bs_Cyrl{
|
|||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
"К1",
|
||||
"К2",
|
||||
"К3",
|
||||
"К4",
|
||||
}
|
||||
narrow{
|
||||
"1.",
|
||||
"2.",
|
||||
"3.",
|
||||
"4.",
|
||||
}
|
||||
wide{
|
||||
"Прво тромесечје",
|
||||
"Друго тромесечје",
|
||||
"Треће тромесечје",
|
||||
"Четврто тромесечје",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1273,7 +1344,17 @@ bs_Cyrl{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"дан"}
|
||||
relative{
|
||||
"-1"{"јуче"}
|
||||
"0"{"данас"}
|
||||
"1"{"сутра"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} дана"}
|
||||
one{"за {0} дан"}
|
||||
other{"за {0} дана"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} дана"}
|
||||
one{"прије {0} дан"}
|
||||
|
@ -1283,7 +1364,17 @@ bs_Cyrl{
|
|||
}
|
||||
day-short{
|
||||
dn{"дан"}
|
||||
relative{
|
||||
"-1"{"јуче"}
|
||||
"0"{"данас"}
|
||||
"1"{"сутра"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} дана"}
|
||||
one{"за {0} дан"}
|
||||
other{"за {0} дана"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} дана"}
|
||||
one{"прије {0} дан"}
|
||||
|
@ -1324,6 +1415,18 @@ bs_Cyrl{
|
|||
"0"{"овог петка"}
|
||||
"1"{"сљедећег петка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Fridays"}
|
||||
one{"+{0} Fridays"}
|
||||
other{"+{0} Fridays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Fridays"}
|
||||
one{"-{0} Fridays"}
|
||||
other{"-{0} Fridays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
fri-narrow{
|
||||
relative{
|
||||
|
@ -1331,6 +1434,18 @@ bs_Cyrl{
|
|||
"0"{"овог пет."}
|
||||
"1"{"сљ. петка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Fridays"}
|
||||
one{"+{0} Fridays"}
|
||||
other{"+{0} Fridays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Fridays"}
|
||||
one{"-{0} Fridays"}
|
||||
other{"-{0} Fridays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
fri-short{
|
||||
relative{
|
||||
|
@ -1338,6 +1453,18 @@ bs_Cyrl{
|
|||
"0"{"овог пет."}
|
||||
"1"{"сљед. петка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Fridays"}
|
||||
one{"+{0} Fridays"}
|
||||
other{"+{0} Fridays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Fridays"}
|
||||
one{"-{0} Fridays"}
|
||||
other{"-{0} Fridays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
hour{
|
||||
dn{"сат"}
|
||||
|
@ -1360,6 +1487,11 @@ bs_Cyrl{
|
|||
hour-narrow{
|
||||
dn{"сат"}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} сата"}
|
||||
one{"за {0} сат"}
|
||||
other{"за {0} сати"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} сата"}
|
||||
one{"прије {0} сат"}
|
||||
|
@ -1370,6 +1502,11 @@ bs_Cyrl{
|
|||
hour-short{
|
||||
dn{"сат"}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} сата"}
|
||||
one{"за {0} сат"}
|
||||
other{"за {0} сати"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} сата"}
|
||||
one{"прије {0} сат"}
|
||||
|
@ -1398,6 +1535,11 @@ bs_Cyrl{
|
|||
minute-narrow{
|
||||
dn{"мин"}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} минута"}
|
||||
one{"за {0} минут"}
|
||||
other{"за {0} минута"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} мин."}
|
||||
one{"прије {0} мин."}
|
||||
|
@ -1408,6 +1550,11 @@ bs_Cyrl{
|
|||
minute-short{
|
||||
dn{"мин."}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} минута"}
|
||||
one{"за {0} минут"}
|
||||
other{"за {0} минута"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} минута"}
|
||||
one{"прије {0} минут"}
|
||||
|
@ -1421,6 +1568,18 @@ bs_Cyrl{
|
|||
"0"{"овог понедјељка"}
|
||||
"1"{"сљедећег понедјељка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Mondays"}
|
||||
one{"+{0} Mondays"}
|
||||
other{"+{0} Mondays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Mondays"}
|
||||
one{"-{0} Mondays"}
|
||||
other{"-{0} Mondays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
mon-narrow{
|
||||
relative{
|
||||
|
@ -1428,6 +1587,18 @@ bs_Cyrl{
|
|||
"0"{"овог понедј."}
|
||||
"1"{"сљ. понедј."}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Mondays"}
|
||||
one{"+{0} Mondays"}
|
||||
other{"+{0} Mondays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Mondays"}
|
||||
one{"-{0} Mondays"}
|
||||
other{"-{0} Mondays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
mon-short{
|
||||
relative{
|
||||
|
@ -1435,6 +1606,18 @@ bs_Cyrl{
|
|||
"0"{"овог понедј."}
|
||||
"1"{"сљ. понедјељка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Mondays"}
|
||||
one{"+{0} Mondays"}
|
||||
other{"+{0} Mondays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Mondays"}
|
||||
one{"-{0} Mondays"}
|
||||
other{"-{0} Mondays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
month{
|
||||
dn{"мјесец"}
|
||||
|
@ -1503,12 +1686,48 @@ bs_Cyrl{
|
|||
"0"{"ово тромјесечје"}
|
||||
"1"{"сљедеће тромјесечје"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Q"}
|
||||
one{"+{0} Q"}
|
||||
other{"+{0} Q"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Q"}
|
||||
one{"-{0} Q"}
|
||||
other{"-{0} Q"}
|
||||
}
|
||||
}
|
||||
}
|
||||
quarter-narrow{
|
||||
dn{"qtr."}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Q"}
|
||||
one{"+{0} Q"}
|
||||
other{"+{0} Q"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Q"}
|
||||
one{"-{0} Q"}
|
||||
other{"-{0} Q"}
|
||||
}
|
||||
}
|
||||
}
|
||||
quarter-short{
|
||||
dn{"тромје."}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Q"}
|
||||
one{"+{0} Q"}
|
||||
other{"+{0} Q"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Q"}
|
||||
one{"-{0} Q"}
|
||||
other{"-{0} Q"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sat{
|
||||
relative{
|
||||
|
@ -1516,6 +1735,18 @@ bs_Cyrl{
|
|||
"0"{"ове суботе"}
|
||||
"1"{"сљедеће суботе"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Saturdays"}
|
||||
one{"+{0} Saturdays"}
|
||||
other{"+{0} Saturdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Saturdays"}
|
||||
one{"-{0} Saturdays"}
|
||||
other{"-{0} Saturdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sat-narrow{
|
||||
relative{
|
||||
|
@ -1523,6 +1754,18 @@ bs_Cyrl{
|
|||
"0"{"ове суб."}
|
||||
"1"{"сљ. суботе"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Saturdays"}
|
||||
one{"+{0} Saturdays"}
|
||||
other{"+{0} Saturdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Saturdays"}
|
||||
one{"-{0} Saturdays"}
|
||||
other{"-{0} Saturdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sat-short{
|
||||
relative{
|
||||
|
@ -1530,6 +1773,18 @@ bs_Cyrl{
|
|||
"0"{"ове суб."}
|
||||
"1"{"сљед. суботе"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Saturdays"}
|
||||
one{"+{0} Saturdays"}
|
||||
other{"+{0} Saturdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Saturdays"}
|
||||
one{"-{0} Saturdays"}
|
||||
other{"-{0} Saturdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
second{
|
||||
dn{"секунд"}
|
||||
|
@ -1585,6 +1840,18 @@ bs_Cyrl{
|
|||
"0"{"ове недјеље"}
|
||||
"1"{"сљедеће недјеље"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Sundays"}
|
||||
one{"+{0} Sundays"}
|
||||
other{"+{0} Sundays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Sundays"}
|
||||
one{"-{0} Sundays"}
|
||||
other{"-{0} Sundays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sun-narrow{
|
||||
relative{
|
||||
|
@ -1592,6 +1859,18 @@ bs_Cyrl{
|
|||
"0"{"ове недј."}
|
||||
"1"{"сљ. недјеље"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Sundays"}
|
||||
one{"+{0} Sundays"}
|
||||
other{"+{0} Sundays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Sundays"}
|
||||
one{"-{0} Sundays"}
|
||||
other{"-{0} Sundays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
sun-short{
|
||||
relative{
|
||||
|
@ -1599,6 +1878,18 @@ bs_Cyrl{
|
|||
"0"{"ове недјеље"}
|
||||
"1"{"сљ. недјеље"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Sundays"}
|
||||
one{"+{0} Sundays"}
|
||||
other{"+{0} Sundays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Sundays"}
|
||||
one{"-{0} Sundays"}
|
||||
other{"-{0} Sundays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
thu{
|
||||
relative{
|
||||
|
@ -1606,6 +1897,18 @@ bs_Cyrl{
|
|||
"0"{"овог четвртка"}
|
||||
"1"{"сљедећег четвртка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Thursdays"}
|
||||
one{"+{0} Thursdays"}
|
||||
other{"+{0} Thursdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Thursdays"}
|
||||
one{"-{0} Thursdays"}
|
||||
other{"-{0} Thursdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
thu-narrow{
|
||||
relative{
|
||||
|
@ -1613,6 +1916,18 @@ bs_Cyrl{
|
|||
"0"{"овог чет."}
|
||||
"1"{"сљ. чет."}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Thursdays"}
|
||||
one{"+{0} Thursdays"}
|
||||
other{"+{0} Thursdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Thursdays"}
|
||||
one{"-{0} Thursdays"}
|
||||
other{"-{0} Thursdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
thu-short{
|
||||
relative{
|
||||
|
@ -1620,6 +1935,18 @@ bs_Cyrl{
|
|||
"0"{"овог чет."}
|
||||
"1"{"сљед. чет."}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Thursdays"}
|
||||
one{"+{0} Thursdays"}
|
||||
other{"+{0} Thursdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Thursdays"}
|
||||
one{"-{0} Thursdays"}
|
||||
other{"-{0} Thursdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
tue{
|
||||
relative{
|
||||
|
@ -1627,6 +1954,18 @@ bs_Cyrl{
|
|||
"0"{"овог уторка"}
|
||||
"1"{"сљедећег уторка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Tuesdays"}
|
||||
one{"+{0} Tuesdays"}
|
||||
other{"+{0} Tuesdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Tuesdays"}
|
||||
one{"-{0} Tuesdays"}
|
||||
other{"-{0} Tuesdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
tue-narrow{
|
||||
relative{
|
||||
|
@ -1634,6 +1973,18 @@ bs_Cyrl{
|
|||
"0"{"овог утор."}
|
||||
"1"{"сљ. уторка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Tuesdays"}
|
||||
one{"+{0} Tuesdays"}
|
||||
other{"+{0} Tuesdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Tuesdays"}
|
||||
one{"-{0} Tuesdays"}
|
||||
other{"-{0} Tuesdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
tue-short{
|
||||
relative{
|
||||
|
@ -1641,6 +1992,18 @@ bs_Cyrl{
|
|||
"0"{"овог утор."}
|
||||
"1"{"сљед. уторка"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Tuesdays"}
|
||||
one{"+{0} Tuesdays"}
|
||||
other{"+{0} Tuesdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Tuesdays"}
|
||||
one{"-{0} Tuesdays"}
|
||||
other{"-{0} Tuesdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
wed{
|
||||
relative{
|
||||
|
@ -1648,6 +2011,18 @@ bs_Cyrl{
|
|||
"0"{"ове сриједе"}
|
||||
"1"{"сљедеће сриједе"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Wednesdays"}
|
||||
one{"+{0} Wednesdays"}
|
||||
other{"+{0} Wednesdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Wednesdays"}
|
||||
one{"-{0} Wednesdays"}
|
||||
other{"-{0} Wednesdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
wed-narrow{
|
||||
relative{
|
||||
|
@ -1655,6 +2030,18 @@ bs_Cyrl{
|
|||
"0"{"ове сриј."}
|
||||
"1"{"сљ. сриједе"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Wednesdays"}
|
||||
one{"+{0} Wednesdays"}
|
||||
other{"+{0} Wednesdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Wednesdays"}
|
||||
one{"-{0} Wednesdays"}
|
||||
other{"-{0} Wednesdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
wed-short{
|
||||
relative{
|
||||
|
@ -1662,6 +2049,18 @@ bs_Cyrl{
|
|||
"0"{"ове сриједе"}
|
||||
"1"{"сљед. сриједе"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"+{0} Wednesdays"}
|
||||
one{"+{0} Wednesdays"}
|
||||
other{"+{0} Wednesdays"}
|
||||
}
|
||||
past{
|
||||
few{"-{0} Wednesdays"}
|
||||
one{"-{0} Wednesdays"}
|
||||
other{"-{0} Wednesdays"}
|
||||
}
|
||||
}
|
||||
}
|
||||
week{
|
||||
dn{"седмица"}
|
||||
|
@ -1781,6 +2180,11 @@ bs_Cyrl{
|
|||
"1"{"сљед. године"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} године"}
|
||||
one{"за {0} годину"}
|
||||
other{"за {0} година"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} године"}
|
||||
one{"прије {0} годину"}
|
||||
|
@ -1796,6 +2200,11 @@ bs_Cyrl{
|
|||
"1"{"сљед. године"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"за {0} године"}
|
||||
one{"за {0} годину"}
|
||||
other{"за {0} година"}
|
||||
}
|
||||
past{
|
||||
few{"прије {0} године"}
|
||||
one{"прије {0} годину"}
|
||||
|
@ -1806,6 +2215,12 @@ bs_Cyrl{
|
|||
zone{
|
||||
dn{"зона"}
|
||||
}
|
||||
zone-narrow{
|
||||
dn{"зона"}
|
||||
}
|
||||
zone-short{
|
||||
dn{"зона"}
|
||||
}
|
||||
}
|
||||
listPattern{
|
||||
standard{
|
||||
|
|
|
@ -20,6 +20,12 @@ ca{
|
|||
}
|
||||
MoreInformation{"?"}
|
||||
NumberElements{
|
||||
adlm{
|
||||
patterns{
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
}
|
||||
}
|
||||
default{"latn"}
|
||||
latn{
|
||||
miscPatterns{
|
||||
|
@ -2131,6 +2137,18 @@ ca{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0} o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0} o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} i {1}"}
|
||||
end{"{0} i {1}"}
|
||||
|
@ -2138,6 +2156,8 @@ ca{
|
|||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} i {1}"}
|
||||
end{"{0} i {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
|
|
|
@ -348,6 +348,40 @@ ceb{
|
|||
"B",
|
||||
"S",
|
||||
}
|
||||
short{
|
||||
"Dom",
|
||||
"Lun",
|
||||
"Mar",
|
||||
"Miy",
|
||||
"Huw",
|
||||
"Biy",
|
||||
"Sab",
|
||||
}
|
||||
wide{
|
||||
"Domingo",
|
||||
"Lunes",
|
||||
"Martes",
|
||||
"Miyerkules",
|
||||
"Huwebes",
|
||||
"Biyernes",
|
||||
"Sabado",
|
||||
}
|
||||
}
|
||||
}
|
||||
dayPeriod{
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
am{"AM"}
|
||||
pm{"PM"}
|
||||
}
|
||||
narrow{
|
||||
am{"AM"}
|
||||
pm{"PM"}
|
||||
}
|
||||
wide{
|
||||
am{"AM"}
|
||||
pm{"PM"}
|
||||
}
|
||||
}
|
||||
}
|
||||
eras{
|
||||
|
@ -594,6 +628,12 @@ ceb{
|
|||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
wide{
|
||||
"unang quarter",
|
||||
"ika-2 nga quarter",
|
||||
|
@ -754,6 +794,7 @@ ceb{
|
|||
}
|
||||
}
|
||||
year-narrow{
|
||||
dn{"tuig"}
|
||||
relative{
|
||||
"-1"{"miaging tuig"}
|
||||
"0"{"karong tuiga"}
|
||||
|
@ -761,6 +802,7 @@ ceb{
|
|||
}
|
||||
}
|
||||
year-short{
|
||||
dn{"tuig"}
|
||||
relative{
|
||||
"-1"{"miaging tuig"}
|
||||
"0"{"karong tuiga"}
|
||||
|
@ -783,10 +825,14 @@ ceb{
|
|||
or-narrow{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0}, o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0}, o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} ug {1}"}
|
||||
|
@ -797,14 +843,20 @@ ceb{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} ug {1}"}
|
||||
end{"{0}, ug {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit-narrow{
|
||||
2{"{0} {1}"}
|
||||
|
@ -815,6 +867,8 @@ ceb{
|
|||
unit-short{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
}
|
||||
measurementSystemNames{
|
||||
|
|
|
@ -1091,6 +1091,11 @@ chr{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"ᎢᎦ"}
|
||||
relative{
|
||||
"-1"{"ᏒᎯ"}
|
||||
"0"{"ᎪᎯ ᎢᎦ"}
|
||||
"1"{"ᏌᎾᎴᎢ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"ᎾᎿ {0} ᎢᎦ"}
|
||||
|
@ -1104,6 +1109,11 @@ chr{
|
|||
}
|
||||
day-short{
|
||||
dn{"ᎢᎦ"}
|
||||
relative{
|
||||
"-1"{"ᏒᎯ"}
|
||||
"0"{"ᎪᎯ ᎢᎦ"}
|
||||
"1"{"ᏌᎾᎴᎢ"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"ᎾᎿ {0} ᎢᎦ"}
|
||||
|
@ -1878,6 +1888,18 @@ chr{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ᎠᎴᏱᎩ {1}"}
|
||||
end{"{0}, ᎠᎴᏱᎩ {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ᎠᎴᏱᎩ {1}"}
|
||||
end{"{0}, ᎠᎴᏱᎩ {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} ᎠᎴ {1}"}
|
||||
end{"{0}, ᎠᎴ {1}"}
|
||||
|
@ -1886,10 +1908,15 @@ chr{
|
|||
}
|
||||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, & {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} & {1}"}
|
||||
end{"{0}, & {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0}, {1}"}
|
||||
|
|
|
@ -19,6 +19,8 @@ cv{
|
|||
approximately{"≈{0}"}
|
||||
}
|
||||
patterns{
|
||||
accountingFormat{"#,##0.00 ¤"}
|
||||
accountingFormat%noCurrency{"#,##0.00"}
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0 %"}
|
||||
|
@ -185,6 +187,14 @@ cv{
|
|||
}
|
||||
}
|
||||
gregorian{
|
||||
AmPmMarkers{
|
||||
"AM",
|
||||
"PM",
|
||||
}
|
||||
AmPmMarkersNarrow{
|
||||
"AM",
|
||||
"PM",
|
||||
}
|
||||
DateTimePatterns{
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
|
@ -307,6 +317,31 @@ cv{
|
|||
"эр.",
|
||||
"шӑм.",
|
||||
}
|
||||
wide{
|
||||
"вырсарникун",
|
||||
"тунтикун",
|
||||
"ытларикун",
|
||||
"юнкун",
|
||||
"кӗҫнерникун",
|
||||
"эрнекун",
|
||||
"шӑматкун",
|
||||
}
|
||||
}
|
||||
}
|
||||
dayPeriod{
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
am{"AM"}
|
||||
pm{"PM"}
|
||||
}
|
||||
narrow{
|
||||
am{"AM"}
|
||||
pm{"PM"}
|
||||
}
|
||||
wide{
|
||||
am{"AM"}
|
||||
pm{"PM"}
|
||||
}
|
||||
}
|
||||
}
|
||||
eras{
|
||||
|
@ -430,6 +465,20 @@ cv{
|
|||
"чӳк",
|
||||
"раш.",
|
||||
}
|
||||
narrow{
|
||||
"К",
|
||||
"Н",
|
||||
"П",
|
||||
"А",
|
||||
"Ҫ",
|
||||
"Ҫ",
|
||||
"У",
|
||||
"Ҫ",
|
||||
"А",
|
||||
"Ю",
|
||||
"Ч",
|
||||
"Р",
|
||||
}
|
||||
wide{
|
||||
"кӑрлач",
|
||||
"нарӑс",
|
||||
|
@ -446,6 +495,20 @@ cv{
|
|||
}
|
||||
}
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
"кӑр.",
|
||||
"нар.",
|
||||
"пуш",
|
||||
"ака",
|
||||
"ҫу",
|
||||
"ҫӗр.",
|
||||
"утӑ",
|
||||
"ҫур.",
|
||||
"авӑн",
|
||||
"юпа",
|
||||
"чӳк",
|
||||
"раш.",
|
||||
}
|
||||
narrow{
|
||||
"К",
|
||||
"Н",
|
||||
|
@ -460,6 +523,20 @@ cv{
|
|||
"Ч",
|
||||
"Р",
|
||||
}
|
||||
wide{
|
||||
"кӑрлач",
|
||||
"нарӑс",
|
||||
"пуш",
|
||||
"ака",
|
||||
"ҫу",
|
||||
"ҫӗртме",
|
||||
"утӑ",
|
||||
"ҫурла",
|
||||
"авӑн",
|
||||
"юпа",
|
||||
"чӳк",
|
||||
"раштав",
|
||||
}
|
||||
}
|
||||
}
|
||||
quarters{
|
||||
|
@ -470,6 +547,12 @@ cv{
|
|||
"3-мӗш кв.",
|
||||
"4-мӗш кв.",
|
||||
}
|
||||
narrow{
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
wide{
|
||||
"1-мӗш квартал",
|
||||
"2-мӗш квартал",
|
||||
|
@ -559,6 +642,11 @@ cv{
|
|||
}
|
||||
month-narrow{
|
||||
dn{"уй."}
|
||||
relative{
|
||||
"-1"{"иртнӗ уй."}
|
||||
"0"{"ку уй."}
|
||||
"1"{"ҫитес уй."}
|
||||
}
|
||||
}
|
||||
month-short{
|
||||
dn{"уй."}
|
||||
|
@ -602,6 +690,7 @@ cv{
|
|||
"0"{"ҫак эр."}
|
||||
"1"{"ҫитес эр."}
|
||||
}
|
||||
relativePeriod{"эрнере {0}"}
|
||||
}
|
||||
week-short{
|
||||
dn{"эр."}
|
||||
|
@ -610,6 +699,7 @@ cv{
|
|||
"0"{"ҫак эр."}
|
||||
"1"{"ҫитес эр."}
|
||||
}
|
||||
relativePeriod{"эрнере {0}"}
|
||||
}
|
||||
weekday{
|
||||
dn{"эрнери кун"}
|
||||
|
@ -624,6 +714,11 @@ cv{
|
|||
}
|
||||
year-narrow{
|
||||
dn{"ҫ."}
|
||||
relative{
|
||||
"-1"{"пӗлтӗр"}
|
||||
"0"{"кӑҫал"}
|
||||
"1"{"ҫитес ҫ."}
|
||||
}
|
||||
}
|
||||
year-short{
|
||||
dn{"ҫ."}
|
||||
|
@ -649,10 +744,14 @@ cv{
|
|||
or-narrow{
|
||||
2{"{0} е {1}"}
|
||||
end{"{0} е {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} е {1}"}
|
||||
end{"{0} е {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} тата {1}"}
|
||||
|
@ -661,6 +760,14 @@ cv{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} тата {1}"}
|
||||
end{"{0} тата {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0} {1}"}
|
||||
|
|
|
@ -903,10 +903,12 @@ cy{
|
|||
}
|
||||
wide{
|
||||
afternoon1{"y prynhawn"}
|
||||
am{"AM"}
|
||||
evening1{"yr hwyr"}
|
||||
midnight{"canol nos"}
|
||||
morning1{"y bore"}
|
||||
noon{"canol dydd"}
|
||||
pm{"PM"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1289,6 +1291,11 @@ cy{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"diwrnod"}
|
||||
relative{
|
||||
"-1"{"ddoe"}
|
||||
"0"{"heddiw"}
|
||||
"1"{"yfory"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"ymhen {0} diwrnod"}
|
||||
|
@ -1309,6 +1316,7 @@ cy{
|
|||
}
|
||||
}
|
||||
day-short{
|
||||
dn{"diwrnod"}
|
||||
relative{
|
||||
"-1"{"ddoe"}
|
||||
"-2"{"echdoe"}
|
||||
|
@ -1672,6 +1680,11 @@ cy{
|
|||
}
|
||||
month-narrow{
|
||||
dn{"mis"}
|
||||
relative{
|
||||
"-1"{"mis diwethaf"}
|
||||
"0"{"y mis hwn"}
|
||||
"1"{"mis nesaf"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"ymhen {0} mis"}
|
||||
|
@ -1693,6 +1706,11 @@ cy{
|
|||
}
|
||||
month-short{
|
||||
dn{"mis"}
|
||||
relative{
|
||||
"-1"{"mis diwethaf"}
|
||||
"0"{"y mis hwn"}
|
||||
"1"{"mis nesaf"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"ymhen {0} mis"}
|
||||
|
@ -1806,6 +1824,11 @@ cy{
|
|||
}
|
||||
}
|
||||
sat-narrow{
|
||||
relative{
|
||||
"-1"{"Sad. diwethaf"}
|
||||
"0"{"Sad. yma"}
|
||||
"1"{"Sad. nesaf"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"ymhen {0} dydd Sadwrn"}
|
||||
|
@ -2017,6 +2040,11 @@ cy{
|
|||
}
|
||||
}
|
||||
thu-narrow{
|
||||
relative{
|
||||
"-1"{"Iau diwethaf"}
|
||||
"0"{"Iau yma"}
|
||||
"1"{"Iau nesaf"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"ymhen {0} dydd Iau"}
|
||||
|
@ -2373,6 +2401,11 @@ cy{
|
|||
}
|
||||
year-short{
|
||||
dn{"bl."}
|
||||
relative{
|
||||
"-1"{"llynedd"}
|
||||
"0"{"eleni"}
|
||||
"1"{"blwyddyn nesaf"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
few{"ymhen {0} blynedd"}
|
||||
|
@ -2409,6 +2442,18 @@ cy{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} neu {1}"}
|
||||
end{"{0} neu {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} neu {1}"}
|
||||
end{"{0} neu {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} a(c) {1}"}
|
||||
end{"{0}, a(c) {1}"}
|
||||
|
|
|
@ -322,6 +322,12 @@ da{
|
|||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"HHmmsszzzz",
|
||||
"HHmmssz",
|
||||
|
@ -2184,10 +2190,14 @@ da{
|
|||
or-narrow{
|
||||
2{"{0} el. {1}"}
|
||||
end{"{0} el. {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} el. {1}"}
|
||||
end{"{0} el. {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} og {1}"}
|
||||
|
@ -2195,6 +2205,12 @@ da{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} og {1}"}
|
||||
end{"{0} og {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} og {1}"}
|
||||
end{"{0} og {1}"}
|
||||
|
@ -2293,6 +2309,10 @@ da{
|
|||
sorting-short-referring-informal{"{surname}, {given}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given}"}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-formal{"{surname}, {title} {given} {given2}, {credentials}"}
|
||||
surnameFirst-long-referring-informal{"{surname}, {given-informal}"}
|
||||
surnameFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
|
|
|
@ -33,6 +33,7 @@ de{
|
|||
}
|
||||
patterns{
|
||||
accountingFormat{"#,##0.00 ¤"}
|
||||
accountingFormat%noCurrency{"#,##0.00"}
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0 %"}
|
||||
|
@ -677,6 +678,10 @@ de{
|
|||
"AM",
|
||||
"PM",
|
||||
}
|
||||
AmPmMarkersNarrow{
|
||||
"AM",
|
||||
"PM",
|
||||
}
|
||||
DateTimePatterns{
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
|
@ -894,11 +899,13 @@ de{
|
|||
narrow{
|
||||
afternoon1{"Mittag"}
|
||||
afternoon2{"Nachm."}
|
||||
am{"AM"}
|
||||
evening1{"Abend"}
|
||||
midnight{"Mitternacht"}
|
||||
morning1{"Morgen"}
|
||||
morning2{"Vorm."}
|
||||
night1{"Nacht"}
|
||||
pm{"PM"}
|
||||
}
|
||||
wide{
|
||||
afternoon1{"Mittag"}
|
||||
|
@ -2731,12 +2738,30 @@ de{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} oder {1}"}
|
||||
end{"{0} oder {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} oder {1}"}
|
||||
end{"{0} oder {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} und {1}"}
|
||||
end{"{0} und {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} und {1}"}
|
||||
end{"{0} und {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} und {1}"}
|
||||
end{"{0} und {1}"}
|
||||
|
|
|
@ -1136,9 +1136,18 @@ dsb{
|
|||
dayperiod-narrow{
|
||||
dn{"poł. dnja"}
|
||||
}
|
||||
dayperiod-short{
|
||||
dn{"połojca dnja"}
|
||||
}
|
||||
era{
|
||||
dn{"epocha"}
|
||||
}
|
||||
era-narrow{
|
||||
dn{"epocha"}
|
||||
}
|
||||
era-short{
|
||||
dn{"epocha"}
|
||||
}
|
||||
fri{
|
||||
relative{
|
||||
"-1"{"zajźony pětk"}
|
||||
|
@ -1945,6 +1954,12 @@ dsb{
|
|||
weekday{
|
||||
dn{"źeń tyźenja"}
|
||||
}
|
||||
weekday-narrow{
|
||||
dn{"źeń tyźenja"}
|
||||
}
|
||||
weekday-short{
|
||||
dn{"źeń tyźenja"}
|
||||
}
|
||||
weekdayOfMonth{
|
||||
dn{"źeń tyźenja w mjasecu"}
|
||||
}
|
||||
|
@ -2026,6 +2041,9 @@ dsb{
|
|||
zone-narrow{
|
||||
dn{"cas. pasmo"}
|
||||
}
|
||||
zone-short{
|
||||
dn{"casowe pasmo"}
|
||||
}
|
||||
}
|
||||
layout{
|
||||
characters{"left-to-right"}
|
||||
|
@ -2036,9 +2054,17 @@ dsb{
|
|||
2{"{0} abo {1}"}
|
||||
end{"{0} abo {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} abo {1}"}
|
||||
end{"{0} abo {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} abo {1}"}
|
||||
end{"{0} abo {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} a {1}"}
|
||||
|
@ -2046,6 +2072,18 @@ dsb{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} a {1}"}
|
||||
end{"{0} a {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} a {1}"}
|
||||
end{"{0} a {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0} a {1}"}
|
||||
end{"{0} a {1}"}
|
||||
|
|
|
@ -2836,6 +2836,18 @@ el{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ή {1}"}
|
||||
end{"{0} ή {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ή {1}"}
|
||||
end{"{0} ή {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} και {1}"}
|
||||
end{"{0} και {1}"}
|
||||
|
@ -2845,6 +2857,8 @@ el{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} και {1}"}
|
||||
|
@ -2918,22 +2932,71 @@ el{
|
|||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-long-addressing-informal{"{given-informal}"}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-long-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-addressing-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-addressing-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-addressing-informal{"{given}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-referring-formal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
givenFirst-short-referring-informal{"{title} {given} {given2} {surname} {surname2} {credentials}"}
|
||||
sorting-long-referring-formal{"{surname-core}, {surname-prefix} {given} {given2}"}
|
||||
sorting-long-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-medium-referring-formal{"{surname-core}, {surname-prefix} {given} {given2}"}
|
||||
sorting-medium-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-short-referring-formal{"{surname-core}, {surname-prefix} {given} {given2}"}
|
||||
sorting-short-referring-informal{"{surname}, {given-informal}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-formal{"{surname} {given} {given2} {credentials}"}
|
||||
surnameFirst-long-referring-informal{"{surname} {given-informal}"}
|
||||
surnameFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-medium-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname} {given} {given2-initial} {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname} {given-informal}"}
|
||||
surnameFirst-short-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-short-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-short-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-short-referring-formal{"{surname} {given-initial} {given2-initial}"}
|
||||
surnameFirst-short-referring-informal{"{surname} {given-initial}"}
|
||||
}
|
||||
|
|
|
@ -2289,7 +2289,7 @@ en{
|
|||
personNames{
|
||||
initialPattern{
|
||||
initial{"{0}."}
|
||||
initialSequence{"{0} {1}"}
|
||||
initialSequence{"{0}{1}"}
|
||||
}
|
||||
nameOrderLocales{
|
||||
givenFirst{
|
||||
|
@ -2324,13 +2324,13 @@ en{
|
|||
givenFirst-short-addressing-informal{"{given-informal}"}
|
||||
givenFirst-short-monogram-formal{"{surname-monogram-allCaps}"}
|
||||
givenFirst-short-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname}"}
|
||||
givenFirst-short-referring-formal{"{given-initial}{given2-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given-informal} {surname-initial}"}
|
||||
sorting-long-referring-formal{"{surname-core}, {given} {given2} {surname-prefix}"}
|
||||
sorting-long-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-medium-referring-formal{"{surname-core}, {given} {given2-initial} {surname-prefix}"}
|
||||
sorting-medium-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-short-referring-formal{"{surname-core}, {given-initial} {given2-initial} {surname-prefix}"}
|
||||
sorting-short-referring-formal{"{surname-core}, {given-initial}{given2-initial} {surname-prefix}"}
|
||||
sorting-short-referring-informal{"{surname}, {given-informal}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given-informal}"}
|
||||
|
@ -2351,7 +2351,7 @@ en{
|
|||
surnameFirst-short-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-short-monogram-formal{"{surname-monogram-allCaps}"}
|
||||
surnameFirst-short-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
surnameFirst-short-referring-formal{"{surname} {given-initial} {given2-initial}"}
|
||||
surnameFirst-short-referring-formal{"{surname} {given-initial}{given2-initial}"}
|
||||
surnameFirst-short-referring-informal{"{surname} {given-initial}"}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -75,6 +75,22 @@ en_CA{
|
|||
"twelfth month",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
wide{
|
||||
"first month",
|
||||
"second month",
|
||||
"third month",
|
||||
"fourth month",
|
||||
"fifth month",
|
||||
"sixth month",
|
||||
"seventh month",
|
||||
"eighth month",
|
||||
"ninth month",
|
||||
"tenth month",
|
||||
"eleventh month",
|
||||
"twelfth month",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
generic{
|
||||
|
|
|
@ -165,7 +165,6 @@ en_GB{
|
|||
personNames{
|
||||
initialPattern{
|
||||
initial{"{0}"}
|
||||
initialSequence{"{0}{1}"}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -119,6 +119,10 @@ eo{
|
|||
"aK",
|
||||
"pK",
|
||||
}
|
||||
narrow%variant{
|
||||
"aK",
|
||||
"pK",
|
||||
}
|
||||
wide{
|
||||
"aK",
|
||||
"pK",
|
||||
|
|
|
@ -535,6 +535,12 @@ es{
|
|||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"Hmmsszzzz",
|
||||
"Hmmssz",
|
||||
|
@ -753,6 +759,12 @@ es{
|
|||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"Hmmsszzzz",
|
||||
"Hmmssz",
|
||||
|
@ -2677,12 +2689,30 @@ es{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0} o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0} o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} y {1}"}
|
||||
end{"{0} y {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} y {1}"}
|
||||
end{"{0} y {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} y {1}"}
|
||||
end{"{0} y {1}"}
|
||||
|
|
|
@ -235,12 +235,6 @@ es_419{
|
|||
"{1} {0}",
|
||||
"{1} {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"HHmmsszzzz",
|
||||
"HHmmssz",
|
||||
|
@ -309,12 +303,6 @@ es_419{
|
|||
"{1} {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"HHmmsszzzz",
|
||||
"HHmmssz",
|
||||
|
|
|
@ -33,19 +33,6 @@ es_AR{
|
|||
yMEd{"E, d/M/y"}
|
||||
yMMMd{"d 'de' MMM 'de' y"}
|
||||
}
|
||||
dayNames{
|
||||
format{
|
||||
narrow{
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
}
|
||||
}
|
||||
dayPeriod{
|
||||
format{
|
||||
abbreviated{
|
||||
|
|
|
@ -148,17 +148,6 @@ es_CO{
|
|||
yMMMd{"d 'de' MMM 'de' y"}
|
||||
}
|
||||
dayNames{
|
||||
format{
|
||||
narrow{
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
narrow{
|
||||
"d",
|
||||
|
|
|
@ -67,19 +67,6 @@ es_DO{
|
|||
availableFormats{
|
||||
yMMMd{"d MMM 'de' y"}
|
||||
}
|
||||
dayNames{
|
||||
format{
|
||||
narrow{
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
}
|
||||
}
|
||||
dayPeriod{
|
||||
format{
|
||||
narrow{
|
||||
|
|
|
@ -197,19 +197,6 @@ es_MX{
|
|||
yMMMEd{"EEE, d 'de' MMM 'de' y"}
|
||||
yQQQ{"QQQ y"}
|
||||
}
|
||||
dayNames{
|
||||
format{
|
||||
narrow{
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
}
|
||||
}
|
||||
dayPeriod{
|
||||
format{
|
||||
narrow{
|
||||
|
|
|
@ -137,19 +137,6 @@ es_US{
|
|||
yMMMEd{"EEE, d 'de' MMM 'de' y"}
|
||||
yQQQ{"QQQ y"}
|
||||
}
|
||||
dayNames{
|
||||
format{
|
||||
narrow{
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
H{
|
||||
H{"HH–HH"}
|
||||
|
|
|
@ -1143,6 +1143,11 @@ et{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"p"}
|
||||
relative{
|
||||
"-1"{"eile"}
|
||||
"0"{"täna"}
|
||||
"1"{"homme"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} p pärast"}
|
||||
|
@ -1156,6 +1161,11 @@ et{
|
|||
}
|
||||
day-short{
|
||||
dn{"p"}
|
||||
relative{
|
||||
"-1"{"eile"}
|
||||
"0"{"täna"}
|
||||
"1"{"homme"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"{0} p pärast"}
|
||||
|
@ -1940,6 +1950,18 @@ et{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} või {1}"}
|
||||
end{"{0} või {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} või {1}"}
|
||||
end{"{0} või {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} ja {1}"}
|
||||
end{"{0} ja {1}"}
|
||||
|
@ -1949,6 +1971,8 @@ et{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} ja {1}"}
|
||||
|
@ -2018,25 +2042,60 @@ et{
|
|||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-long-addressing-informal{"{given-informal}"}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-long-referring-formal{"{given} {given2} {surname}, {credentials}"}
|
||||
givenFirst-long-referring-informal{"{given} {surname}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-medium-addressing-informal{"{given}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-medium-referring-formal{"{given} {given2} {surname}, {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{given} {surname}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-short-addressing-informal{"{given}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given} {surname-initial}"}
|
||||
sorting-long-referring-formal{"{surname}, {given} {given2}, {credentials}"}
|
||||
sorting-long-referring-informal{"{surname}, {given} {given2}"}
|
||||
sorting-medium-referring-formal{"{surname}, {given} {given2}, {credentials}"}
|
||||
sorting-medium-referring-informal{"{surname}, {given-informal}"}
|
||||
sorting-short-referring-formal{"{surname-core}, {given-initial} {given2-initial}"}
|
||||
sorting-short-referring-informal{"{surname}, {given}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given}"}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-informal{"{surname}, {given}"}
|
||||
surnameFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-medium-addressing-informal{"{given}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname} {surname2} {title} {given} {given2} {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname}, {given}"}
|
||||
surnameFirst-short-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-short-addressing-informal{"{given}"}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -35,6 +35,7 @@ fa{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00"}
|
||||
currencyFormat%noCurrency{"#,##0.00"}
|
||||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
|
@ -52,6 +53,11 @@ fa{
|
|||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
cakm{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
default{"arabext"}
|
||||
latn{
|
||||
miscPatterns{
|
||||
|
@ -246,10 +252,31 @@ fa{
|
|||
}
|
||||
}
|
||||
minimumGroupingDigits{"1"}
|
||||
mtei{
|
||||
miscPatterns{
|
||||
approximately{"~{0}"}
|
||||
atLeast{"{0}+"}
|
||||
}
|
||||
}
|
||||
native{"arabext"}
|
||||
}
|
||||
calendar{
|
||||
buddhist{
|
||||
DateTimePatterns{
|
||||
"H:mm:ss (zzzz)",
|
||||
"H:mm:ss (z)",
|
||||
"H:mm:ss",
|
||||
"H:mm",
|
||||
"EEEE d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"y/M/d GGGGG",
|
||||
"{1}، {0}",
|
||||
"{1}، ساعت {0}",
|
||||
"{1}، ساعت {0}",
|
||||
"{1}، {0}",
|
||||
"{1}، {0}",
|
||||
}
|
||||
eras{
|
||||
abbreviated{
|
||||
"تقویم بودایی",
|
||||
|
@ -280,6 +307,34 @@ fa{
|
|||
"سگ",
|
||||
"خوک",
|
||||
}
|
||||
narrow{
|
||||
"موش",
|
||||
"گاو",
|
||||
"ببر",
|
||||
"خرگوش",
|
||||
"اژدها",
|
||||
"مار",
|
||||
"اسب",
|
||||
"بز",
|
||||
"میمون",
|
||||
"خروس",
|
||||
"سگ",
|
||||
"خوک",
|
||||
}
|
||||
wide{
|
||||
"موش",
|
||||
"گاو",
|
||||
"ببر",
|
||||
"خرگوش",
|
||||
"اژدها",
|
||||
"مار",
|
||||
"اسب",
|
||||
"بز",
|
||||
"میمون",
|
||||
"خروس",
|
||||
"سگ",
|
||||
"خوک",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -465,6 +520,12 @@ fa{
|
|||
"{1}، {0}",
|
||||
"{1}، {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1}، ساعت {0}",
|
||||
"{1}، ساعت {0}",
|
||||
"{1}، {0}",
|
||||
"{1}، {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"Hmmsszzzz",
|
||||
"Hmmssz",
|
||||
|
@ -1486,6 +1547,15 @@ fa{
|
|||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h B تا h B"}
|
||||
h{"h تا h B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h:mm B تا h:mm B"}
|
||||
h{"h:mm تا h:mm B"}
|
||||
m{"h:mm تا h:mm B"}
|
||||
}
|
||||
Gy{
|
||||
G{"y G تا y G"}
|
||||
y{"y تا y G"}
|
||||
|
@ -1524,9 +1594,51 @@ fa{
|
|||
d{"y/M/d تا y/M/d GGGGG"}
|
||||
y{"y/M/d تا y/M/d GGGGG"}
|
||||
}
|
||||
H{
|
||||
H{"H تا H"}
|
||||
}
|
||||
Hm{
|
||||
H{"H:mm تا H:mm"}
|
||||
m{"H:mm تا H:mm"}
|
||||
}
|
||||
M{
|
||||
M{"M تا M"}
|
||||
}
|
||||
MEd{
|
||||
M{"E M/d تا E M/d"}
|
||||
d{"E M/d تا E M/d"}
|
||||
}
|
||||
MMM{
|
||||
M{"LLL تا LLL"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E d LLL تا E d LLL"}
|
||||
d{"E d LLL تا E d LLL"}
|
||||
}
|
||||
MMMd{
|
||||
M{"d LLL تا d LLL"}
|
||||
d{"d تا d LLL"}
|
||||
}
|
||||
Md{
|
||||
M{"M/d تا M/d"}
|
||||
d{"M/d تا M/d"}
|
||||
}
|
||||
d{
|
||||
d{"d تا d"}
|
||||
}
|
||||
fallback{"{0} تا {1}"}
|
||||
h{
|
||||
a{"h a تا h a"}
|
||||
h{"h تا h a"}
|
||||
}
|
||||
hm{
|
||||
a{"h:mm a تا h:mm a"}
|
||||
h{"h:mm تا h:mm a"}
|
||||
m{"h:mm تا h:mm a"}
|
||||
}
|
||||
y{
|
||||
y{"y تا y G"}
|
||||
}
|
||||
yM{
|
||||
M{"y/M تا y/M GGGGG"}
|
||||
y{"y/M تا y/M GGGGG"}
|
||||
|
@ -1536,6 +1648,24 @@ fa{
|
|||
d{"E y/M/d تا E y/M/d GGGGG"}
|
||||
y{"E y/M/d تا E y/M/d GGGGG"}
|
||||
}
|
||||
yMMM{
|
||||
M{"LLL تا MMM y G"}
|
||||
y{"MMM y تا MMM y G"}
|
||||
}
|
||||
yMMMEd{
|
||||
M{"E d LLL تا E d MMM y G"}
|
||||
d{"E d LLL تا E d MMM y G"}
|
||||
y{"E d MMM y تا E d MMM y G"}
|
||||
}
|
||||
yMMMM{
|
||||
M{"LLLL تا MMMM y G"}
|
||||
y{"MMMM y تا MMMM y G"}
|
||||
}
|
||||
yMMMd{
|
||||
M{"d LLL تا d MMM y G"}
|
||||
d{"d تا d MMM y G"}
|
||||
y{"d MMM y تا d MMM y G"}
|
||||
}
|
||||
yMd{
|
||||
M{"y/M/d تا y/M/d GGGGG"}
|
||||
d{"y/M/d تا y/M/d GGGGG"}
|
||||
|
@ -2381,7 +2511,22 @@ fa{
|
|||
"yMd",
|
||||
}
|
||||
availableFormats{
|
||||
E{"ccc"}
|
||||
Ed{"E dم"}
|
||||
Gy{"y G"}
|
||||
GyMMM{"MMM y G"}
|
||||
GyMMMEd{"E d MMM y G"}
|
||||
GyMMMd{"d MMM y G"}
|
||||
GyMd{"M/d/y GGGGG"}
|
||||
M{"L"}
|
||||
MEd{"E M/d"}
|
||||
MMM{"LLL"}
|
||||
MMMEd{"E d LLL"}
|
||||
MMMMEd{"E d LLLL"}
|
||||
MMMMd{"d LLLL"}
|
||||
MMMd{"d LLL"}
|
||||
Md{"M/d"}
|
||||
d{"d"}
|
||||
y{"y"}
|
||||
yyyy{"y"}
|
||||
yyyyM{"y/M"}
|
||||
|
@ -2406,6 +2551,15 @@ fa{
|
|||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h B تا h B"}
|
||||
h{"h تا h B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h:mm B تا h:mm B"}
|
||||
h{"h:mm تا h:mm B"}
|
||||
m{"h:mm تا h:mm B"}
|
||||
}
|
||||
Gy{
|
||||
G{"y G تا y G"}
|
||||
y{"y تا y G"}
|
||||
|
@ -2444,9 +2598,48 @@ fa{
|
|||
d{"y/M/d تا y/M/d GGGGG"}
|
||||
y{"y/M/d تا y/M/d GGGGG"}
|
||||
}
|
||||
H{
|
||||
H{"H تا H"}
|
||||
}
|
||||
Hm{
|
||||
H{"H:mm تا H:mm"}
|
||||
m{"H:mm تا H:mm"}
|
||||
}
|
||||
M{
|
||||
M{"M تا M"}
|
||||
}
|
||||
MEd{
|
||||
M{"E M/d تا E M/d"}
|
||||
d{"E M/d تا E M/d"}
|
||||
}
|
||||
MMM{
|
||||
M{"LLL تا LLL"}
|
||||
}
|
||||
MMMEd{
|
||||
M{"E d LLL تا E d LLL"}
|
||||
d{"E d LLL تا E d LLL"}
|
||||
}
|
||||
MMMd{
|
||||
M{"d LLL تا d LLL"}
|
||||
d{"d تا d LLL"}
|
||||
}
|
||||
Md{
|
||||
M{"M/d تا M/d"}
|
||||
d{"M/d تا M/d"}
|
||||
}
|
||||
d{
|
||||
d{"d تا d"}
|
||||
}
|
||||
fallback{"{0} تا {1}"}
|
||||
h{
|
||||
a{"h a تا h a"}
|
||||
h{"h تا h a"}
|
||||
}
|
||||
hm{
|
||||
a{"h:mm a تا h:mm a"}
|
||||
h{"h:mm تا h:mm a"}
|
||||
m{"h:mm تا h:mm a"}
|
||||
}
|
||||
y{
|
||||
y{"y تا y"}
|
||||
}
|
||||
|
@ -2575,6 +2768,28 @@ fa{
|
|||
}
|
||||
}
|
||||
roc{
|
||||
DateTimePatterns{
|
||||
"H:mm:ss (zzzz)",
|
||||
"H:mm:ss (z)",
|
||||
"H:mm:ss",
|
||||
"H:mm",
|
||||
"EEEE d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"y/M/d GGGGG",
|
||||
"{1}، {0}",
|
||||
"{1}، ساعت {0}",
|
||||
"{1}، ساعت {0}",
|
||||
"{1}، {0}",
|
||||
"{1}، {0}",
|
||||
}
|
||||
availableFormats{
|
||||
E{"ccc"}
|
||||
Gy{"y G"}
|
||||
GyMMM{"MMM y G"}
|
||||
GyMd{"M/d/y GGGGG"}
|
||||
d{"d"}
|
||||
}
|
||||
eras{
|
||||
abbreviated{
|
||||
"قبل از R.O.C.",
|
||||
|
@ -3541,10 +3756,14 @@ fa{
|
|||
start{"{0}، {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} یا {1}"}
|
||||
end{"{0}، یا {1}"}
|
||||
middle{"{0}، {1}"}
|
||||
start{"{0}، {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} یا {1}"}
|
||||
end{"{0}، یا {1}"}
|
||||
middle{"{0}، {1}"}
|
||||
start{"{0}، {1}"}
|
||||
}
|
||||
|
@ -3619,13 +3838,38 @@ fa{
|
|||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-long-addressing-informal{"{given-informal}"}
|
||||
givenFirst-long-monogram-formal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-long-referring-formal{"{title} {given} {given2} {surname} {generation}، {credentials}"}
|
||||
givenFirst-long-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-medium-addressing-informal{"{given-informal}"}
|
||||
givenFirst-medium-monogram-formal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-medium-monogram-informal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname} {generation}، {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-short-addressing-informal{"{given-informal}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{
|
||||
"{given-monogram-allCaps}.{given2-monogram-allCaps}.{surname-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given-informal} {surname-initial}"}
|
||||
sorting-long-referring-formal{"{surname-core}، {given} {given2} {surname-prefix}"}
|
||||
|
@ -3636,14 +3880,38 @@ fa{
|
|||
sorting-short-referring-informal{"{surname}، {given-informal}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-long-monogram-formal{
|
||||
"{surname-monogram-allCaps}.{given-monogram-allCaps}.{given2-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}.{given-monogram-allCaps}.{given2-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-formal{"{surname}، {title} {given} {given2} {generation}، {credentials}"}
|
||||
surnameFirst-long-referring-informal{"{surname}، {given-informal}"}
|
||||
surnameFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-medium-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}.{given-monogram-allCaps}.{given2-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}.{given-monogram-allCaps}.{given2-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname}، {given} {given2-initial} {generation}، {credentials}"}
|
||||
surnameFirst-medium-referring-informal{"{surname}، {given-informal}"}
|
||||
surnameFirst-short-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-short-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-short-monogram-formal{
|
||||
"{surname-monogram-allCaps}.{given-monogram-allCaps}.{given2-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
surnameFirst-short-monogram-informal{
|
||||
"{surname-monogram-allCaps}.{given-monogram-allCaps}.{given2-monogram"
|
||||
"-allCaps}"
|
||||
}
|
||||
surnameFirst-short-referring-formal{"{surname}، {given-initial} {given2-initial}"}
|
||||
surnameFirst-short-referring-informal{"{surname}، {given-initial}"}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -226,6 +226,11 @@ fi{
|
|||
}
|
||||
minimumGroupingDigits{"1"}
|
||||
native{"latn"}
|
||||
sora{
|
||||
symbols{
|
||||
nan{"epäluku"}
|
||||
}
|
||||
}
|
||||
}
|
||||
calendar{
|
||||
buddhist{
|
||||
|
@ -255,16 +260,21 @@ fi{
|
|||
"GGGGGyMd",
|
||||
}
|
||||
availableFormats{
|
||||
E{"ccc"}
|
||||
Ed{"E d."}
|
||||
Gy{"y G"}
|
||||
GyMMM{"LLL y G"}
|
||||
GyMMMEd{"E d. MMM y G"}
|
||||
GyMMMd{"d. MMM y G"}
|
||||
GyMd{"d.M.y G"}
|
||||
M{"L"}
|
||||
MEd{"E d.M."}
|
||||
MMM{"LLL"}
|
||||
MMMEd{"ccc d. MMM"}
|
||||
MMMMd{"d. MMMM"}
|
||||
MMMd{"d. MMM"}
|
||||
Md{"d.M."}
|
||||
d{"d"}
|
||||
y{"y G"}
|
||||
yyyy{"y G"}
|
||||
yyyyM{"L.y G"}
|
||||
|
@ -1520,6 +1530,247 @@ fi{
|
|||
"GyMd",
|
||||
"GGGGGyMd",
|
||||
}
|
||||
eras{
|
||||
wide{
|
||||
"Taika (645–650)",
|
||||
"Hakuchi (650–671)",
|
||||
"Hakuhō (672–686)",
|
||||
"Shuchō (686–701)",
|
||||
"Taihō (701–704)",
|
||||
"Keiun (704–708)",
|
||||
"Wadō (708–715)",
|
||||
"Reiki (715–717)",
|
||||
"Yōrō (717–724)",
|
||||
"Jinki (724–729)",
|
||||
"Tenpyō (729–749)",
|
||||
"Tenpyō-kampō (749–749)",
|
||||
"Tenpyō-shōhō (749–757)",
|
||||
"Tenpyō-hōji (757–765)",
|
||||
"Tenpyō-jingo (765–767)",
|
||||
"Jingo-keiun (767–770)",
|
||||
"Hōki (770–780)",
|
||||
"Ten-ō (781–782)",
|
||||
"Enryaku (782–806)",
|
||||
"Daidō (806–810)",
|
||||
"Kōnin (810–824)",
|
||||
"Tenchō (824–834)",
|
||||
"Jōwa (834–848)",
|
||||
"Kajō (848–851)",
|
||||
"Ninju (851–854)",
|
||||
"Saikō (854–857)",
|
||||
"Ten-an (857–859)",
|
||||
"Jōgan (859–877)",
|
||||
"Gangyō (877–885)",
|
||||
"Ninna (885–889)",
|
||||
"Kanpyō (889–898)",
|
||||
"Shōtai (898–901)",
|
||||
"Engi (901–923)",
|
||||
"Enchō (923–931)",
|
||||
"Jōhei (931–938)",
|
||||
"Tengyō (938–947)",
|
||||
"Tenryaku (947–957)",
|
||||
"Tentoku (957–961)",
|
||||
"Ōwa (961–964)",
|
||||
"Kōhō (964–968)",
|
||||
"Anna (968–970)",
|
||||
"Tenroku (970–973)",
|
||||
"Ten’en (973–976)",
|
||||
"Jōgen (976–978)",
|
||||
"Tengen (978–983)",
|
||||
"Eikan (983–985)",
|
||||
"Kanna (985–987)",
|
||||
"Eien (987–989)",
|
||||
"Eiso (989–990)",
|
||||
"Shōryaku (990–995)",
|
||||
"Chōtoku (995–999)",
|
||||
"Chōhō (999–1004)",
|
||||
"Kankō (1004–1012)",
|
||||
"Chōwa (1012–1017)",
|
||||
"Kannin (1017–1021)",
|
||||
"Jian (1021–1024)",
|
||||
"Manju (1024–1028)",
|
||||
"Chōgen (1028–1037)",
|
||||
"Chōryaku (1037–1040)",
|
||||
"Chōkyū (1040–1044)",
|
||||
"Kantoku (1044–1046)",
|
||||
"Eishō (1046–1053)",
|
||||
"Tengi (1053–1058)",
|
||||
"Kōhei (1058–1065)",
|
||||
"Jiryaku (1065–1069)",
|
||||
"Enkyū (1069–1074)",
|
||||
"Shōho (1074–1077)",
|
||||
"Shōryaku (1077–1081)",
|
||||
"Eihō (1081–1084)",
|
||||
"Ōtoku (1084–1087)",
|
||||
"Kanji (1087–1094)",
|
||||
"Kahō (1094–1096)",
|
||||
"Eichō (1096–1097)",
|
||||
"Jōtoku (1097–1099)",
|
||||
"Kōwa (1099–1104)",
|
||||
"Chōji (1104–1106)",
|
||||
"Kashō (1106–1108)",
|
||||
"Tennin (1108–1110)",
|
||||
"Ten-ei (1110–1113)",
|
||||
"Eikyū (1113–1118)",
|
||||
"Gen’ei (1118–1120)",
|
||||
"Hōan (1120–1124)",
|
||||
"Tenji (1124–1126)",
|
||||
"Daiji (1126–1131)",
|
||||
"Tenshō (1131–1132)",
|
||||
"Chōshō (1132–1135)",
|
||||
"Hōen (1135–1141)",
|
||||
"Eiji (1141–1142)",
|
||||
"Kōji (1142–1144)",
|
||||
"Ten’yō (1144–1145)",
|
||||
"Kyūan (1145–1151)",
|
||||
"Ninpei (1151–1154)",
|
||||
"Kyūju (1154–1156)",
|
||||
"Hōgen (1156–1159)",
|
||||
"Heiji (1159–1160)",
|
||||
"Eiryaku (1160–1161)",
|
||||
"Ōho (1161–1163)",
|
||||
"Chōkan (1163–1165)",
|
||||
"Eiman (1165–1166)",
|
||||
"Nin’an (1166–1169)",
|
||||
"Kaō (1169–1171)",
|
||||
"Shōan (1171–1175)",
|
||||
"Angen (1175–1177)",
|
||||
"Jishō (1177–1181)",
|
||||
"Yōwa (1181–1182)",
|
||||
"Juei (1182–1184)",
|
||||
"Genryaku (1184–1185)",
|
||||
"Bunji (1185–1190)",
|
||||
"Kenkyū (1190–1199)",
|
||||
"Shōji (1199–1201)",
|
||||
"Kennin (1201–1204)",
|
||||
"Genkyū (1204–1206)",
|
||||
"Ken’ei (1206–1207)",
|
||||
"Jōgen (1207–1211)",
|
||||
"Kenryaku (1211–1213)",
|
||||
"Kenpō (1213–1219)",
|
||||
"Jōkyū (1219–1222)",
|
||||
"Jōō (1222–1224)",
|
||||
"Gennin (1224–1225)",
|
||||
"Karoku (1225–1227)",
|
||||
"Antei (1227–1229)",
|
||||
"Kanki (1229–1232)",
|
||||
"Jōei (1232–1233)",
|
||||
"Tenpuku (1233–1234)",
|
||||
"Bunryaku (1234–1235)",
|
||||
"Katei (1235–1238)",
|
||||
"Ryakunin (1238–1239)",
|
||||
"En’ō (1239–1240)",
|
||||
"Ninji (1240–1243)",
|
||||
"Kangen (1243–1247)",
|
||||
"Hōji (1247–1249)",
|
||||
"Kenchō (1249–1256)",
|
||||
"Kōgen (1256–1257)",
|
||||
"Shōka (1257–1259)",
|
||||
"Shōgen (1259–1260)",
|
||||
"Bun’ō (1260–1261)",
|
||||
"Kōchō (1261–1264)",
|
||||
"Bun’ei (1264–1275)",
|
||||
"Kenji (1275–1278)",
|
||||
"Kōan (1278–1288)",
|
||||
"Shōō (1288–1293)",
|
||||
"Einin (1293–1299)",
|
||||
"Shōan (1299–1302)",
|
||||
"Kengen (1302–1303)",
|
||||
"Kagen (1303–1306)",
|
||||
"Tokuji (1306–1308)",
|
||||
"Enkyō (1308–1311)",
|
||||
"Ōchō (1311–1312)",
|
||||
"Shōwa (1312–1317)",
|
||||
"Bunpō (1317–1319)",
|
||||
"Genō (1319–1321)",
|
||||
"Genkō (1321–1324)",
|
||||
"Shōchū (1324–1326)",
|
||||
"Karyaku (1326–1329)",
|
||||
"Gentoku (1329–1331)",
|
||||
"Genkō (1331–1334)",
|
||||
"Kenmu (1334–1336)",
|
||||
"Engen (1336–1340)",
|
||||
"Kōkoku (1340–1346)",
|
||||
"Shōhei (1346–1370)",
|
||||
"Kentoku (1370–1372)",
|
||||
"Bunchū (1372–1375)",
|
||||
"Tenju (1375–1379)",
|
||||
"Kōryaku (1379–1381)",
|
||||
"Kōwa (1381–1384)",
|
||||
"Genchū (1384–1392)",
|
||||
"Meitoku (1384–1387)",
|
||||
"Kakei (1387–1389)",
|
||||
"Kōō (1389–1390)",
|
||||
"Meitoku (1390–1394)",
|
||||
"Ōei (1394–1428)",
|
||||
"Shōchō (1428–1429)",
|
||||
"Eikyō (1429–1441)",
|
||||
"Kakitsu (1441–1444)",
|
||||
"Bun’an (1444–1449)",
|
||||
"Hōtoku (1449–1452)",
|
||||
"Kyōtoku (1452–1455)",
|
||||
"Kōshō (1455–1457)",
|
||||
"Chōroku (1457–1460)",
|
||||
"Kanshō (1460–1466)",
|
||||
"Bunshō (1466–1467)",
|
||||
"Ōnin (1467–1469)",
|
||||
"Bunmei (1469–1487)",
|
||||
"Chōkyō (1487–1489)",
|
||||
"Entoku (1489–1492)",
|
||||
"Meiō (1492–1501)",
|
||||
"Bunki (1501–1504)",
|
||||
"Eishō (1504–1521)",
|
||||
"Taiei (1521–1528)",
|
||||
"Kyōroku (1528–1532)",
|
||||
"Tenbun (1532–1555)",
|
||||
"Kōji (1555–1558)",
|
||||
"Eiroku (1558–1570)",
|
||||
"Genki (1570–1573)",
|
||||
"Tenshō (1573–1592)",
|
||||
"Bunroku (1592–1596)",
|
||||
"Keichō (1596–1615)",
|
||||
"Genna (1615–1624)",
|
||||
"Kan’ei (1624–1644)",
|
||||
"Shōho (1644–1648)",
|
||||
"Keian (1648–1652)",
|
||||
"Jōō (1652–1655)",
|
||||
"Meireki (1655–1658)",
|
||||
"Manji (1658–1661)",
|
||||
"Kanbun (1661–1673)",
|
||||
"Enpō (1673–1681)",
|
||||
"Tenna (1681–1684)",
|
||||
"Jōkyō (1684–1688)",
|
||||
"Genroku (1688–1704)",
|
||||
"Hōei (1704–1711)",
|
||||
"Shōtoku (1711–1716)",
|
||||
"Kyōhō (1716–1736)",
|
||||
"Genbun (1736–1741)",
|
||||
"Kanpō (1741–1744)",
|
||||
"Enkyō (1744–1748)",
|
||||
"Kan’en (1748–1751)",
|
||||
"Hōreki (1751–1764)",
|
||||
"Meiwa (1764–1772)",
|
||||
"An’ei (1772–1781)",
|
||||
"Tenmei (1781–1789)",
|
||||
"Kansei (1789–1801)",
|
||||
"Kyōwa (1801–1804)",
|
||||
"Bunka (1804–1818)",
|
||||
"Bunsei (1818–1830)",
|
||||
"Tenpō (1830–1844)",
|
||||
"Kōka (1844–1848)",
|
||||
"Kaei (1848–1854)",
|
||||
"Ansei (1854–1860)",
|
||||
"Man’en (1860–1861)",
|
||||
"Bunkyū (1861–1864)",
|
||||
"Genji (1864–1865)",
|
||||
"Keiō (1865–1868)",
|
||||
"Meiji",
|
||||
"Taishō",
|
||||
"Shōwa",
|
||||
"Heisei",
|
||||
"Reiwa",
|
||||
}
|
||||
}
|
||||
}
|
||||
persian{
|
||||
eras{
|
||||
|
@ -2567,12 +2818,30 @@ fi{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} tai {1}"}
|
||||
end{"{0} tai {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} tai {1}"}
|
||||
end{"{0} tai {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} ja {1}"}
|
||||
end{"{0} ja {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} ja {1}"}
|
||||
end{"{0} ja {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} ja {1}"}
|
||||
end{"{0} ja {1}"}
|
||||
|
@ -2651,12 +2920,17 @@ fi{
|
|||
namePattern{
|
||||
givenFirst-long-addressing-formal{"{title} {surname} {surname2}"}
|
||||
givenFirst-long-addressing-informal{"{given-informal}"}
|
||||
givenFirst-long-monogram-informal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-long-referring-formal{"{title} {given} {given2} {surname} {surname2}, {credentials}"}
|
||||
givenFirst-long-referring-informal{"{given} {surname}"}
|
||||
givenFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-medium-addressing-informal{"{given-informal}"}
|
||||
givenFirst-medium-monogram-formal{"{surname-monogram-allCaps}"}
|
||||
givenFirst-medium-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
givenFirst-medium-referring-formal{"{title} {given} {given2} {surname} {surname2}, {credentials}"}
|
||||
givenFirst-medium-referring-informal{"{given} {given2} {surname} {surname2}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-short-addressing-informal{"{given-informal}"}
|
||||
|
@ -2672,10 +2946,22 @@ fi{
|
|||
sorting-short-referring-informal{"{surname}, {given-informal}"}
|
||||
surnameFirst-long-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-long-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-long-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-long-referring-formal{"{surname} {surname2} {given} {given2}, {title} {credentials}"}
|
||||
surnameFirst-long-referring-informal{"{surname} {given}"}
|
||||
surnameFirst-medium-addressing-formal{"{title} {surname}"}
|
||||
surnameFirst-medium-addressing-informal{"{given-informal}"}
|
||||
surnameFirst-medium-monogram-formal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-monogram-informal{
|
||||
"{surname-monogram-allCaps}{given-monogram-allCaps}{given2-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
surnameFirst-medium-referring-formal{"{surname} {surname2} {given}, {title}"}
|
||||
surnameFirst-medium-referring-informal{"{surname} {given}"}
|
||||
surnameFirst-short-addressing-formal{"{title} {surname}"}
|
||||
|
|
|
@ -264,6 +264,11 @@ fil{
|
|||
}
|
||||
minimumGroupingDigits{"1"}
|
||||
native{"latn"}
|
||||
sora{
|
||||
symbols{
|
||||
timeSeparator{":"}
|
||||
}
|
||||
}
|
||||
}
|
||||
calendar{
|
||||
buddhist{
|
||||
|
@ -3869,6 +3874,18 @@ fil{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0}, o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} o {1}"}
|
||||
end{"{0}, o {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} at {1}"}
|
||||
end{"{0}, at {1}"}
|
||||
|
@ -3878,10 +3895,14 @@ fil{
|
|||
standard-narrow{
|
||||
2{"{0}, {1}"}
|
||||
end{"{0}, {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} at {1}"}
|
||||
end{"{0}, at {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
unit{
|
||||
2{"{0}, {1}"}
|
||||
|
|
|
@ -1053,6 +1053,11 @@ fo{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"d."}
|
||||
relative{
|
||||
"-1"{"í gjár"}
|
||||
"0"{"í dag"}
|
||||
"1"{"í morgin"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"um {0} d."}
|
||||
|
@ -1066,6 +1071,11 @@ fo{
|
|||
}
|
||||
day-short{
|
||||
dn{"da."}
|
||||
relative{
|
||||
"-1"{"í gjár"}
|
||||
"0"{"í dag"}
|
||||
"1"{"í morgin"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"um {0} da."}
|
||||
|
@ -1789,6 +1799,11 @@ fo{
|
|||
}
|
||||
year-narrow{
|
||||
dn{"ár"}
|
||||
relative{
|
||||
"-1"{"í fjør"}
|
||||
"0"{"í ár"}
|
||||
"1"{"næsta ár"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"um {0} ár"}
|
||||
|
@ -1802,6 +1817,11 @@ fo{
|
|||
}
|
||||
year-short{
|
||||
dn{"ár"}
|
||||
relative{
|
||||
"-1"{"í fjør"}
|
||||
"0"{"í ár"}
|
||||
"1"{"næsta ár"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"um {0} ár"}
|
||||
|
@ -1830,12 +1850,30 @@ fo{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ella {1}"}
|
||||
end{"{0}, ella {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ella {1}"}
|
||||
end{"{0}, ella {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} og {1}"}
|
||||
end{"{0} og {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} og {1}"}
|
||||
end{"{0} og {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-short{
|
||||
2{"{0} og {1}"}
|
||||
end{"{0} og {1}"}
|
||||
|
|
|
@ -1740,6 +1740,7 @@ fr{
|
|||
GyMMM{"MMM y G"}
|
||||
GyMMMEd{"E d MMM y G"}
|
||||
GyMMMd{"d MMM y G"}
|
||||
GyMd{"dd/MM/y GGGGG"}
|
||||
M{"L"}
|
||||
MEd{"E dd/MM"}
|
||||
MMM{"LLL"}
|
||||
|
@ -2976,6 +2977,18 @@ fr{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ou {1}"}
|
||||
end{"{0} ou {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ou {1}"}
|
||||
end{"{0} ou {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} et {1}"}
|
||||
end{"{0} et {1}"}
|
||||
|
|
|
@ -157,7 +157,20 @@ fr_CA{
|
|||
}
|
||||
}
|
||||
calendar{
|
||||
buddhist{
|
||||
availableFormats{
|
||||
GyMd{"y-MM-dd GGGGG"}
|
||||
}
|
||||
}
|
||||
coptic{
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
|
@ -226,6 +239,14 @@ fr_CA{
|
|||
}
|
||||
}
|
||||
ethiopic{
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
|
@ -448,17 +469,6 @@ fr_CA{
|
|||
yMd{"y-MM-dd"}
|
||||
}
|
||||
dayNames{
|
||||
format{
|
||||
narrow{
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
}
|
||||
stand-alone{
|
||||
narrow{
|
||||
"D",
|
||||
|
@ -668,6 +678,17 @@ fr_CA{
|
|||
abbreviated{
|
||||
"AM",
|
||||
}
|
||||
narrow{
|
||||
"AM",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
|
@ -746,6 +767,14 @@ fr_CA{
|
|||
"Saka",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
narrow{
|
||||
|
@ -813,16 +842,45 @@ fr_CA{
|
|||
"Anno Hegirae",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
japanese{
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
persian{
|
||||
eras{
|
||||
abbreviated{
|
||||
"AP",
|
||||
}
|
||||
narrow{
|
||||
"AP",
|
||||
}
|
||||
wide{
|
||||
"AP",
|
||||
}
|
||||
}
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
monthNames{
|
||||
format{
|
||||
abbreviated{
|
||||
|
@ -886,6 +944,16 @@ fr_CA{
|
|||
}
|
||||
}
|
||||
}
|
||||
roc{
|
||||
intervalFormats{
|
||||
Bh{
|
||||
B{"h 'h' B – h 'h' B"}
|
||||
}
|
||||
Bhm{
|
||||
B{"h 'h' mm B – h 'h' mm B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
characterLabel{
|
||||
braille{"braille"}
|
||||
|
|
|
@ -26,6 +26,12 @@ fr_ML{
|
|||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1} 'à' {0}",
|
||||
"{1} 'à' {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
quarters{
|
||||
format{
|
||||
wide{
|
||||
|
|
|
@ -765,6 +765,10 @@ ga{
|
|||
"r.n.",
|
||||
"i.n.",
|
||||
}
|
||||
AmPmMarkersNarrow{
|
||||
"r.n.",
|
||||
"i.n.",
|
||||
}
|
||||
DateTimePatterns{
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
|
@ -940,6 +944,10 @@ ga{
|
|||
}
|
||||
dayPeriod{
|
||||
stand-alone{
|
||||
abbreviated{
|
||||
am{"r.n."}
|
||||
pm{"i.n."}
|
||||
}
|
||||
narrow{
|
||||
am{"r.n."}
|
||||
pm{"i.n."}
|
||||
|
@ -1330,6 +1338,7 @@ ga{
|
|||
}
|
||||
}
|
||||
day-narrow{
|
||||
dn{"lá"}
|
||||
relative{
|
||||
"-1"{"inné"}
|
||||
"-2"{"arú inné"}
|
||||
|
@ -1355,6 +1364,7 @@ ga{
|
|||
}
|
||||
}
|
||||
day-short{
|
||||
dn{"lá"}
|
||||
relative{
|
||||
"-1"{"inné"}
|
||||
"-2"{"arú inné"}
|
||||
|
@ -2318,6 +2328,9 @@ ga{
|
|||
weekday{
|
||||
dn{"lá den tseachtain"}
|
||||
}
|
||||
weekday-narrow{
|
||||
dn{"lá den tscht."}
|
||||
}
|
||||
weekday-short{
|
||||
dn{"lá den tscht."}
|
||||
}
|
||||
|
@ -2420,10 +2433,16 @@ ga{
|
|||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} nó {1}"}
|
||||
end{"{0} nó {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} nó {1}"}
|
||||
end{"{0} nó {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} agus {1}"}
|
||||
|
@ -2502,6 +2521,10 @@ ga{
|
|||
givenFirst-medium-referring-informal{"{given-informal} {surname}"}
|
||||
givenFirst-short-addressing-formal{"{title} {surname}"}
|
||||
givenFirst-short-addressing-informal{"{given-informal}"}
|
||||
givenFirst-short-monogram-formal{
|
||||
"{given-monogram-allCaps}{given2-monogram-allCaps}{surname-monogram-a"
|
||||
"llCaps}"
|
||||
}
|
||||
givenFirst-short-monogram-informal{"{given-informal-monogram-allCaps}"}
|
||||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given-informal} {surname-initial}"}
|
||||
|
|
|
@ -4357,6 +4357,18 @@ gd{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} no {1}"}
|
||||
end{"{0} no {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} no {1}"}
|
||||
end{"{0} no {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} agus {1}"}
|
||||
end{"{0} agus {1}"}
|
||||
|
@ -4468,10 +4480,22 @@ gd{
|
|||
givenFirst-short-referring-formal{"{given-initial} {given2-initial} {surname}"}
|
||||
givenFirst-short-referring-informal{"{given-informal} {given2-initial}"}
|
||||
sorting-long-referring-formal{"{surname-core}, {given} {given2} {surname-prefix}"}
|
||||
sorting-long-referring-informal{"{surname}, {given-informal} {given2}"}
|
||||
sorting-medium-referring-formal{"{surname-core}, {given} {given2-initial} {surname-prefix}"}
|
||||
sorting-medium-referring-informal{"{surname}, {given-informal} {given2}"}
|
||||
sorting-short-referring-formal{"{surname-core}, {given-initial} {given2-initial} {surname-prefix}"}
|
||||
sorting-long-referring-informal{
|
||||
"{surname}, {given-informal} {given2}",
|
||||
"{surname-core}, {given} {given2} {surname-prefix}",
|
||||
}
|
||||
sorting-medium-referring-formal{
|
||||
"{surname-core}, {given} {given2-initial} {surname-prefix}",
|
||||
"{surname-core}, {given} {given2} {surname-prefix}",
|
||||
}
|
||||
sorting-medium-referring-informal{
|
||||
"{surname}, {given-informal} {given2}",
|
||||
"{surname-core}, {given} {given2} {surname-prefix}",
|
||||
}
|
||||
sorting-short-referring-formal{
|
||||
"{surname-core}, {given-initial} {given2-initial} {surname-prefix}",
|
||||
"{surname-core}, {given} {given2} {surname-prefix}",
|
||||
}
|
||||
sorting-short-referring-informal{
|
||||
"{surname}, {given-informal} {given2}",
|
||||
"{surname-core}, {given-informal} {given2} {surname-prefix}",
|
||||
|
|
|
@ -274,6 +274,12 @@ gl{
|
|||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimePatterns%atTime{
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
"{1}, {0}",
|
||||
}
|
||||
DateTimeSkeletons{
|
||||
"HHmmsszzzz",
|
||||
"HHmmssz",
|
||||
|
@ -1137,6 +1143,11 @@ gl{
|
|||
}
|
||||
day-narrow{
|
||||
dn{"día"}
|
||||
relative{
|
||||
"-1"{"onte"}
|
||||
"0"{"hoxe"}
|
||||
"1"{"mañá"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"en {0} día"}
|
||||
|
@ -1150,6 +1161,11 @@ gl{
|
|||
}
|
||||
day-short{
|
||||
dn{"día"}
|
||||
relative{
|
||||
"-1"{"onte"}
|
||||
"0"{"hoxe"}
|
||||
"1"{"mañá"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"en {0} día"}
|
||||
|
@ -1412,6 +1428,11 @@ gl{
|
|||
}
|
||||
month-short{
|
||||
dn{"mes"}
|
||||
relative{
|
||||
"-1"{"o mes pasado"}
|
||||
"0"{"este mes"}
|
||||
"1"{"o próximo mes"}
|
||||
}
|
||||
relativeTime{
|
||||
future{
|
||||
one{"en {0} mes"}
|
||||
|
@ -1929,6 +1950,18 @@ gl{
|
|||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-narrow{
|
||||
2{"{0} ou {1}"}
|
||||
end{"{0} ou {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
or-short{
|
||||
2{"{0} ou {1}"}
|
||||
end{"{0} ou {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
standard{
|
||||
2{"{0} e {1}"}
|
||||
end{"{0} e {1}"}
|
||||
|
@ -1936,6 +1969,8 @@ gl{
|
|||
start{"{0}, {1}"}
|
||||
}
|
||||
standard-narrow{
|
||||
2{"{0} e {1}"}
|
||||
end{"{0} e {1}"}
|
||||
middle{"{0}, {1}"}
|
||||
start{"{0}, {1}"}
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue