twitter_cldr 5.2.0 → 5.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -4
- data/Rakefile +19 -8
- data/lib/twitter_cldr/normalization.rb +18 -5
- data/lib/twitter_cldr/resources.rb +3 -1
- data/lib/twitter_cldr/resources/import_resolver.rb +11 -3
- data/lib/twitter_cldr/resources/loader.rb +22 -1
- data/lib/twitter_cldr/resources/locales_resources_importer.rb +0 -9
- data/lib/twitter_cldr/resources/postal_codes_importer.rb +19 -23
- data/lib/twitter_cldr/resources/segment_dictionaries_importer.rb +75 -0
- data/lib/twitter_cldr/resources/segment_tests_importer.rb +130 -13
- data/lib/twitter_cldr/segmentation.rb +25 -10
- data/lib/twitter_cldr/segmentation/brahmic_break_engine.rb +200 -0
- data/lib/twitter_cldr/segmentation/break_iterator.rb +22 -22
- data/lib/twitter_cldr/segmentation/burmese_break_engine.rb +83 -0
- data/lib/twitter_cldr/segmentation/category_table.rb +5 -1
- data/lib/twitter_cldr/segmentation/cj_break_engine.rb +163 -0
- data/lib/twitter_cldr/segmentation/cursor.rb +1 -1
- data/lib/twitter_cldr/segmentation/dictionary.rb +84 -0
- data/lib/twitter_cldr/segmentation/dictionary_break_engine.rb +34 -0
- data/lib/twitter_cldr/segmentation/khmer_break_engine.rb +83 -0
- data/lib/twitter_cldr/segmentation/korean_break_engine.rb +30 -0
- data/lib/twitter_cldr/segmentation/lao_break_engine.rb +85 -0
- data/lib/twitter_cldr/segmentation/line_iterator.rb +23 -0
- data/lib/twitter_cldr/segmentation/possible_word.rb +74 -0
- data/lib/twitter_cldr/segmentation/possible_word_list.rb +23 -0
- data/lib/twitter_cldr/segmentation/rule_set.rb +3 -12
- data/lib/twitter_cldr/segmentation/segment_iterator.rb +40 -0
- data/lib/twitter_cldr/segmentation/state_machine.rb +2 -8
- data/lib/twitter_cldr/segmentation/thai_break_engine.rb +141 -0
- data/lib/twitter_cldr/segmentation/unhandled_break_engine.rb +21 -0
- data/lib/twitter_cldr/segmentation/word_iterator.rb +170 -0
- data/lib/twitter_cldr/shared.rb +1 -0
- data/lib/twitter_cldr/shared/caser.rb +3 -3
- data/lib/twitter_cldr/shared/unicode_set.rb +77 -0
- data/lib/twitter_cldr/utils/range_set.rb +10 -1
- data/lib/twitter_cldr/version.rb +1 -1
- data/resources/collation/tailoring/km.yml +82 -0
- data/resources/collation/tailoring/lo.yml +4 -0
- data/resources/collation/tailoring/my.yml +940 -0
- data/resources/collation/tries/km.dump +0 -0
- data/resources/collation/tries/lo.dump +0 -0
- data/resources/collation/tries/my.dump +0 -0
- data/resources/locales/km/calendars.yml +373 -0
- data/resources/locales/km/currencies.yml +654 -0
- data/resources/locales/km/day_periods.yml +96 -0
- data/resources/locales/km/fields.yml +495 -0
- data/resources/locales/km/languages.yml +397 -0
- data/resources/locales/km/layout.yml +5 -0
- data/resources/locales/km/lists.yml +37 -0
- data/resources/locales/km/numbers.yml +402 -0
- data/resources/locales/km/plural_rules.yml +6 -0
- data/resources/locales/km/plurals.yml +12 -0
- data/resources/locales/km/rbnf.yml +131 -0
- data/resources/locales/km/territories.yml +267 -0
- data/resources/locales/km/timezones.yml +1471 -0
- data/resources/locales/km/units.yml +721 -0
- data/resources/locales/lo/calendars.yml +368 -0
- data/resources/locales/lo/currencies.yml +918 -0
- data/resources/locales/lo/day_periods.yml +96 -0
- data/resources/locales/lo/fields.yml +437 -0
- data/resources/locales/lo/languages.yml +529 -0
- data/resources/locales/lo/layout.yml +5 -0
- data/resources/locales/lo/lists.yml +42 -0
- data/resources/locales/lo/numbers.yml +476 -0
- data/resources/locales/lo/plural_rules.yml +7 -0
- data/resources/locales/lo/plurals.yml +14 -0
- data/resources/locales/lo/rbnf.yml +119 -0
- data/resources/locales/lo/territories.yml +265 -0
- data/resources/locales/lo/timezones.yml +1513 -0
- data/resources/locales/lo/units.yml +750 -0
- data/resources/locales/my/calendars.yml +374 -0
- data/resources/locales/my/currencies.yml +697 -0
- data/resources/locales/my/day_periods.yml +96 -0
- data/resources/locales/my/fields.yml +459 -0
- data/resources/locales/my/languages.yml +420 -0
- data/resources/locales/my/layout.yml +5 -0
- data/resources/locales/my/lists.yml +43 -0
- data/resources/locales/my/numbers.yml +417 -0
- data/resources/locales/my/plural_rules.yml +6 -0
- data/resources/locales/my/plurals.yml +12 -0
- data/resources/locales/my/rbnf.yml +145 -0
- data/resources/locales/my/territories.yml +265 -0
- data/resources/locales/my/timezones.yml +1479 -0
- data/resources/locales/my/units.yml +759 -0
- data/resources/locales/th/plurals.yml +1 -1
- data/resources/shared/segments/dictionaries/burmesedict.dump +0 -0
- data/resources/shared/segments/dictionaries/cjdict.dump +0 -0
- data/resources/shared/segments/dictionaries/khmerdict.dump +0 -0
- data/resources/shared/segments/dictionaries/laodict.dump +0 -0
- data/resources/shared/segments/dictionaries/thaidict.dump +0 -0
- data/resources/shared/segments/tests/dictionary_tests/combined.yml +1253 -0
- data/resources/shared/segments/tests/dictionary_tests/km.yml +204 -0
- data/resources/shared/segments/tests/dictionary_tests/ko.yml +171 -0
- data/resources/shared/segments/tests/dictionary_tests/lo.yml +236 -0
- data/resources/shared/segments/tests/dictionary_tests/my.yml +249 -0
- data/resources/shared/segments/tests/dictionary_tests/th.yml +201 -0
- data/resources/shared/segments/tests/dictionary_tests/zh.yml +206 -0
- data/resources/shared/segments/tests/line_break_test.yml +68 -68
- data/resources/shared/segments/tests/sentence_break_test.yml +52 -52
- data/resources/supported_locales.yml +3 -0
- data/spec/formatters/numbers/rbnf/locales/km/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/lo/rbnf_test.yml +706 -0
- data/spec/formatters/numbers/rbnf/locales/my/rbnf_test.yml +706 -0
- data/spec/segmentation/dictionary_break_spec.rb +42 -0
- data/spec/segmentation/rule_set_spec.rb +3 -1
- data/spec/timezones/tests/km.yml +12475 -0
- data/spec/timezones/tests/lo.yml +12475 -0
- data/spec/timezones/tests/my.yml +12475 -0
- metadata +87 -3
@@ -0,0 +1,42 @@
|
|
1
|
+
---
|
2
|
+
:lo:
|
3
|
+
:lists:
|
4
|
+
:default:
|
5
|
+
? !ruby/symbol "2"
|
6
|
+
: "{0} ແລະ {1}"
|
7
|
+
:end: "{0}, {1}"
|
8
|
+
:middle: "{0}, {1}"
|
9
|
+
:start: "{0}, {1}"
|
10
|
+
:or:
|
11
|
+
? !ruby/symbol "2"
|
12
|
+
: "{0} ຫຼື {1}"
|
13
|
+
:end: "{0} ຫຼື {1}"
|
14
|
+
:middle: "{0}, {1}"
|
15
|
+
:start: "{0}, {1}"
|
16
|
+
:or-narrow: {}
|
17
|
+
:or-short: {}
|
18
|
+
:standard-narrow: {}
|
19
|
+
:standard-short:
|
20
|
+
? !ruby/symbol "2"
|
21
|
+
: "{0} ແລະ {1}"
|
22
|
+
:end: "{0}, {1}"
|
23
|
+
:middle: "{0}, {1}"
|
24
|
+
:start: "{0}, {1}"
|
25
|
+
:unit:
|
26
|
+
? !ruby/symbol "2"
|
27
|
+
: "{0}, {1}"
|
28
|
+
:end: "{0}, {1}"
|
29
|
+
:middle: "{0}, {1}"
|
30
|
+
:start: "{0}, {1}"
|
31
|
+
:unit-narrow:
|
32
|
+
? !ruby/symbol "2"
|
33
|
+
: "{0} {1}"
|
34
|
+
:end: "{0} {1}"
|
35
|
+
:middle: "{0} {1}"
|
36
|
+
:start: "{0} {1}"
|
37
|
+
:unit-short:
|
38
|
+
? !ruby/symbol "2"
|
39
|
+
: "{0}, {1}"
|
40
|
+
:end: "{0}, {1}"
|
41
|
+
:middle: "{0}, {1}"
|
42
|
+
:start: "{0}, {1}"
|
@@ -0,0 +1,476 @@
|
|
1
|
+
---
|
2
|
+
:lo:
|
3
|
+
:numbers:
|
4
|
+
:default_number_systems:
|
5
|
+
:alternatives: {}
|
6
|
+
:default: latn
|
7
|
+
:formats:
|
8
|
+
:currency:
|
9
|
+
:adlm: :numbers.formats.currency.latn
|
10
|
+
:arab:
|
11
|
+
:default: "#,##0.00 ¤"
|
12
|
+
:arabext: :numbers.formats.currency.latn
|
13
|
+
:bali: :numbers.formats.currency.latn
|
14
|
+
:beng: :numbers.formats.currency.latn
|
15
|
+
:brah: :numbers.formats.currency.latn
|
16
|
+
:cakm: :numbers.formats.currency.latn
|
17
|
+
:cham: :numbers.formats.currency.latn
|
18
|
+
:default: :numbers.formats.currency.latn
|
19
|
+
:deva: :numbers.formats.currency.latn
|
20
|
+
:fullwide: :numbers.formats.currency.latn
|
21
|
+
:gong: :numbers.formats.currency.latn
|
22
|
+
:gonm: :numbers.formats.currency.latn
|
23
|
+
:gujr: :numbers.formats.currency.latn
|
24
|
+
:guru: :numbers.formats.currency.latn
|
25
|
+
:hanidec: :numbers.formats.currency.latn
|
26
|
+
:java: :numbers.formats.currency.latn
|
27
|
+
:kali: :numbers.formats.currency.latn
|
28
|
+
:khmr: :numbers.formats.currency.latn
|
29
|
+
:knda: :numbers.formats.currency.latn
|
30
|
+
:lana: :numbers.formats.currency.latn
|
31
|
+
:lanatham: :numbers.formats.currency.latn
|
32
|
+
:laoo: :numbers.formats.currency.latn
|
33
|
+
:latn:
|
34
|
+
:default: "¤#,##0.00;¤-#,##0.00"
|
35
|
+
:short:
|
36
|
+
? !ruby/symbol "1000"
|
37
|
+
:
|
38
|
+
:other: ¤0 ພັນ
|
39
|
+
? !ruby/symbol "10000"
|
40
|
+
:
|
41
|
+
:other: ¤00 ພັນ
|
42
|
+
? !ruby/symbol "100000"
|
43
|
+
:
|
44
|
+
:other: ¤000 ກີບ
|
45
|
+
? !ruby/symbol "1000000"
|
46
|
+
:
|
47
|
+
:other: ¤0 ລ້ານ
|
48
|
+
? !ruby/symbol "10000000"
|
49
|
+
:
|
50
|
+
:other: ¤00 ລ້ານ
|
51
|
+
? !ruby/symbol "100000000"
|
52
|
+
:
|
53
|
+
:other: ¤000 ລ້ານ
|
54
|
+
? !ruby/symbol "1000000000"
|
55
|
+
:
|
56
|
+
:other: ¤0 ຕື້
|
57
|
+
? !ruby/symbol "10000000000"
|
58
|
+
:
|
59
|
+
:other: ¤00 ຕື້
|
60
|
+
? !ruby/symbol "100000000000"
|
61
|
+
:
|
62
|
+
:other: ¤000 ຕື້
|
63
|
+
? !ruby/symbol "1000000000000"
|
64
|
+
:
|
65
|
+
:other: ¤0 ລ້ານລ້ານ
|
66
|
+
? !ruby/symbol "10000000000000"
|
67
|
+
:
|
68
|
+
:other: ¤00 ລ້ານລ້ານ
|
69
|
+
? !ruby/symbol "100000000000000"
|
70
|
+
:
|
71
|
+
:other: ¤000 ລ້ານລ້ານ
|
72
|
+
:unit:
|
73
|
+
:other: "{0} {1}"
|
74
|
+
:lepc: :numbers.formats.currency.latn
|
75
|
+
:limb: :numbers.formats.currency.latn
|
76
|
+
:mlym: :numbers.formats.currency.latn
|
77
|
+
:mong: :numbers.formats.currency.latn
|
78
|
+
:mtei: :numbers.formats.currency.latn
|
79
|
+
:mymr: :numbers.formats.currency.latn
|
80
|
+
:mymrshan: :numbers.formats.currency.latn
|
81
|
+
:nkoo: :numbers.formats.currency.latn
|
82
|
+
:olck: :numbers.formats.currency.latn
|
83
|
+
:orya: :numbers.formats.currency.latn
|
84
|
+
:osma: :numbers.formats.currency.latn
|
85
|
+
:rohg: :numbers.formats.currency.latn
|
86
|
+
:saur: :numbers.formats.currency.latn
|
87
|
+
:shrd: :numbers.formats.currency.latn
|
88
|
+
:sora: :numbers.formats.currency.latn
|
89
|
+
:sund: :numbers.formats.currency.latn
|
90
|
+
:takr: :numbers.formats.currency.latn
|
91
|
+
:talu: :numbers.formats.currency.latn
|
92
|
+
:tamldec: :numbers.formats.currency.latn
|
93
|
+
:telu: :numbers.formats.currency.latn
|
94
|
+
:thai: :numbers.formats.currency.latn
|
95
|
+
:tibt: :numbers.formats.currency.latn
|
96
|
+
:vaii: :numbers.formats.currency.latn
|
97
|
+
:decimal:
|
98
|
+
:adlm: :numbers.formats.decimal.latn
|
99
|
+
:arab: :numbers.formats.decimal.latn
|
100
|
+
:arabext: :numbers.formats.decimal.latn
|
101
|
+
:bali: :numbers.formats.decimal.latn
|
102
|
+
:beng: :numbers.formats.decimal.latn
|
103
|
+
:brah: :numbers.formats.decimal.latn
|
104
|
+
:cakm: :numbers.formats.decimal.latn
|
105
|
+
:cham: :numbers.formats.decimal.latn
|
106
|
+
:default: :numbers.formats.decimal.latn
|
107
|
+
:deva: :numbers.formats.decimal.latn
|
108
|
+
:fullwide: :numbers.formats.decimal.latn
|
109
|
+
:gong: :numbers.formats.decimal.latn
|
110
|
+
:gonm: :numbers.formats.decimal.latn
|
111
|
+
:gujr: :numbers.formats.decimal.latn
|
112
|
+
:guru: :numbers.formats.decimal.latn
|
113
|
+
:hanidec: :numbers.formats.decimal.latn
|
114
|
+
:java: :numbers.formats.decimal.latn
|
115
|
+
:kali: :numbers.formats.decimal.latn
|
116
|
+
:khmr: :numbers.formats.decimal.latn
|
117
|
+
:knda: :numbers.formats.decimal.latn
|
118
|
+
:lana: :numbers.formats.decimal.latn
|
119
|
+
:lanatham: :numbers.formats.decimal.latn
|
120
|
+
:laoo:
|
121
|
+
:long:
|
122
|
+
? !ruby/symbol "1000"
|
123
|
+
:
|
124
|
+
:other: 0ພັນ
|
125
|
+
? !ruby/symbol "10000"
|
126
|
+
:
|
127
|
+
:other: 00ພັນ
|
128
|
+
? !ruby/symbol "100000"
|
129
|
+
:
|
130
|
+
:other: 000ພັນ
|
131
|
+
? !ruby/symbol "1000000"
|
132
|
+
:
|
133
|
+
:other: 0ລ້ານ
|
134
|
+
? !ruby/symbol "10000000"
|
135
|
+
:
|
136
|
+
:other: 00ລ້ານ
|
137
|
+
? !ruby/symbol "100000000"
|
138
|
+
:
|
139
|
+
:other: 000ລ້ານ
|
140
|
+
? !ruby/symbol "1000000000"
|
141
|
+
:
|
142
|
+
:other: 0ພັນລ້ານ
|
143
|
+
? !ruby/symbol "10000000000"
|
144
|
+
:
|
145
|
+
:other: 00ພັນລ້ານ
|
146
|
+
? !ruby/symbol "100000000000"
|
147
|
+
:
|
148
|
+
:other: 000ພັນລ້ານ
|
149
|
+
? !ruby/symbol "1000000000000"
|
150
|
+
:
|
151
|
+
:other: 0000ພັນລ້ານ
|
152
|
+
? !ruby/symbol "10000000000000"
|
153
|
+
:
|
154
|
+
:other: 00ລ້ານລ້ານ
|
155
|
+
? !ruby/symbol "100000000000000"
|
156
|
+
:
|
157
|
+
:other: 000ລ້ານລ້ານ
|
158
|
+
:short:
|
159
|
+
? !ruby/symbol "1000"
|
160
|
+
:
|
161
|
+
:other: 0ພັນ
|
162
|
+
? !ruby/symbol "10000"
|
163
|
+
:
|
164
|
+
:other: 00ພັນ
|
165
|
+
? !ruby/symbol "100000"
|
166
|
+
:
|
167
|
+
:other: 000ພັນ
|
168
|
+
? !ruby/symbol "1000000"
|
169
|
+
:
|
170
|
+
:other: 0ລ້ານ
|
171
|
+
? !ruby/symbol "10000000"
|
172
|
+
:
|
173
|
+
:other: 00ລ້ານ
|
174
|
+
? !ruby/symbol "100000000"
|
175
|
+
:
|
176
|
+
:other: 000ລ້ານ
|
177
|
+
? !ruby/symbol "1000000000"
|
178
|
+
:
|
179
|
+
:other: 0ຕື້
|
180
|
+
? !ruby/symbol "10000000000"
|
181
|
+
:
|
182
|
+
:other: 00ຕື້
|
183
|
+
? !ruby/symbol "100000000000"
|
184
|
+
:
|
185
|
+
:other: 000ຕື້
|
186
|
+
? !ruby/symbol "1000000000000"
|
187
|
+
:
|
188
|
+
:other: 0000ຕື້
|
189
|
+
? !ruby/symbol "10000000000000"
|
190
|
+
:
|
191
|
+
:other: 00ພັນຕື້
|
192
|
+
? !ruby/symbol "100000000000000"
|
193
|
+
:
|
194
|
+
:other: 000ພັນຕື້
|
195
|
+
:latn:
|
196
|
+
:default: "#,##0.###"
|
197
|
+
:long:
|
198
|
+
? !ruby/symbol "1000"
|
199
|
+
:
|
200
|
+
:other: "0 ພັນ"
|
201
|
+
? !ruby/symbol "10000"
|
202
|
+
:
|
203
|
+
:other: "00 ພັນ"
|
204
|
+
? !ruby/symbol "100000"
|
205
|
+
:
|
206
|
+
:other: "0 ແສນ"
|
207
|
+
? !ruby/symbol "1000000"
|
208
|
+
:
|
209
|
+
:other: "0 ລ້ານ"
|
210
|
+
? !ruby/symbol "10000000"
|
211
|
+
:
|
212
|
+
:other: "00 ລ້ານ"
|
213
|
+
? !ruby/symbol "100000000"
|
214
|
+
:
|
215
|
+
:other: "000 ລ້ານ"
|
216
|
+
? !ruby/symbol "1000000000"
|
217
|
+
:
|
218
|
+
:other: "0 ຕື້"
|
219
|
+
? !ruby/symbol "10000000000"
|
220
|
+
:
|
221
|
+
:other: "00 ຕື້"
|
222
|
+
? !ruby/symbol "100000000000"
|
223
|
+
:
|
224
|
+
:other: "000 ຕື້"
|
225
|
+
? !ruby/symbol "1000000000000"
|
226
|
+
:
|
227
|
+
:other: "0 ລ້ານລ້ານ"
|
228
|
+
? !ruby/symbol "10000000000000"
|
229
|
+
:
|
230
|
+
:other: "00 ລ້ານລ້ານ"
|
231
|
+
? !ruby/symbol "100000000000000"
|
232
|
+
:
|
233
|
+
:other: "000 ລ້ານລ້ານ"
|
234
|
+
:short:
|
235
|
+
? !ruby/symbol "1000"
|
236
|
+
:
|
237
|
+
:other: 0 ພັນ
|
238
|
+
? !ruby/symbol "10000"
|
239
|
+
:
|
240
|
+
:other: 00 ພັນ
|
241
|
+
? !ruby/symbol "100000"
|
242
|
+
:
|
243
|
+
:other: 000 ກີບ
|
244
|
+
? !ruby/symbol "1000000"
|
245
|
+
:
|
246
|
+
:other: 0 ລ້ານ
|
247
|
+
? !ruby/symbol "10000000"
|
248
|
+
:
|
249
|
+
:other: 00 ລ້ານ
|
250
|
+
? !ruby/symbol "100000000"
|
251
|
+
:
|
252
|
+
:other: 000 ລ້ານ
|
253
|
+
? !ruby/symbol "1000000000"
|
254
|
+
:
|
255
|
+
:other: 0 ຕື້
|
256
|
+
? !ruby/symbol "10000000000"
|
257
|
+
:
|
258
|
+
:other: 00 ຕື້
|
259
|
+
? !ruby/symbol "100000000000"
|
260
|
+
:
|
261
|
+
:other: 000 ຕື້
|
262
|
+
? !ruby/symbol "1000000000000"
|
263
|
+
:
|
264
|
+
:other: 0 ລ້ານລ້ານ
|
265
|
+
? !ruby/symbol "10000000000000"
|
266
|
+
:
|
267
|
+
:other: 00ລລ
|
268
|
+
? !ruby/symbol "100000000000000"
|
269
|
+
:
|
270
|
+
:other: 000ລລ
|
271
|
+
:lepc: :numbers.formats.decimal.latn
|
272
|
+
:limb: :numbers.formats.decimal.latn
|
273
|
+
:mlym: :numbers.formats.decimal.latn
|
274
|
+
:mong: :numbers.formats.decimal.latn
|
275
|
+
:mtei: :numbers.formats.decimal.latn
|
276
|
+
:mymr: :numbers.formats.decimal.latn
|
277
|
+
:mymrshan: :numbers.formats.decimal.latn
|
278
|
+
:nkoo: :numbers.formats.decimal.latn
|
279
|
+
:olck: :numbers.formats.decimal.latn
|
280
|
+
:orya: :numbers.formats.decimal.latn
|
281
|
+
:osma: :numbers.formats.decimal.latn
|
282
|
+
:rohg: :numbers.formats.decimal.latn
|
283
|
+
:saur: :numbers.formats.decimal.latn
|
284
|
+
:shrd: :numbers.formats.decimal.latn
|
285
|
+
:sora: :numbers.formats.decimal.latn
|
286
|
+
:sund: :numbers.formats.decimal.latn
|
287
|
+
:takr: :numbers.formats.decimal.latn
|
288
|
+
:talu: :numbers.formats.decimal.latn
|
289
|
+
:tamldec: :numbers.formats.decimal.latn
|
290
|
+
:telu: :numbers.formats.decimal.latn
|
291
|
+
:thai: :numbers.formats.decimal.latn
|
292
|
+
:tibt: :numbers.formats.decimal.latn
|
293
|
+
:vaii: :numbers.formats.decimal.latn
|
294
|
+
:percent:
|
295
|
+
:adlm: :numbers.formats.percent.latn
|
296
|
+
:arab:
|
297
|
+
:default: "#,##0%"
|
298
|
+
:arabext: :numbers.formats.percent.latn
|
299
|
+
:bali: :numbers.formats.percent.latn
|
300
|
+
:beng: :numbers.formats.percent.latn
|
301
|
+
:brah: :numbers.formats.percent.latn
|
302
|
+
:cakm: :numbers.formats.percent.latn
|
303
|
+
:cham: :numbers.formats.percent.latn
|
304
|
+
:default: :numbers.formats.percent.latn
|
305
|
+
:deva: :numbers.formats.percent.latn
|
306
|
+
:fullwide: :numbers.formats.percent.latn
|
307
|
+
:gong: :numbers.formats.percent.latn
|
308
|
+
:gonm: :numbers.formats.percent.latn
|
309
|
+
:gujr: :numbers.formats.percent.latn
|
310
|
+
:guru: :numbers.formats.percent.latn
|
311
|
+
:hanidec: :numbers.formats.percent.latn
|
312
|
+
:java: :numbers.formats.percent.latn
|
313
|
+
:kali: :numbers.formats.percent.latn
|
314
|
+
:khmr: :numbers.formats.percent.latn
|
315
|
+
:knda: :numbers.formats.percent.latn
|
316
|
+
:lana: :numbers.formats.percent.latn
|
317
|
+
:lanatham: :numbers.formats.percent.latn
|
318
|
+
:laoo: :numbers.formats.percent.latn
|
319
|
+
:latn:
|
320
|
+
:default: "#,##0%"
|
321
|
+
:lepc: :numbers.formats.percent.latn
|
322
|
+
:limb: :numbers.formats.percent.latn
|
323
|
+
:mlym: :numbers.formats.percent.latn
|
324
|
+
:mong: :numbers.formats.percent.latn
|
325
|
+
:mtei: :numbers.formats.percent.latn
|
326
|
+
:mymr: :numbers.formats.percent.latn
|
327
|
+
:mymrshan: :numbers.formats.percent.latn
|
328
|
+
:nkoo: :numbers.formats.percent.latn
|
329
|
+
:olck: :numbers.formats.percent.latn
|
330
|
+
:orya: :numbers.formats.percent.latn
|
331
|
+
:osma: :numbers.formats.percent.latn
|
332
|
+
:rohg: :numbers.formats.percent.latn
|
333
|
+
:saur: :numbers.formats.percent.latn
|
334
|
+
:shrd: :numbers.formats.percent.latn
|
335
|
+
:sora: :numbers.formats.percent.latn
|
336
|
+
:sund: :numbers.formats.percent.latn
|
337
|
+
:takr: :numbers.formats.percent.latn
|
338
|
+
:talu: :numbers.formats.percent.latn
|
339
|
+
:tamldec: :numbers.formats.percent.latn
|
340
|
+
:telu: :numbers.formats.percent.latn
|
341
|
+
:thai: :numbers.formats.percent.latn
|
342
|
+
:tibt: :numbers.formats.percent.latn
|
343
|
+
:vaii: :numbers.formats.percent.latn
|
344
|
+
:scientific:
|
345
|
+
:adlm: :numbers.formats.scientific.latn
|
346
|
+
:arab: :numbers.formats.scientific.latn
|
347
|
+
:arabext: :numbers.formats.scientific.latn
|
348
|
+
:bali: :numbers.formats.scientific.latn
|
349
|
+
:beng: :numbers.formats.scientific.latn
|
350
|
+
:brah: :numbers.formats.scientific.latn
|
351
|
+
:cakm: :numbers.formats.scientific.latn
|
352
|
+
:cham: :numbers.formats.scientific.latn
|
353
|
+
:default: :numbers.formats.scientific.latn
|
354
|
+
:deva: :numbers.formats.scientific.latn
|
355
|
+
:fullwide: :numbers.formats.scientific.latn
|
356
|
+
:gong: :numbers.formats.scientific.latn
|
357
|
+
:gonm: :numbers.formats.scientific.latn
|
358
|
+
:gujr: :numbers.formats.scientific.latn
|
359
|
+
:guru: :numbers.formats.scientific.latn
|
360
|
+
:hanidec: :numbers.formats.scientific.latn
|
361
|
+
:java: :numbers.formats.scientific.latn
|
362
|
+
:kali: :numbers.formats.scientific.latn
|
363
|
+
:khmr: :numbers.formats.scientific.latn
|
364
|
+
:knda: :numbers.formats.scientific.latn
|
365
|
+
:lana: :numbers.formats.scientific.latn
|
366
|
+
:lanatham: :numbers.formats.scientific.latn
|
367
|
+
:laoo: :numbers.formats.scientific.latn
|
368
|
+
:latn:
|
369
|
+
:default: "#"
|
370
|
+
:lepc: :numbers.formats.scientific.latn
|
371
|
+
:limb: :numbers.formats.scientific.latn
|
372
|
+
:mlym: :numbers.formats.scientific.latn
|
373
|
+
:mong: :numbers.formats.scientific.latn
|
374
|
+
:mtei: :numbers.formats.scientific.latn
|
375
|
+
:mymr: :numbers.formats.scientific.latn
|
376
|
+
:mymrshan: :numbers.formats.scientific.latn
|
377
|
+
:nkoo: :numbers.formats.scientific.latn
|
378
|
+
:olck: :numbers.formats.scientific.latn
|
379
|
+
:orya: :numbers.formats.scientific.latn
|
380
|
+
:osma: :numbers.formats.scientific.latn
|
381
|
+
:rohg: :numbers.formats.scientific.latn
|
382
|
+
:saur: :numbers.formats.scientific.latn
|
383
|
+
:shrd: :numbers.formats.scientific.latn
|
384
|
+
:sora: :numbers.formats.scientific.latn
|
385
|
+
:sund: :numbers.formats.scientific.latn
|
386
|
+
:takr: :numbers.formats.scientific.latn
|
387
|
+
:talu: :numbers.formats.scientific.latn
|
388
|
+
:tamldec: :numbers.formats.scientific.latn
|
389
|
+
:telu: :numbers.formats.scientific.latn
|
390
|
+
:thai: :numbers.formats.scientific.latn
|
391
|
+
:tibt: :numbers.formats.scientific.latn
|
392
|
+
:vaii: :numbers.formats.scientific.latn
|
393
|
+
:symbols:
|
394
|
+
:adlm: :numbers.symbols.latn
|
395
|
+
:arab:
|
396
|
+
:decimal: ٫
|
397
|
+
:exponential: اس
|
398
|
+
:group: ٬
|
399
|
+
:infinity: ∞
|
400
|
+
:list: ؛
|
401
|
+
:minus_sign: -
|
402
|
+
:nan: NaN
|
403
|
+
:per_mille: ؉
|
404
|
+
:percent_sign: ٪
|
405
|
+
:plus_sign: +
|
406
|
+
:superscripting_exponent: ×
|
407
|
+
:time_separator: ":"
|
408
|
+
:arabext:
|
409
|
+
:decimal: ٫
|
410
|
+
:exponential: ×۱۰^
|
411
|
+
:group: ٬
|
412
|
+
:infinity: ∞
|
413
|
+
:list: ؛
|
414
|
+
:minus_sign: -
|
415
|
+
:nan: NaN
|
416
|
+
:per_mille: ؉
|
417
|
+
:percent_sign: ٪
|
418
|
+
:plus_sign: +
|
419
|
+
:superscripting_exponent: ×
|
420
|
+
:time_separator: ٫
|
421
|
+
:bali: :numbers.symbols.latn
|
422
|
+
:beng: :numbers.symbols.latn
|
423
|
+
:brah: :numbers.symbols.latn
|
424
|
+
:cakm: :numbers.symbols.latn
|
425
|
+
:cham: :numbers.symbols.latn
|
426
|
+
:default: :numbers.symbols.latn
|
427
|
+
:deva: :numbers.symbols.latn
|
428
|
+
:fullwide: :numbers.symbols.latn
|
429
|
+
:gong: :numbers.symbols.latn
|
430
|
+
:gonm: :numbers.symbols.latn
|
431
|
+
:gujr: :numbers.symbols.latn
|
432
|
+
:guru: :numbers.symbols.latn
|
433
|
+
:hanidec: :numbers.symbols.latn
|
434
|
+
:java: :numbers.symbols.latn
|
435
|
+
:kali: :numbers.symbols.latn
|
436
|
+
:khmr: :numbers.symbols.latn
|
437
|
+
:knda: :numbers.symbols.latn
|
438
|
+
:lana: :numbers.symbols.latn
|
439
|
+
:lanatham: :numbers.symbols.latn
|
440
|
+
:laoo: :numbers.symbols.latn
|
441
|
+
:latn:
|
442
|
+
:decimal: ","
|
443
|
+
:exponential: E
|
444
|
+
:group: "."
|
445
|
+
:infinity: ∞
|
446
|
+
:list: ;
|
447
|
+
:minus_sign: "-"
|
448
|
+
:nan: ບໍ່ແມ່ນໂຕເລກ
|
449
|
+
:per_mille: ‰
|
450
|
+
:percent_sign: "%"
|
451
|
+
:plus_sign: +
|
452
|
+
:superscripting_exponent: ×
|
453
|
+
:time_separator: ":"
|
454
|
+
:lepc: :numbers.symbols.latn
|
455
|
+
:limb: :numbers.symbols.latn
|
456
|
+
:mlym: :numbers.symbols.latn
|
457
|
+
:mong: :numbers.symbols.latn
|
458
|
+
:mtei: :numbers.symbols.latn
|
459
|
+
:mymr: :numbers.symbols.latn
|
460
|
+
:mymrshan: :numbers.symbols.latn
|
461
|
+
:nkoo: :numbers.symbols.latn
|
462
|
+
:olck: :numbers.symbols.latn
|
463
|
+
:orya: :numbers.symbols.latn
|
464
|
+
:osma: :numbers.symbols.latn
|
465
|
+
:rohg: :numbers.symbols.latn
|
466
|
+
:saur: :numbers.symbols.latn
|
467
|
+
:shrd: :numbers.symbols.latn
|
468
|
+
:sora: :numbers.symbols.latn
|
469
|
+
:sund: :numbers.symbols.latn
|
470
|
+
:takr: :numbers.symbols.latn
|
471
|
+
:talu: :numbers.symbols.latn
|
472
|
+
:tamldec: :numbers.symbols.latn
|
473
|
+
:telu: :numbers.symbols.latn
|
474
|
+
:thai: :numbers.symbols.latn
|
475
|
+
:tibt: :numbers.symbols.latn
|
476
|
+
:vaii: :numbers.symbols.latn
|