mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-8471 Add compact decimal formats from CLDR.
X-SVN-Rev: 32096
This commit is contained in:
parent
dc75668c05
commit
f0b7707008
65 changed files with 2542 additions and 2 deletions
|
@ -203,11 +203,14 @@ make check 2>&1 | tee /tmp/icu4c-newData-makeCheck.txt
|
|||
|
||||
# 9. Investigate each test case failure. The first run processing new CLDR data
|
||||
# from the Survey Tool can result in thousands of failures (in many cases, one
|
||||
# CLDR data fix can resolve hundres of test failures). If the error is caused
|
||||
# CLDR data fix can resolve hundreds of test failures). If the error is caused
|
||||
# by bad CLDR data, then file a CLDR bug, fix the data, and regenerate from
|
||||
# step 5a. If the data is OK but the testcase needs to be updated because the
|
||||
# data has legitimately changed, then update the testcase. You will check in
|
||||
# the updated testcases along with the new ICU data at the end of this process.
|
||||
# Note that if the new data has any differences in structure, you will have to
|
||||
# update test/testdata/structLocale.txt or /tsutil/cldrtest/TestLocaleStructure
|
||||
# may fail.
|
||||
# Repeat steps 5-8 until there are no errors.
|
||||
|
||||
# 10. Now run the make check tests in exhaustive mode:
|
||||
|
|
|
@ -25,6 +25,46 @@ af{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mil"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mil"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mil"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mjd"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mjd"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mjd"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bil"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bil"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bil"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -21,6 +21,46 @@ am{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00;(¤#,##0.00)"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000ኪባ"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 ሜትር"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 ሜትር"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 ሜትር"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0G"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00G"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000G"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
native{"latn"}
|
||||
traditional{"ethi"}
|
||||
|
|
|
@ -26,6 +26,46 @@ ar{
|
|||
currencyFormat{"¤ #0.00;¤ #0.00-"}
|
||||
decimalFormat{"#0.###;#0.###-"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"٫"}
|
||||
exponential{"اس"}
|
||||
|
@ -45,6 +85,46 @@ ar{
|
|||
currencyFormat{"¤ #,##0.00;¤ #,##0.00-"}
|
||||
decimalFormat{"#,##0.###;#,##0.###-"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -23,6 +23,46 @@ bg{
|
|||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 Х"}
|
||||
}
|
||||
10000{
|
||||
other{"00 Х"}
|
||||
}
|
||||
100000{
|
||||
other{"000 Х"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 М"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 М"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 М"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 Б"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 Б"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 Б"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 Т"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 Т"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 Т"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{" "}
|
||||
|
|
|
@ -38,6 +38,46 @@ bn{
|
|||
percentFormat{"#,##,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ ca{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0000 M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00k M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000k M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -28,6 +28,46 @@ cs{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 tis'.'"}
|
||||
}
|
||||
10000{
|
||||
other{"00 tis'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 tis'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mil'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mil'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mil'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mld'.'"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mld'.'"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mld'.'"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bil'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bil'.'"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bil'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -26,6 +26,46 @@ da{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mio"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mio"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mio"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mia"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mia"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mia"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bill"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bill"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bill"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -26,6 +26,46 @@ de{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 Mio"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 Mio"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 Mio"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 Mrd"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 Mrd"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 Mrd"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -24,6 +24,37 @@ ee{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00;(¤#,##0.00)"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
100000{
|
||||
other{"00K"}
|
||||
}
|
||||
10000000{
|
||||
other{"0M"}
|
||||
}
|
||||
100000000{
|
||||
other{"00M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.000M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00000M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"0000M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"0B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
nan{"mnn"}
|
||||
}
|
||||
|
|
|
@ -26,6 +26,46 @@ el{
|
|||
decimalFormat{"#,##0.###"}
|
||||
percentFormat{"#,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 χιλ'.'"}
|
||||
}
|
||||
10000{
|
||||
other{"00 χιλ'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 χιλ'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 εκ'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 εκ'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 εκ'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 δις"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 δις"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 δις"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 τρις"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 τρις"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 τρις"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"e"}
|
||||
|
|
|
@ -29,6 +29,46 @@ en{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -29,6 +29,46 @@ es{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00k"}
|
||||
}
|
||||
100000{
|
||||
other{"000k"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0000 M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00k M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000k M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -12,6 +12,46 @@ es_419{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00k"}
|
||||
}
|
||||
100000{
|
||||
other{"000k"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0k M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00k M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000k M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
group{","}
|
||||
|
|
|
@ -25,6 +25,46 @@ et{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 tuh"}
|
||||
}
|
||||
10000{
|
||||
other{"00 tuh"}
|
||||
}
|
||||
100000{
|
||||
other{"000 tuh"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mln"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mln"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mln"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mld"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mld"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mld"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 trl"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 trl"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 trl"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -24,6 +24,46 @@ eu{
|
|||
decimalFormat{"#,##0.###"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0000 M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00k M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000k M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -43,6 +43,46 @@ fa{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ fi{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 t"}
|
||||
}
|
||||
10000{
|
||||
other{"00 t"}
|
||||
}
|
||||
100000{
|
||||
other{"000 t"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 ml"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 ml"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 ml"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mr"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mr"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mr"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 b"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 b"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 b"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ fil{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -29,6 +29,46 @@ fr{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 Md"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 Mds"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 Mds"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 Bn"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 Bn"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 Bn"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -12,6 +12,19 @@ fr_CA{
|
|||
patterns{
|
||||
currencyFormat{"#,##0.00 ¤;(#,##0.00 ¤)"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
PaperSize:intvector{
|
||||
|
|
|
@ -25,6 +25,46 @@ gl{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00k"}
|
||||
}
|
||||
100000{
|
||||
other{"000k"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0000 M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00k M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000k M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -32,6 +32,46 @@ gu{
|
|||
decimalFormat{"#,##,##0.###"}
|
||||
percentFormat{"#,##,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
exponential{"પૂર્વ"}
|
||||
nan{"સંખ્યા નથીં"}
|
||||
|
|
|
@ -29,6 +29,46 @@ he{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -33,6 +33,46 @@ hi{
|
|||
percentFormat{"#,##,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ hr{
|
|||
patterns{
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mil'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mil'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mil'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mlr"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mlr"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mlr"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bil'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bil'.'"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bil'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{"."}
|
||||
|
|
|
@ -31,6 +31,46 @@ hu{
|
|||
decimalFormat{"#,##0.###"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 e"}
|
||||
}
|
||||
10000{
|
||||
other{"00 e"}
|
||||
}
|
||||
100000{
|
||||
other{"000 e"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 m"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 m"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 m"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mrd"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mrd"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mrd"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 b"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 b"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 b"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -22,6 +22,46 @@ id{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00 rb"}
|
||||
}
|
||||
100000{
|
||||
other{"000 rb"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 jt"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 jt"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 jt"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{"."}
|
||||
|
|
|
@ -25,6 +25,46 @@ is{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 þ'.'"}
|
||||
}
|
||||
10000{
|
||||
other{"00 þ'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 þ'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 m'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 m'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 m'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 ma'.'"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 ma'.'"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 ma'.'"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 tr'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 tr'.'"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 tr'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"×10^"}
|
||||
|
|
|
@ -26,6 +26,46 @@ it{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 Md"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 Md"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 Md"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 B"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{"."}
|
||||
|
|
|
@ -83,6 +83,46 @@ ja{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"0.0万"}
|
||||
}
|
||||
100000{
|
||||
other{"00万"}
|
||||
}
|
||||
1000000{
|
||||
other{"000万"}
|
||||
}
|
||||
10000000{
|
||||
other{"0000万"}
|
||||
}
|
||||
100000000{
|
||||
other{"0.0億"}
|
||||
}
|
||||
1000000000{
|
||||
other{"00億"}
|
||||
}
|
||||
10000000000{
|
||||
other{"000億"}
|
||||
}
|
||||
100000000000{
|
||||
other{"0000億"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0兆"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00兆"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000兆"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
group{","}
|
||||
|
|
|
@ -27,6 +27,46 @@ kk{
|
|||
patterns{
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 мың"}
|
||||
}
|
||||
10000{
|
||||
other{"00 мың"}
|
||||
}
|
||||
100000{
|
||||
other{"000 мың"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 млн"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 млн"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 млн"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 млрд"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 млрд"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 млрд"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 трлн"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 трлн"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 трлн"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{" "}
|
||||
|
|
|
@ -32,6 +32,46 @@ kn{
|
|||
decimalFormat{"#,##,##0.###"}
|
||||
percentFormat{"#,##,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
exponential{"ಪೂರ್ವ"}
|
||||
nan{"ಸಂಖ್ಯೆಯಲ್ಲ"}
|
||||
|
|
|
@ -47,6 +47,46 @@ ko{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"0.0만"}
|
||||
}
|
||||
100000{
|
||||
other{"00만"}
|
||||
}
|
||||
1000000{
|
||||
other{"000만"}
|
||||
}
|
||||
10000000{
|
||||
other{"0000만"}
|
||||
}
|
||||
100000000{
|
||||
other{"0.0억"}
|
||||
}
|
||||
1000000000{
|
||||
other{"00억"}
|
||||
}
|
||||
10000000000{
|
||||
other{"000억"}
|
||||
}
|
||||
100000000000{
|
||||
other{"0000억"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0조"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00조"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000조"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -29,6 +29,46 @@ lt{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 K"}
|
||||
}
|
||||
10000{
|
||||
other{"00 K"}
|
||||
}
|
||||
100000{
|
||||
other{"000 K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 G"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 G"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 G"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"×10^"}
|
||||
|
|
|
@ -26,6 +26,46 @@ lv{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 K"}
|
||||
}
|
||||
10000{
|
||||
other{"00 K"}
|
||||
}
|
||||
100000{
|
||||
other{"000 K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 G"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 G"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 G"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -33,6 +33,46 @@ ml{
|
|||
percentFormat{"#,##,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -32,6 +32,46 @@ mr{
|
|||
decimalFormat{"#,##,##0.###"}
|
||||
percentFormat{"#,##,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
exponential{"पू"}
|
||||
nan{"नान"}
|
||||
|
|
|
@ -27,6 +27,46 @@ ms{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00;(¤#,##0.00)"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.65.46"}
|
||||
|
|
|
@ -25,6 +25,46 @@ nb{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mill"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mill"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mill"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mrd"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mrd"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mrd"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bill"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bill"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bill"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -29,6 +29,46 @@ nl{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mln"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mln"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mln"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mld"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mld"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mld"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bilj"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bilj"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bilj"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ pl{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00 tys'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 tys'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mln"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mln"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mln"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mld"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mld"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mld"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bln"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bln"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bln"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -28,6 +28,46 @@ pt{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 mil"}
|
||||
}
|
||||
10000{
|
||||
other{"00 mil"}
|
||||
}
|
||||
100000{
|
||||
other{"000 mil"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mi"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mi"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mi"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 bi"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 bi"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 bi"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 tri"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 tri"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 tri"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -13,6 +13,46 @@ pt_PT{
|
|||
patterns{
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 Mi"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 Mi"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 Mi"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 MM"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 MM"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 MM"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 Bi"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 Bi"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 Bi"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
group{" "}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# * Copyright (C) 1998-2012, International Business Machines
|
||||
# * Corporation and others. All Rights Reserved.
|
||||
GENRB_CLDR_VERSION = 21.0.1
|
||||
GENRB_CLDR_VERSION = 22.0
|
||||
# A list of txt's to build
|
||||
# Note:
|
||||
#
|
||||
|
|
|
@ -25,6 +25,46 @@ ro{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 mii"}
|
||||
}
|
||||
10000{
|
||||
other{"00 mii"}
|
||||
}
|
||||
100000{
|
||||
other{"000 mii"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mil'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mil'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mil'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mld'.'"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mld'.'"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mld'.'"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bln'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bln'.'"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bln'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -55,6 +55,46 @@ root{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0G"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00G"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000G"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -26,6 +26,46 @@ ru{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 тыс'.'"}
|
||||
}
|
||||
10000{
|
||||
other{"00 тыс'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 тыс'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 млн"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 млн"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 млн"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 млрд"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 млрд"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 млрд"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 трлн"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 трлн"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 трлн"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ sk{
|
|||
currencyFormat{"#,##0.00 ¤"}
|
||||
percentFormat{"#,##0 %"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 tis'.'"}
|
||||
}
|
||||
10000{
|
||||
other{"00 tis'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 tis'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mil'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mil'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mil'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mld'.'"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mld'.'"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mld'.'"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bil'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bil'.'"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bil'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{" "}
|
||||
|
|
|
@ -28,6 +28,46 @@ sl{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 tis'.'"}
|
||||
}
|
||||
10000{
|
||||
other{"00 tis'.'"}
|
||||
}
|
||||
100000{
|
||||
other{"000 tis'.'"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mio'.'"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mio'.'"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mio'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mrd'.'"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mrd'.'"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mrd'.'"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 bil'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 bil'.'"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 bil'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"e"}
|
||||
|
|
|
@ -25,6 +25,46 @@ sr{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00 хиљ"}
|
||||
}
|
||||
100000{
|
||||
other{"000 хиљ"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 мил"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 мил"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 мил"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 млрд"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 млрд"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 млрд"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 бил"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 бил"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 бил"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -26,6 +26,46 @@ sv{
|
|||
percentFormat{"#,##0 %"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00000"}
|
||||
}
|
||||
100000{
|
||||
other{"000000"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 mjn"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 mjn"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 mjn"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 mjd"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 mjd"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 mjd"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 trl"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 trl"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 trl"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"×10^"}
|
||||
|
|
|
@ -21,6 +21,46 @@ sw{
|
|||
patterns{
|
||||
currencyFormat{"#,##0.00 ¤"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"elfu 0.0"}
|
||||
}
|
||||
10000{
|
||||
other{"elfu 00"}
|
||||
}
|
||||
100000{
|
||||
other{"laki0.0"}
|
||||
}
|
||||
1000000{
|
||||
other{"M0.0"}
|
||||
}
|
||||
10000000{
|
||||
other{"M00"}
|
||||
}
|
||||
100000000{
|
||||
other{"M000"}
|
||||
}
|
||||
1000000000{
|
||||
other{"B0.0"}
|
||||
}
|
||||
10000000000{
|
||||
other{"B00"}
|
||||
}
|
||||
100000000000{
|
||||
other{"B000"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"T0.0"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"T00"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"T000"}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Version{"2.0.65.46"}
|
||||
|
|
|
@ -30,6 +30,46 @@ ta{
|
|||
decimalFormat{"#,##,##0.###"}
|
||||
percentFormat{"#,##,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
group{","}
|
||||
|
|
|
@ -31,6 +31,46 @@ te{
|
|||
decimalFormat{"#,##,##0.###"}
|
||||
percentFormat{"#,##,##0%"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
exponential{"తూ"}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,46 @@ th{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 พัน"}
|
||||
}
|
||||
10000{
|
||||
other{"0.0หมื่น"}
|
||||
}
|
||||
100000{
|
||||
other{"0.0แสน"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 ล้าน"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 ล้าน"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 ล'.'"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 พ'.'ล'.'"}
|
||||
}
|
||||
10000000000{
|
||||
other{"0.0 ม'.'ล'.'"}
|
||||
}
|
||||
100000000000{
|
||||
other{"0.0 ส'.'ล'.'"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 ล'.'ล'.'"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 ล'.'ล"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 ล'.'ล'.'"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -26,6 +26,46 @@ tr{
|
|||
percentFormat{"%#,##0"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"00 B"}
|
||||
}
|
||||
100000{
|
||||
other{"000 B"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 Mn"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 Mn"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 Mn"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 Mr"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 Mr"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 Mr"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -25,6 +25,46 @@ uk{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 тис"}
|
||||
}
|
||||
10000{
|
||||
other{"00 тис"}
|
||||
}
|
||||
100000{
|
||||
other{"000 тис"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 млн"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 млн"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 млн"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 млрд"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 млрд"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 млрд"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 трлн"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 трлн"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 трлн"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"Е"}
|
||||
|
|
|
@ -27,6 +27,46 @@ ur{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0K"}
|
||||
}
|
||||
10000{
|
||||
other{"00K"}
|
||||
}
|
||||
100000{
|
||||
other{"000K"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0M"}
|
||||
}
|
||||
10000000{
|
||||
other{"00M"}
|
||||
}
|
||||
100000000{
|
||||
other{"000M"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0T"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00T"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000T"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -29,6 +29,46 @@ vi{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0.0 N"}
|
||||
}
|
||||
10000{
|
||||
other{"00 N"}
|
||||
}
|
||||
100000{
|
||||
other{"000 N"}
|
||||
}
|
||||
1000000{
|
||||
other{"0.0 Tr"}
|
||||
}
|
||||
10000000{
|
||||
other{"00 Tr"}
|
||||
}
|
||||
100000000{
|
||||
other{"000 Tr"}
|
||||
}
|
||||
1000000000{
|
||||
other{"0.0 Tỷ"}
|
||||
}
|
||||
10000000000{
|
||||
other{"00 Tỷ"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000 Tỷ"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0 NT"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00 NT"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000 NT"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
exponential{"E"}
|
||||
|
|
|
@ -82,6 +82,46 @@ zh{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"0.0万"}
|
||||
}
|
||||
100000{
|
||||
other{"00万"}
|
||||
}
|
||||
1000000{
|
||||
other{"000万"}
|
||||
}
|
||||
10000000{
|
||||
other{"0000万"}
|
||||
}
|
||||
100000000{
|
||||
other{"0.0亿"}
|
||||
}
|
||||
1000000000{
|
||||
other{"00亿"}
|
||||
}
|
||||
10000000000{
|
||||
other{"000亿"}
|
||||
}
|
||||
100000000000{
|
||||
other{"0000亿"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0兆"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00兆"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000兆"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{"."}
|
||||
group{","}
|
||||
|
|
|
@ -81,6 +81,46 @@ zh_Hant{
|
|||
patterns{
|
||||
currencyFormat{"¤#,##0.00"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{"0000"}
|
||||
}
|
||||
10000{
|
||||
other{"0.0萬"}
|
||||
}
|
||||
100000{
|
||||
other{"00萬"}
|
||||
}
|
||||
1000000{
|
||||
other{"000萬"}
|
||||
}
|
||||
10000000{
|
||||
other{"0000萬"}
|
||||
}
|
||||
100000000{
|
||||
other{"0.0億"}
|
||||
}
|
||||
1000000000{
|
||||
other{"00億"}
|
||||
}
|
||||
10000000000{
|
||||
other{"000億"}
|
||||
}
|
||||
100000000000{
|
||||
other{"0000億"}
|
||||
}
|
||||
1000000000000{
|
||||
other{"0.0兆"}
|
||||
}
|
||||
10000000000000{
|
||||
other{"00兆"}
|
||||
}
|
||||
100000000000000{
|
||||
other{"000兆"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
nan{"非數值"}
|
||||
}
|
||||
|
|
|
@ -32,6 +32,19 @@ zu{
|
|||
percentFormat{"#,##0%"}
|
||||
scientificFormat{"#E0"}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000000000{
|
||||
other{"0.0B"}
|
||||
}
|
||||
10000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
100000000000{
|
||||
other{"000B"}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{","}
|
||||
group{" "}
|
||||
|
|
80
icu4c/source/test/testdata/structLocale.txt
vendored
80
icu4c/source/test/testdata/structLocale.txt
vendored
|
@ -4465,6 +4465,46 @@ structLocale:table(nofallback){
|
|||
percentFormat{""}
|
||||
scientificFormat{""}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{""}
|
||||
}
|
||||
10000{
|
||||
other{""}
|
||||
}
|
||||
100000{
|
||||
other{""}
|
||||
}
|
||||
1000000{
|
||||
other{""}
|
||||
}
|
||||
10000000{
|
||||
other{""}
|
||||
}
|
||||
100000000{
|
||||
other{""}
|
||||
}
|
||||
1000000000{
|
||||
other{""}
|
||||
}
|
||||
10000000000{
|
||||
other{""}
|
||||
}
|
||||
100000000000{
|
||||
other{""}
|
||||
}
|
||||
1000000000000{
|
||||
other{""}
|
||||
}
|
||||
10000000000000{
|
||||
other{""}
|
||||
}
|
||||
100000000000000{
|
||||
other{""}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{""}
|
||||
exponential{""}
|
||||
|
@ -4807,6 +4847,46 @@ structLocale:table(nofallback){
|
|||
percentFormat{""}
|
||||
scientificFormat{""}
|
||||
}
|
||||
patternsShort{
|
||||
decimalFormat{
|
||||
1000{
|
||||
other{""}
|
||||
}
|
||||
10000{
|
||||
other{""}
|
||||
}
|
||||
100000{
|
||||
other{""}
|
||||
}
|
||||
1000000{
|
||||
other{""}
|
||||
}
|
||||
10000000{
|
||||
other{""}
|
||||
}
|
||||
100000000{
|
||||
other{""}
|
||||
}
|
||||
1000000000{
|
||||
other{""}
|
||||
}
|
||||
10000000000{
|
||||
other{""}
|
||||
}
|
||||
100000000000{
|
||||
other{""}
|
||||
}
|
||||
1000000000000{
|
||||
other{""}
|
||||
}
|
||||
10000000000000{
|
||||
other{""}
|
||||
}
|
||||
100000000000000{
|
||||
other{""}
|
||||
}
|
||||
}
|
||||
}
|
||||
symbols{
|
||||
decimal{""}
|
||||
exponential{""}
|
||||
|
|
Loading…
Add table
Reference in a new issue