]> granicus.if.org Git - icu/commitdiff
ICU-8471 Add compact decimal formats from CLDR.
authorJennifer Chye <jchye@users.noreply.github.com>
Fri, 3 Aug 2012 21:05:03 +0000 (21:05 +0000)
committerJennifer Chye <jchye@users.noreply.github.com>
Fri, 3 Aug 2012 21:05:03 +0000 (21:05 +0000)
X-SVN-Rev: 32096

65 files changed:
icu4c/source/data/cldr-icu-readme.txt
icu4c/source/data/locales/af.txt
icu4c/source/data/locales/am.txt
icu4c/source/data/locales/ar.txt
icu4c/source/data/locales/bg.txt
icu4c/source/data/locales/bn.txt
icu4c/source/data/locales/ca.txt
icu4c/source/data/locales/cs.txt
icu4c/source/data/locales/da.txt
icu4c/source/data/locales/de.txt
icu4c/source/data/locales/ee.txt
icu4c/source/data/locales/el.txt
icu4c/source/data/locales/en.txt
icu4c/source/data/locales/es.txt
icu4c/source/data/locales/es_419.txt
icu4c/source/data/locales/et.txt
icu4c/source/data/locales/eu.txt
icu4c/source/data/locales/fa.txt
icu4c/source/data/locales/fi.txt
icu4c/source/data/locales/fil.txt
icu4c/source/data/locales/fr.txt
icu4c/source/data/locales/fr_CA.txt
icu4c/source/data/locales/gl.txt
icu4c/source/data/locales/gu.txt
icu4c/source/data/locales/he.txt
icu4c/source/data/locales/hi.txt
icu4c/source/data/locales/hr.txt
icu4c/source/data/locales/hu.txt
icu4c/source/data/locales/id.txt
icu4c/source/data/locales/is.txt
icu4c/source/data/locales/it.txt
icu4c/source/data/locales/ja.txt
icu4c/source/data/locales/kk.txt
icu4c/source/data/locales/kn.txt
icu4c/source/data/locales/ko.txt
icu4c/source/data/locales/lt.txt
icu4c/source/data/locales/lv.txt
icu4c/source/data/locales/ml.txt
icu4c/source/data/locales/mr.txt
icu4c/source/data/locales/ms.txt
icu4c/source/data/locales/nb.txt
icu4c/source/data/locales/nl.txt
icu4c/source/data/locales/pl.txt
icu4c/source/data/locales/pt.txt
icu4c/source/data/locales/pt_PT.txt
icu4c/source/data/locales/resfiles.mk
icu4c/source/data/locales/ro.txt
icu4c/source/data/locales/root.txt
icu4c/source/data/locales/ru.txt
icu4c/source/data/locales/sk.txt
icu4c/source/data/locales/sl.txt
icu4c/source/data/locales/sr.txt
icu4c/source/data/locales/sv.txt
icu4c/source/data/locales/sw.txt
icu4c/source/data/locales/ta.txt
icu4c/source/data/locales/te.txt
icu4c/source/data/locales/th.txt
icu4c/source/data/locales/tr.txt
icu4c/source/data/locales/uk.txt
icu4c/source/data/locales/ur.txt
icu4c/source/data/locales/vi.txt
icu4c/source/data/locales/zh.txt
icu4c/source/data/locales/zh_Hant.txt
icu4c/source/data/locales/zu.txt
icu4c/source/test/testdata/structLocale.txt

index 1fdcfdf71b82c87913b39aaa14bba5a2d5531ae7..3b5ab5ffae921e2a98e5a9d0e23d318711237b31 100644 (file)
@@ -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:
index e0836a509dcb1e8b55937f8cb52d837c87932f7b..d6cec0b55349eb49e905c96562c03dcfb471c223 100644 (file)
@@ -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"}
index 2a8f49299ab0f8e86c75d9efaa577d150cfb130b..300e0a43dc2798c71935e0dbd3eb6a9360540c21 100644 (file)
@@ -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"}
index 867fad4bf45909b83e7c74f9a19acd237a9b6c38..c18fe11dc08951f1729696b6a76dc98cb874afae 100644 (file)
@@ -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"}
index 8d2def8d92676673fae9a42d8d939dca7b42b155..ef9c4671a848eb9eee6ca20472fd572ad91f9e1e 100644 (file)
@@ -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{" "}
index 71fca08048fe8de3d68eb3b0e304f93df946a28c..304e21482a5b50140b124d867263f1fd0d58fa34 100644 (file)
@@ -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"}
index ba3445e6b3581f5c67ba54d6a629758f460cada3..e01be6959048537bffbb886a1c7c4ce26712d719 100644 (file)
@@ -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"}
index fde0f9c7a5f067ce1a4e44b983e4230c2cb92385..fc2eda927b1fbb96ea1097777609e4d444e7f470 100644 (file)
@@ -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"}
index 99591d7e0c831755714613172b8d2c235c8f2f40..fd8b78b20c6f9f2ddba342d9e94a8a39f17aefd8 100644 (file)
@@ -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"}
index 51dd347171306c1e47ef87692a7a42ec43206901..7dd08e1efb4bb5de3e5e808a914c033c5bd83cd3 100644 (file)
@@ -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"}
index d16d5d520f3a81bb62a141a7e05914de439da2e9..a7bb7def48dbdc64ceeb02a31a7956bb2edd7a83 100755 (executable)
@@ -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"}
             }
index 86e00c56cc10d6feb11aea27d52477fa5e801060..c5741421bf2c1de00f653fdab41e68939b6ccc05 100644 (file)
@@ -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"}
index 919166ff9975d9390cb890f9dbf93351d49fc923..1990f817d39b97aec6b532d38b9103c8d419c8be 100644 (file)
@@ -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"}
index 57d8517e121b35dff515a519b02ba4d38199fb0e..d8ff54b5d634ab04ec182a5876fbcb5961bd8d89 100644 (file)
@@ -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"}
index 101256b12556fc83740a6aaed51650a7ebd2db8f..18e753051a65de17cc68e4cec0da7934663f165a 100644 (file)
@@ -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{","}
index 860e9a37558bd24f5639a3c732aff0ff369bacae..b8778b79a15a90c0d6364e1d3e35a8677ee26507 100644 (file)
@@ -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"}
index 519f8a38bc713b4dd3f3a57547e56a4076c9ae7f..5f1dae2649548b442d86d26631a6356476b63453 100644 (file)
@@ -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"}
index fdd89d3c579c04466d6174012bc87a2313412ef4..26817caff53127170f2723dbf237c6ed3ddf0290 100644 (file)
@@ -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"}
index e4a49a182607827b07926d7fce3a1aacedb7104b..5523f44d519214ba5ffec6d3e43e6f6357f5ab95 100644 (file)
@@ -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"}
index 4d4bc4c0bb07ff5d5c29805aedac0160f2531aaa..2634cc80557fd795372bf3d96e5e32a8728eeb72 100755 (executable)
@@ -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"}
index 68ebee74400c4cebec550aad7d7dfe6e5701cf1c..5db7dbf8fd3c93377e1bbd473f52a8a5a80ba2ad 100644 (file)
@@ -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"}
index 4037797234530e039c1f877274b08b3c8819679b..8bc957b22a25aa0a5e11d3de5e640b6f549f6233 100644 (file)
@@ -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{
index b0f6247a8f264ea9ff26d005b9becd345b2b1c19..a4e5686b5dd4fcf1306b0e1d8662e34273e99fb7 100644 (file)
@@ -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"}
index 559d8494685c22eb6847ae360912d8c295300e19..353d32d6a66af2a2a9aeb86e805539608b631fcc 100644 (file)
@@ -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{"સંખ્યા નથીં"}
index 186615091797a47b232549df7b4904b7f50fadee..69eb487c942168fd30c42bb5bc648024775c70ef 100644 (file)
@@ -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"}
index 0268be5f14cdb2c74f55cf0ba74399b96d69f183..fad2789bdd96a56a2a2cbe2c67705b546e8b3c41 100644 (file)
@@ -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"}
index d4d06d8fc3efb1193ab1ed50f426ab9241f8b149..51e5b247bfcf02f9dab283fe9d72e22f8638f22f 100644 (file)
@@ -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{"."}
index 184811a771dae90c3817561676ecd0b70cbb9905..27fbb521b0d6bdee5b7ddb2456b1aa323dcbb05a 100644 (file)
@@ -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"}
index 19686d6feb419c4b36814e8cc0621e411d9f7509..6e5c676b4606202cdf120180db470d9da807ba71 100644 (file)
@@ -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{"."}
index 2b00e573bbd4f5f4ae319219b7cc25b81cdf41d3..418165b26ad3fd4b4a0d662de10a26b41b4d402b 100644 (file)
@@ -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^"}
index bebfff9db3eafbe6dc4bc79d936f781cd8907960..eed3479b34674c84d03b4ea369bde4f8c5eb7986 100644 (file)
@@ -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{"."}
index af482c50b0875051757396f2b69f0d1040f87768..4ac45036f13998123bee18c02a3cc1a274d697f6 100644 (file)
@@ -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{","}
index 0c33ae5f6b7ae1edc66a8663fe021d3647b548de..6b4cf00c72141d59bc56edb1dd666e94106ba81d 100644 (file)
@@ -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{" "}
index 9c83d36470231ebe2d2dccd6ceb500a19acb0cc0..c75ff42d1e16d30904bfd50bcdf4c2d896d9fd6c 100644 (file)
@@ -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{"ಸಂಖ್ಯೆಯಲ್ಲ"}
index d3a69a10de913c5a8377a61fd18b310824536515..fa1cc922e812b11ebbd02e74fcea7711985164c0 100644 (file)
@@ -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"}
index 5de72ce88d1d65cdc044497e79200fed1b77d0fd..ce9b662c20db8c46d390576ae2fa5a5695d50fa7 100644 (file)
@@ -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^"}
index 75e558af415f553dc8ca54b309405688c70fd495..2e7e493033c48feb56dda014c3a9fdeffd1dd8ac 100644 (file)
@@ -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"}
index 67511f7bf426306f828fb49b5563f750abe2f999..b4495934bd4f2cf3db5ea99c496b63770ff898b1 100644 (file)
@@ -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"}
index 301cf4f10fc6c848b1722b2a8e78e2cef3cb3c73..2aee93695440fa6d6ee0f5006e80cfbf76d12ef2 100644 (file)
@@ -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{"नान"}
index b5411e7bc5b3fd5add3ad22dddd9468d6ce0bfc4..79a9b9a57a31823ad972c7dd5e66ca79556031be 100644 (file)
@@ -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"}
index cc9146a9d5ed12ab7d74b941fb59806f237a08f9..e7f120043ff18ee7cf068836688a1e3e0e0360f9 100644 (file)
@@ -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"}
index 42d5315690371ef7b6323019c3797c1f5c25e20b..2d732a464082e07f42a4e8e032eaf1ef64a36035 100644 (file)
@@ -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"}
index 298cbe1202ac3d7bf0fb354b24f996c31e9b2671..06c190bdd4e2d4ae529d1b463ed03802eff46e2a 100644 (file)
@@ -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"}
index fb0b616530f7c8001297cec135f06028677fffb1..519c33167a5bb5466450063620aeb7d014e6ea48 100644 (file)
@@ -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"}
index 2399de05c21002cf13311b5ad0ae7c4f7b0bc326..e5ce4ac098c246988c3b9741b6a6beb5253f3b87 100644 (file)
@@ -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{" "}
             }
index 35984b8bb41a6174e15daa70613e23a9a9071bee..7677d190fafab399aa294770e45eafed31d47a5d 100644 (file)
@@ -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:
 #
index e5d576ecca75f5573126ad3a8b28e9cd0cd18706..9320898db44529731bec04b56eef673d2c3d6ca8 100644 (file)
@@ -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"}
index cc7ece01efe549bfa2c38feefecfb91fba1a4c79..bbd558c02827e64df86d6a76782defa1c068c55c 100644 (file)
@@ -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"}
index 0ba00a92e63d56df897263af85069078d17d7c35..6628d0350b91bc57edf8b980685a072da87397a1 100644 (file)
@@ -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"}
index 0051242db4b99731b5897e2045b468ac6fc57d6e..691d463932c2c895789678066370f47e3a50a7db 100644 (file)
@@ -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{" "}
index 4c051361f7ae42a67a72d1b48b8310d6ee752a96..382361b12344a433f9eff6ccdfb55b80f5918fc8 100644 (file)
@@ -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"}
index 3131f857889a00f955a67fe89527ec2ef7f47c68..f6005fb62a9ca30f0207cd4e77cbe9e8638470f7 100644 (file)
@@ -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"}
index 5a8cc4a19772c262201012e0d7245c0f49920815..5f6bfe49207c422473ebb622226b012e13889a6a 100644 (file)
@@ -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^"}
index c698fb5f4041a363a768daef96735bc2299d67fe..7502a1fed1bedfd759493a53d98e59becab54781 100644 (file)
@@ -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"}
index 843d6ebc0a9a87ef8c3f800f8a6f46468952c8e1..d0460bfe324f9c640644c84f144d8dc0403a39f6 100644 (file)
@@ -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{","}
index 61450d2bad27f452c3d4734cbc7d26b623b3385b..3b51f3064c99739de9e8513bdf3934e958d3438c 100644 (file)
@@ -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{"తూ"}
             }
index 33a0327a65a69ff2f54d13f53ba4af8446ccd8a2..4ea4f7476067f39222b89655ab15d0ec9fe8e01a 100644 (file)
@@ -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"}
index afaff1612521985baf08387b21de0f3e93b3f22c..821a3f275d22950f82fd5a16135e18cb2d03b31b 100644 (file)
@@ -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"}
index a4e0e2cfe942452d70b0999f7dff776b32e2f9f1..a41d2290903ad26dea907612e213d3af21f3af71 100644 (file)
@@ -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{"Е"}
index 5f7b5d1d901bf5aa12fb80ce276c1bab2f68bcd4..de2437da5db0b001169ad90544acfe1dab49ae43 100644 (file)
@@ -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"}
index 05f9d32b8261ca68f29acee8067127cbfdf7cf9f..a6f32e3909ec0134d625a78ef1fbf676e8bb1dc5 100644 (file)
@@ -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"}
index ed2b0439118dea5d77974f12ee9956046935a1db..52e7adae98c2e9f78c8af934f47ce08ceba4f1a9 100644 (file)
@@ -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{","}
index 3aadb48ed2996618b4a33f87a807cccfc5541322..c9d38c6a7f251908ae600770d2ad53b599cd57a5 100644 (file)
@@ -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{"非數值"}
             }
index ce8b2fb4dc7b4ee5238aa44971a02d9e78730cfc..6cfb3178f21ffb32f26ead71ddb387e71aeece51 100644 (file)
@@ -32,6 +32,19 @@ zu{
                 percentFormat{"#,##0%"}
                 scientificFormat{"#E0"}
             }
+            patternsShort{
+                decimalFormat{
+                    1000000000{
+                        other{"0.0B"}
+                    }
+                    10000000000{
+                        other{"000B"}
+                    }
+                    100000000000{
+                        other{"000B"}
+                    }
+                }
+            }
             symbols{
                 decimal{","}
                 group{" "}
index 98a6e267218e8850cf15e90001e6fbf95755755b..f46472f7fd9e4f1061b83b540045115e62e23c7e 100644 (file)
@@ -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{""}