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,750 @@
|
|
1
|
+
---
|
2
|
+
:lo:
|
3
|
+
:units:
|
4
|
+
:durationUnit:
|
5
|
+
:hm: "h:mm"
|
6
|
+
:hms: "h:mm:ss"
|
7
|
+
:ms: "m:ss"
|
8
|
+
:unitLength:
|
9
|
+
:long:
|
10
|
+
:acceleration-g-force:
|
11
|
+
:other: "{0} ແຮງຕົກຕາມລຳພັງ"
|
12
|
+
:acceleration-meter-per-second-squared:
|
13
|
+
:other: "{0} m/s²"
|
14
|
+
:angle-arc-minute:
|
15
|
+
:other: "{0} ນາທີ"
|
16
|
+
:angle-arc-second:
|
17
|
+
:other: "{0} ວິນາທີ"
|
18
|
+
:angle-degree:
|
19
|
+
:other: "{0} ອົງສາ"
|
20
|
+
:angle-radian:
|
21
|
+
:other: "{0} radians"
|
22
|
+
:angle-revolution:
|
23
|
+
:other: "{0} rev"
|
24
|
+
:area-acre:
|
25
|
+
:other: "{0} ເອເຄີ"
|
26
|
+
:area-dunam:
|
27
|
+
:other: "{0} ດູນຳ"
|
28
|
+
:area-hectare:
|
29
|
+
:other: "{0} ເຮັກຕາ"
|
30
|
+
:area-square-centimeter:
|
31
|
+
:other: "{0} ຊັງຕີຕາແມັດ"
|
32
|
+
:area-square-foot:
|
33
|
+
:other: "{0} ຕາຟຸດ"
|
34
|
+
:area-square-inch:
|
35
|
+
:other: "{0} ຕາລາງນິ້ວ"
|
36
|
+
:area-square-kilometer:
|
37
|
+
:other: "{0} ກິໂລຕາແມັດ"
|
38
|
+
:area-square-meter:
|
39
|
+
:other: "{0} ຕາແມັດ"
|
40
|
+
:area-square-mile:
|
41
|
+
:other: "{0} ຕາລາງໄມລ໌"
|
42
|
+
:area-square-yard:
|
43
|
+
:other: "{0} ຕາລາງຢາດ"
|
44
|
+
:concentr-karat:
|
45
|
+
:other: "{0} ກະຣັດ"
|
46
|
+
:concentr-milligram-per-deciliter:
|
47
|
+
:other: "{0} mg/dL"
|
48
|
+
:concentr-millimole-per-liter:
|
49
|
+
:other: "{0} ມິລິໂມລຕໍ່ລິດ"
|
50
|
+
:concentr-mole:
|
51
|
+
:other: "{0} ໂມລ"
|
52
|
+
:concentr-part-per-million:
|
53
|
+
:other: "{0} ພາດຕໍ່ລ້ານ"
|
54
|
+
:concentr-percent:
|
55
|
+
:other: "{0} ເປີເຊັນ"
|
56
|
+
:concentr-permille:
|
57
|
+
:other: "{0} ຕໍ່ພັນ"
|
58
|
+
:concentr-permyriad:
|
59
|
+
:other: "{0} ເປີມີຣຽດ"
|
60
|
+
:consumption-liter-per-100kilometers:
|
61
|
+
:other: "{0} ລິດຕໍ່ 100 ກີໂລແມັດ"
|
62
|
+
:consumption-liter-per-kilometer:
|
63
|
+
:other: "{0} ລິດຕໍ່ກິໂລແມັດ"
|
64
|
+
:consumption-mile-per-gallon:
|
65
|
+
:other: "{0} ໄມລ໌ຕໍ່ແກລອນ"
|
66
|
+
:consumption-mile-per-gallon-imperial:
|
67
|
+
:other: "{0} ໄມລ໌ຕໍ່ແກລລອນອັງກິດ"
|
68
|
+
:digital-bit:
|
69
|
+
:other: "{0} bit"
|
70
|
+
:digital-byte:
|
71
|
+
:other: "{0} byte"
|
72
|
+
:digital-gigabit:
|
73
|
+
:other: "{0} Gb"
|
74
|
+
:digital-gigabyte:
|
75
|
+
:other: "{0} GB"
|
76
|
+
:digital-kilobit:
|
77
|
+
:other: "{0} kb"
|
78
|
+
:digital-kilobyte:
|
79
|
+
:other: "{0} kB"
|
80
|
+
:digital-megabit:
|
81
|
+
:other: "{0} Mb"
|
82
|
+
:digital-megabyte:
|
83
|
+
:other: "{0} MB"
|
84
|
+
:digital-petabyte:
|
85
|
+
:other: "{0} ເພຕາໄບຕ໌"
|
86
|
+
:digital-terabit:
|
87
|
+
:other: "{0} Tb"
|
88
|
+
:digital-terabyte:
|
89
|
+
:other: "{0} TB"
|
90
|
+
:duration-century:
|
91
|
+
:other: "{0} ສັດຕະວັດ"
|
92
|
+
:duration-day:
|
93
|
+
:other: "{0} ມື້"
|
94
|
+
:duration-decade:
|
95
|
+
:other: "{0} ທົດສະວັດ"
|
96
|
+
:duration-hour:
|
97
|
+
:other: "{0} ຊົ່ວໂມງ"
|
98
|
+
:duration-microsecond:
|
99
|
+
:other: "{0} ໄມໂຄຣວິນາທີ"
|
100
|
+
:duration-millisecond:
|
101
|
+
:other: "{0} ມິນລີວິນາທີ"
|
102
|
+
:duration-minute:
|
103
|
+
:other: "{0} ນາທີ"
|
104
|
+
:duration-month:
|
105
|
+
:other: "{0} ເດືອນ"
|
106
|
+
:duration-nanosecond:
|
107
|
+
:other: "{0} ນາໂນວິນາທີ"
|
108
|
+
:duration-second:
|
109
|
+
:other: "{0} ວິນາທີ"
|
110
|
+
:duration-week:
|
111
|
+
:other: "{0} ອາທິດ"
|
112
|
+
:duration-year:
|
113
|
+
:other: "{0} ປີ"
|
114
|
+
:electric-ampere:
|
115
|
+
:other: "{0} A"
|
116
|
+
:electric-milliampere:
|
117
|
+
:other: "{0} mA"
|
118
|
+
:electric-ohm:
|
119
|
+
:other: "{0} Ω"
|
120
|
+
:electric-volt:
|
121
|
+
:other: "{0} ໂວລ"
|
122
|
+
:energy-british-thermal-unit:
|
123
|
+
:other: "{0} ຫົວໜ່ວຍວັດແທກປະລິມານຄວາມຮ້ອນຂອງອັງກິດ"
|
124
|
+
:energy-calorie:
|
125
|
+
:other: "{0} ແຄລໍລີ່"
|
126
|
+
:energy-electronvolt:
|
127
|
+
:other: "{0} ເອເລັກຕຣົງໂວນ"
|
128
|
+
:energy-foodcalorie:
|
129
|
+
:other: "{0} ແຄລໍລີ່"
|
130
|
+
:energy-joule:
|
131
|
+
:other: "{0} J"
|
132
|
+
:energy-kilocalorie:
|
133
|
+
:other: "{0} ກິໂລແຄລໍລີ່"
|
134
|
+
:energy-kilojoule:
|
135
|
+
:other: "{0} kJ"
|
136
|
+
:energy-kilowatt-hour:
|
137
|
+
:other: "{0} kWh"
|
138
|
+
:force-newton:
|
139
|
+
:other: "{0} ນິວເຕິນ"
|
140
|
+
:force-pound-force:
|
141
|
+
:other: "{0} ແຮງປອນ"
|
142
|
+
:frequency-gigahertz:
|
143
|
+
:other: "{0} GHz"
|
144
|
+
:frequency-hertz:
|
145
|
+
:other: "{0} Hz"
|
146
|
+
:frequency-kilohertz:
|
147
|
+
:other: "{0} kHz"
|
148
|
+
:frequency-megahertz:
|
149
|
+
:other: "{0} MHz"
|
150
|
+
:length-astronomical-unit:
|
151
|
+
:other: "{0} astronomical units"
|
152
|
+
:length-centimeter:
|
153
|
+
:other: "{0} ຊັງຕີແມັດ"
|
154
|
+
:length-decimeter:
|
155
|
+
:other: "{0} ເດຊີແມັດ"
|
156
|
+
:length-foot:
|
157
|
+
:other: "{0} ຟຸດ"
|
158
|
+
:length-inch:
|
159
|
+
:other: "{0} ນິ້ວ"
|
160
|
+
:length-kilometer:
|
161
|
+
:other: "{0} ກິໂລແມັດ"
|
162
|
+
:length-light-year:
|
163
|
+
:other: "{0} ປີແສງ"
|
164
|
+
:length-meter:
|
165
|
+
:other: "{0} ແມັດ"
|
166
|
+
:length-micrometer:
|
167
|
+
:other: "{0} micrometers"
|
168
|
+
:length-mile:
|
169
|
+
:other: "{0} ໄມລ໌"
|
170
|
+
:length-mile-scandinavian:
|
171
|
+
:other: "{0} ໄມລ໌ສະກັງດີນາວຽນ"
|
172
|
+
:length-millimeter:
|
173
|
+
:other: "{0} ມິນລິແມັດ"
|
174
|
+
:length-nanometer:
|
175
|
+
:other: "{0} ນາໂນແມັດ"
|
176
|
+
:length-nautical-mile:
|
177
|
+
:other: "{0} ໄມລ໌ທະເລ"
|
178
|
+
:length-parsec:
|
179
|
+
:other: "{0} parsecs"
|
180
|
+
:length-picometer:
|
181
|
+
:other: "{0} ປິໂກແມັດ"
|
182
|
+
:length-point:
|
183
|
+
:other: "{0} ຈຸດ"
|
184
|
+
:length-solar-radius:
|
185
|
+
:other: "{0} ລັດສະໝີດວງຕາເວັນ"
|
186
|
+
:length-yard:
|
187
|
+
:other: "{0} ຫລາ"
|
188
|
+
:light-lux:
|
189
|
+
:other: "{0} lux"
|
190
|
+
:light-solar-luminosity:
|
191
|
+
:other: "{0} ຄວາມແຈ້ງດວງຕາເວັນ"
|
192
|
+
:mass-carat:
|
193
|
+
:other: "{0} CD"
|
194
|
+
:mass-dalton:
|
195
|
+
:other: "{0} ດໍຕັນ"
|
196
|
+
:mass-earth-mass:
|
197
|
+
:other: "{0} ມວນສານໜ່ວຍໂລກ"
|
198
|
+
:mass-gram:
|
199
|
+
:other: "{0} ກຣາມ"
|
200
|
+
:mass-kilogram:
|
201
|
+
:other: "{0} ກິໂລກຣາມ"
|
202
|
+
:mass-metric-ton:
|
203
|
+
:other: "{0} t"
|
204
|
+
:mass-microgram:
|
205
|
+
:other: "{0} µg"
|
206
|
+
:mass-milligram:
|
207
|
+
:other: "{0} mg"
|
208
|
+
:mass-ounce:
|
209
|
+
:other: "{0} ອອນສ"
|
210
|
+
:mass-ounce-troy:
|
211
|
+
:other: "{0} oz t"
|
212
|
+
:mass-pound:
|
213
|
+
:other: "{0} ປອນ"
|
214
|
+
:mass-solar-mass:
|
215
|
+
:other: "{0} ມວນສານດວງຕາເວັນ"
|
216
|
+
:mass-ton:
|
217
|
+
:other: "{0} ໂຕນ"
|
218
|
+
:power-gigawatt:
|
219
|
+
:other: "{0} GW"
|
220
|
+
:power-horsepower:
|
221
|
+
:other: "{0} ແຮງມ້າ"
|
222
|
+
:power-kilowatt:
|
223
|
+
:other: "{0} ກິໂລວັດ"
|
224
|
+
:power-megawatt:
|
225
|
+
:other: "{0} MW"
|
226
|
+
:power-milliwatt:
|
227
|
+
:other: "{0} mW"
|
228
|
+
:power-watt:
|
229
|
+
:other: "{0} ວັດ"
|
230
|
+
:pressure-atmosphere:
|
231
|
+
:other: "{0} atmospheres"
|
232
|
+
:pressure-hectopascal:
|
233
|
+
:other: "{0} hectopascals"
|
234
|
+
:pressure-inch-hg:
|
235
|
+
:other: "{0} inches of mercury"
|
236
|
+
:pressure-kilopascal:
|
237
|
+
:other: "{0} ກິໂລປາສການ"
|
238
|
+
:pressure-megapascal:
|
239
|
+
:other: "{0} ເມກາປາສການ"
|
240
|
+
:pressure-millibar:
|
241
|
+
:other: "{0} ມິນລິບາ"
|
242
|
+
:pressure-millimeter-of-mercury:
|
243
|
+
:other: "{0} mm Hg"
|
244
|
+
:pressure-pound-per-square-inch:
|
245
|
+
:other: "{0} pounds per square inch"
|
246
|
+
:speed-kilometer-per-hour:
|
247
|
+
:other: "{0} ກິໂລແມັດຕໍ່ຊົ່ວໂມງ"
|
248
|
+
:speed-knot:
|
249
|
+
:other: "{0} ນ໋ອດ"
|
250
|
+
:speed-meter-per-second:
|
251
|
+
:other: "{0} ແມັດຕໍ່ນາທີ"
|
252
|
+
:speed-mile-per-hour:
|
253
|
+
:other: "{0} ໄມລ໌ຕໍ່ຊົ່ວໂມງ"
|
254
|
+
:temperature-celsius:
|
255
|
+
:other: "{0} ອົງສາ ຊີ."
|
256
|
+
:temperature-fahrenheit:
|
257
|
+
:other: "{0} ອົງສາຟາເຣນຮາຍ"
|
258
|
+
:temperature-generic:
|
259
|
+
:other: "{0}°"
|
260
|
+
:temperature-kelvin:
|
261
|
+
:other: "{0} ອົງສາເຄວິນ"
|
262
|
+
:torque-newton-meter:
|
263
|
+
:other: "{0} ນິວເຕິນແມັດ"
|
264
|
+
:torque-pound-foot:
|
265
|
+
:other: "{0} ປອນ-ຟຸດ"
|
266
|
+
:volume-acre-foot:
|
267
|
+
:other: "{0} ac ft"
|
268
|
+
:volume-barrel:
|
269
|
+
:other: "{0} ບາເຣວ"
|
270
|
+
:volume-centiliter:
|
271
|
+
:other: "{0} cL"
|
272
|
+
:volume-cubic-centimeter:
|
273
|
+
:other: "{0} cm³"
|
274
|
+
:volume-cubic-foot:
|
275
|
+
:other: "{0} ft³"
|
276
|
+
:volume-cubic-inch:
|
277
|
+
:other: "{0} in³"
|
278
|
+
:volume-cubic-kilometer:
|
279
|
+
:other: "{0} ກິໂລແມັດກ້ອນ"
|
280
|
+
:volume-cubic-meter:
|
281
|
+
:other: "{0} ແມັດກ້ອນ"
|
282
|
+
:volume-cubic-mile:
|
283
|
+
:other: "{0} ໄມລ໌ກ້ອນ"
|
284
|
+
:volume-cubic-yard:
|
285
|
+
:other: "{0} yd³"
|
286
|
+
:volume-cup:
|
287
|
+
:other: "{0} c"
|
288
|
+
:volume-cup-metric:
|
289
|
+
:other: "{0} metric cups"
|
290
|
+
:volume-deciliter:
|
291
|
+
:other: "{0} dL"
|
292
|
+
:volume-fluid-ounce:
|
293
|
+
:other: "{0} fl oz"
|
294
|
+
:volume-gallon:
|
295
|
+
:other: "{0} ແກລລອນ"
|
296
|
+
:volume-gallon-imperial:
|
297
|
+
:other: "{0} ແກລລອນອັງກິດ"
|
298
|
+
:volume-hectoliter:
|
299
|
+
:other: "{0} hL"
|
300
|
+
:volume-liter:
|
301
|
+
:other: "{0} ລິດ"
|
302
|
+
:volume-megaliter:
|
303
|
+
:other: "{0} ML"
|
304
|
+
:volume-milliliter:
|
305
|
+
:other: "{0} mL"
|
306
|
+
:volume-pint:
|
307
|
+
:other: "{0} pt"
|
308
|
+
:volume-pint-metric:
|
309
|
+
:other: "{0} metric pints"
|
310
|
+
:volume-quart:
|
311
|
+
:other: "{0} qt"
|
312
|
+
:volume-tablespoon:
|
313
|
+
:other: "{0} tbsp"
|
314
|
+
:volume-teaspoon:
|
315
|
+
:other: "{0} tsp"
|
316
|
+
:narrow:
|
317
|
+
:angle-arc-minute:
|
318
|
+
:other: "{0}′"
|
319
|
+
:angle-arc-second:
|
320
|
+
:other: "{0}″"
|
321
|
+
:angle-degree:
|
322
|
+
:other: "{0}°"
|
323
|
+
:area-acre:
|
324
|
+
:other: "{0} ac"
|
325
|
+
:area-hectare:
|
326
|
+
:other: "{0} ຮຕ"
|
327
|
+
:area-square-foot:
|
328
|
+
:other: "{0} ft²"
|
329
|
+
:area-square-kilometer:
|
330
|
+
:other: "{0} ກມ²"
|
331
|
+
:area-square-meter:
|
332
|
+
:other: "{0} ແມັດ²"
|
333
|
+
:area-square-mile:
|
334
|
+
:other: "{0} mi²"
|
335
|
+
:concentr-percent:
|
336
|
+
:other: "{0}%"
|
337
|
+
:consumption-liter-per-100kilometers:
|
338
|
+
:other: "{0} ລ / 100 ກມ"
|
339
|
+
:duration-day:
|
340
|
+
:other: "{0} ມ."
|
341
|
+
:duration-hour:
|
342
|
+
:other: "{0} ຊມ"
|
343
|
+
:duration-millisecond:
|
344
|
+
:other: "{0} ມລ. ວິ."
|
345
|
+
:duration-minute:
|
346
|
+
:other: "{0} ນທ"
|
347
|
+
:duration-month:
|
348
|
+
:other: "{0} ດ."
|
349
|
+
:duration-second:
|
350
|
+
:other: "{0} ວິ"
|
351
|
+
:duration-week:
|
352
|
+
:other: "{0} ອທ."
|
353
|
+
:duration-year:
|
354
|
+
:other: "{0} ປ"
|
355
|
+
:length-centimeter:
|
356
|
+
:other: "{0} ຊມ"
|
357
|
+
:length-foot:
|
358
|
+
:other: "{0} ຟ"
|
359
|
+
:length-inch:
|
360
|
+
:other: "{0} ນ"
|
361
|
+
:length-kilometer:
|
362
|
+
:other: "{0} ກມ"
|
363
|
+
:length-light-year:
|
364
|
+
:other: "{0} ປສ"
|
365
|
+
:length-meter:
|
366
|
+
:other: "{0} ມ"
|
367
|
+
:length-mile:
|
368
|
+
:other: "{0} ໄມ"
|
369
|
+
:length-millimeter:
|
370
|
+
:other: "{0} ມມ"
|
371
|
+
:length-picometer:
|
372
|
+
:other: "{0} pm"
|
373
|
+
:length-yard:
|
374
|
+
:other: "{0} ຫລາ"
|
375
|
+
:mass-gram:
|
376
|
+
:other: "{0} ກຼ"
|
377
|
+
:mass-kilogram:
|
378
|
+
:other: "{0} ກລ"
|
379
|
+
:mass-ounce:
|
380
|
+
:other: "{0} ອ"
|
381
|
+
:mass-pound:
|
382
|
+
:other: "{0} ປ"
|
383
|
+
:power-horsepower:
|
384
|
+
:other: "{0} hp"
|
385
|
+
:power-kilowatt:
|
386
|
+
:other: "{0} kW"
|
387
|
+
:power-watt:
|
388
|
+
:other: "{0} W"
|
389
|
+
:pressure-hectopascal:
|
390
|
+
:other: "{0} hPA"
|
391
|
+
:pressure-inch-hg:
|
392
|
+
:other: "{0} in Hg"
|
393
|
+
:pressure-millibar:
|
394
|
+
:other: "{0} mbar"
|
395
|
+
:speed-kilometer-per-hour: {}
|
396
|
+
:speed-meter-per-second:
|
397
|
+
:other: "{0} m/s"
|
398
|
+
:speed-mile-per-hour:
|
399
|
+
:other: "{0} mi/h"
|
400
|
+
:temperature-celsius:
|
401
|
+
:other: "{0}°"
|
402
|
+
:temperature-fahrenheit:
|
403
|
+
:other: "{0}°F"
|
404
|
+
:volume-cubic-kilometer:
|
405
|
+
:other: "{0} km³"
|
406
|
+
:volume-cubic-mile:
|
407
|
+
:other: "{0} mi³"
|
408
|
+
:volume-liter:
|
409
|
+
:other: "{0}L"
|
410
|
+
:short:
|
411
|
+
:acceleration-g-force:
|
412
|
+
:other: "{0} G"
|
413
|
+
:acceleration-meter-per-second-squared:
|
414
|
+
:other: "{0} m/s²"
|
415
|
+
:angle-arc-minute:
|
416
|
+
:other: "{0} arcmins"
|
417
|
+
:angle-arc-second:
|
418
|
+
:other: "{0} arcsecs"
|
419
|
+
:angle-degree:
|
420
|
+
:other: "{0} ອົງສາ"
|
421
|
+
:angle-radian:
|
422
|
+
:other: "{0} rad"
|
423
|
+
:angle-revolution:
|
424
|
+
:other: "{0} rev"
|
425
|
+
:area-acre:
|
426
|
+
:other: "{0} ເອເຄີ"
|
427
|
+
:area-dunam:
|
428
|
+
:other: "{0} ດູນຳ"
|
429
|
+
:area-hectare:
|
430
|
+
:other: "{0} ຮຕ."
|
431
|
+
:area-square-centimeter:
|
432
|
+
:other: "{0} ຊມ²"
|
433
|
+
:area-square-foot:
|
434
|
+
:other: "{0} ຟຸດ²"
|
435
|
+
:area-square-inch:
|
436
|
+
:other: "{0} in²"
|
437
|
+
:area-square-kilometer:
|
438
|
+
:other: "{0} ກມ²"
|
439
|
+
:area-square-meter:
|
440
|
+
:other: "{0} ມ²"
|
441
|
+
:area-square-mile:
|
442
|
+
:other: "{0} mi²"
|
443
|
+
:area-square-yard:
|
444
|
+
:other: "{0} yd²"
|
445
|
+
:concentr-karat:
|
446
|
+
:other: "{0} kt"
|
447
|
+
:concentr-milligram-per-deciliter:
|
448
|
+
:other: "{0} mg/dL"
|
449
|
+
:concentr-millimole-per-liter:
|
450
|
+
:other: "{0} mmol/L"
|
451
|
+
:concentr-mole:
|
452
|
+
:other: "{0} mol"
|
453
|
+
:concentr-part-per-million:
|
454
|
+
:other: "{0} ppm"
|
455
|
+
:concentr-percent:
|
456
|
+
:other: "{0}%"
|
457
|
+
:concentr-permille:
|
458
|
+
:other: "{0}‰"
|
459
|
+
:concentr-permyriad:
|
460
|
+
:other: "{0}‱"
|
461
|
+
:consumption-liter-per-100kilometers:
|
462
|
+
:other: "{0} L/100km"
|
463
|
+
:consumption-liter-per-kilometer:
|
464
|
+
:other: "{0} ລ/ກມ"
|
465
|
+
:consumption-mile-per-gallon:
|
466
|
+
:other: "{0} mpg"
|
467
|
+
:consumption-mile-per-gallon-imperial:
|
468
|
+
:other: "{0} mpg Imp."
|
469
|
+
:digital-bit:
|
470
|
+
:other: "{0} bit"
|
471
|
+
:digital-byte:
|
472
|
+
:other: "{0} byte"
|
473
|
+
:digital-gigabit:
|
474
|
+
:other: "{0} Gb"
|
475
|
+
:digital-gigabyte:
|
476
|
+
:other: "{0} GB"
|
477
|
+
:digital-kilobit:
|
478
|
+
:other: "{0} kb"
|
479
|
+
:digital-kilobyte:
|
480
|
+
:other: "{0} kB"
|
481
|
+
:digital-megabit:
|
482
|
+
:other: "{0} Mb"
|
483
|
+
:digital-megabyte:
|
484
|
+
:other: "{0} MB"
|
485
|
+
:digital-petabyte:
|
486
|
+
:other: "{0} PB"
|
487
|
+
:digital-terabit:
|
488
|
+
:other: "{0} Tb"
|
489
|
+
:digital-terabyte:
|
490
|
+
:other: "{0} TB"
|
491
|
+
:duration-century:
|
492
|
+
:other: "{0} c"
|
493
|
+
:duration-day:
|
494
|
+
:other: "{0} ມື້"
|
495
|
+
:duration-day-person: {}
|
496
|
+
:duration-decade:
|
497
|
+
:other: "{0} ທົດສະວັດ"
|
498
|
+
:duration-hour:
|
499
|
+
:other: "{0} ຊມ"
|
500
|
+
:duration-microsecond:
|
501
|
+
:other: "{0} μວິ"
|
502
|
+
:duration-millisecond:
|
503
|
+
:other: "{0} ມລວ"
|
504
|
+
:duration-minute:
|
505
|
+
:other: "{0} ນທ"
|
506
|
+
:duration-month:
|
507
|
+
:other: "{0} ດ."
|
508
|
+
:duration-month-person: {}
|
509
|
+
:duration-nanosecond:
|
510
|
+
:other: "{0} ນນວິ"
|
511
|
+
:duration-second:
|
512
|
+
:other: "{0} ວິ"
|
513
|
+
:duration-week:
|
514
|
+
:other: "{0} ອທ."
|
515
|
+
:duration-week-person: {}
|
516
|
+
:duration-year:
|
517
|
+
:other: "{0} ປີ"
|
518
|
+
:duration-year-person: {}
|
519
|
+
:electric-ampere:
|
520
|
+
:other: "{0} A"
|
521
|
+
:electric-milliampere:
|
522
|
+
:other: "{0} mA"
|
523
|
+
:electric-ohm:
|
524
|
+
:other: "{0} Ω"
|
525
|
+
:electric-volt:
|
526
|
+
:other: "{0} ໂວລ"
|
527
|
+
:energy-british-thermal-unit:
|
528
|
+
:other: "{0} Btu"
|
529
|
+
:energy-calorie:
|
530
|
+
:other: "{0} ຄລ"
|
531
|
+
:energy-electronvolt:
|
532
|
+
:other: "{0} eV"
|
533
|
+
:energy-foodcalorie:
|
534
|
+
:other: "{0} ຄລ"
|
535
|
+
:energy-joule:
|
536
|
+
:other: "{0} J"
|
537
|
+
:energy-kilocalorie:
|
538
|
+
:other: "{0} ກິໂລແຄລໍລີ່"
|
539
|
+
:energy-kilojoule:
|
540
|
+
:other: "{0} kJ"
|
541
|
+
:energy-kilowatt-hour:
|
542
|
+
:other: "{0} kWh"
|
543
|
+
:energy-therm-us:
|
544
|
+
:other: "{0} US therm"
|
545
|
+
:force-newton:
|
546
|
+
:other: "{0} N"
|
547
|
+
:force-pound-force:
|
548
|
+
:other: "{0} lbf"
|
549
|
+
:frequency-gigahertz:
|
550
|
+
:other: "{0} GHz"
|
551
|
+
:frequency-hertz:
|
552
|
+
:other: "{0} Hz"
|
553
|
+
:frequency-kilohertz:
|
554
|
+
:other: "{0} kHz"
|
555
|
+
:frequency-megahertz:
|
556
|
+
:other: "{0} MHz"
|
557
|
+
:graphics-dot-per-centimeter:
|
558
|
+
:other: "{0} dpcm"
|
559
|
+
:graphics-dot-per-inch:
|
560
|
+
:other: "{0} dpi"
|
561
|
+
:graphics-em:
|
562
|
+
:other: "{0} em"
|
563
|
+
:graphics-megapixel:
|
564
|
+
:other: "{0} MP"
|
565
|
+
:graphics-pixel:
|
566
|
+
:other: "{0} px"
|
567
|
+
:graphics-pixel-per-centimeter:
|
568
|
+
:other: "{0} ppcm"
|
569
|
+
:graphics-pixel-per-inch:
|
570
|
+
:other: "{0} ppi"
|
571
|
+
:length-astronomical-unit:
|
572
|
+
:other: "{0} au"
|
573
|
+
:length-centimeter:
|
574
|
+
:other: "{0} ຊມ"
|
575
|
+
:length-decimeter:
|
576
|
+
:other: "{0} ດມ"
|
577
|
+
:length-fathom:
|
578
|
+
:other: "{0} fth"
|
579
|
+
:length-foot:
|
580
|
+
:other: "{0} ຟ"
|
581
|
+
:length-furlong:
|
582
|
+
:other: "{0} fur"
|
583
|
+
:length-inch:
|
584
|
+
:other: "{0} ນິ"
|
585
|
+
:length-kilometer:
|
586
|
+
:other: "{0} ກມ"
|
587
|
+
:length-light-year:
|
588
|
+
:other: "{0} ປສ"
|
589
|
+
:length-meter:
|
590
|
+
:other: "{0} ມ"
|
591
|
+
:length-micrometer:
|
592
|
+
:other: "{0} µm"
|
593
|
+
:length-mile:
|
594
|
+
:other: "{0} ໄມ"
|
595
|
+
:length-mile-scandinavian:
|
596
|
+
:other: "{0} smi"
|
597
|
+
:length-millimeter:
|
598
|
+
:other: "{0} ມມ"
|
599
|
+
:length-nanometer:
|
600
|
+
:other: "{0} ນມ"
|
601
|
+
:length-nautical-mile:
|
602
|
+
:other: "{0} nmi"
|
603
|
+
:length-parsec:
|
604
|
+
:other: "{0} pc"
|
605
|
+
:length-picometer:
|
606
|
+
:other: "{0} ປມ"
|
607
|
+
:length-point:
|
608
|
+
:other: "{0} pt"
|
609
|
+
:length-solar-radius:
|
610
|
+
:other: "{0} R☉"
|
611
|
+
:length-yard:
|
612
|
+
:other: "{0} ຫລາ"
|
613
|
+
:light-lux:
|
614
|
+
:other: "{0} lx"
|
615
|
+
:light-solar-luminosity:
|
616
|
+
:other: "{0} L☉"
|
617
|
+
:mass-carat:
|
618
|
+
:other: "{0} CD"
|
619
|
+
:mass-dalton:
|
620
|
+
:other: "{0} Da"
|
621
|
+
:mass-earth-mass:
|
622
|
+
:other: "{0} M⊕"
|
623
|
+
:mass-gram:
|
624
|
+
:other: "{0} ກຼ"
|
625
|
+
:mass-kilogram:
|
626
|
+
:other: "{0} ກິໂລ"
|
627
|
+
:mass-metric-ton:
|
628
|
+
:other: "{0} t"
|
629
|
+
:mass-microgram:
|
630
|
+
:other: "{0} µg"
|
631
|
+
:mass-milligram:
|
632
|
+
:other: "{0} ມກ"
|
633
|
+
:mass-ounce:
|
634
|
+
:other: "{0} ອ"
|
635
|
+
:mass-ounce-troy:
|
636
|
+
:other: "{0} oz t"
|
637
|
+
:mass-pound:
|
638
|
+
:other: "{0} ປ"
|
639
|
+
:mass-solar-mass:
|
640
|
+
:other: "{0} M☉"
|
641
|
+
:mass-stone:
|
642
|
+
:other: "{0} st"
|
643
|
+
:mass-ton:
|
644
|
+
:other: "{0} ຕ"
|
645
|
+
:power-gigawatt:
|
646
|
+
:other: "{0} GW"
|
647
|
+
:power-horsepower:
|
648
|
+
:other: "{0} hp"
|
649
|
+
:power-kilowatt:
|
650
|
+
:other: "{0} ກລ. ວັດ"
|
651
|
+
:power-megawatt:
|
652
|
+
:other: "{0} MW"
|
653
|
+
:power-milliwatt:
|
654
|
+
:other: "{0} mW"
|
655
|
+
:power-watt:
|
656
|
+
:other: "{0} ວັດ"
|
657
|
+
:pressure-atmosphere:
|
658
|
+
:other: "{0} atm"
|
659
|
+
:pressure-bar:
|
660
|
+
:other: "{0} bar"
|
661
|
+
:pressure-hectopascal:
|
662
|
+
:other: "{0} hPA"
|
663
|
+
:pressure-inch-hg:
|
664
|
+
:other: "{0} in Hg"
|
665
|
+
:pressure-kilopascal:
|
666
|
+
:other: "{0} kPa"
|
667
|
+
:pressure-megapascal:
|
668
|
+
:other: "{0} MPa"
|
669
|
+
:pressure-millibar:
|
670
|
+
:other: "{0} mbar"
|
671
|
+
:pressure-millimeter-of-mercury:
|
672
|
+
:other: "{0} mm Hg"
|
673
|
+
:pressure-pascal:
|
674
|
+
:other: "{0} Pa"
|
675
|
+
:pressure-pound-per-square-inch:
|
676
|
+
:other: "{0} psi"
|
677
|
+
:speed-kilometer-per-hour:
|
678
|
+
:other: "{0} ກມ/ຊມ"
|
679
|
+
:speed-knot:
|
680
|
+
:other: "{0} kn"
|
681
|
+
:speed-meter-per-second:
|
682
|
+
:other: "{0} ມ/ນທ."
|
683
|
+
:speed-mile-per-hour:
|
684
|
+
:other: "{0} ມ/ຊມ"
|
685
|
+
:temperature-celsius:
|
686
|
+
:other: "{0} ອົງສາ ຊີ."
|
687
|
+
:temperature-fahrenheit:
|
688
|
+
:other: "{0} ອົງສາ ຟ."
|
689
|
+
:temperature-generic:
|
690
|
+
:other: "{0}°"
|
691
|
+
:temperature-kelvin:
|
692
|
+
:other: "{0}°K"
|
693
|
+
:torque-newton-meter:
|
694
|
+
:other: "{0} N⋅m"
|
695
|
+
:torque-pound-foot:
|
696
|
+
:other: "{0} lbf⋅ft"
|
697
|
+
:volume-acre-foot:
|
698
|
+
:other: "{0} ac ft"
|
699
|
+
:volume-barrel:
|
700
|
+
:other: "{0} bbl"
|
701
|
+
:volume-bushel:
|
702
|
+
:other: "{0} bu"
|
703
|
+
:volume-centiliter:
|
704
|
+
:other: "{0} cL"
|
705
|
+
:volume-cubic-centimeter:
|
706
|
+
:other: "{0} cm³"
|
707
|
+
:volume-cubic-foot:
|
708
|
+
:other: "{0} ft³"
|
709
|
+
:volume-cubic-inch:
|
710
|
+
:other: "{0} in³"
|
711
|
+
:volume-cubic-kilometer:
|
712
|
+
:other: "{0} ກມ³"
|
713
|
+
:volume-cubic-meter:
|
714
|
+
:other: "{0} ມ³"
|
715
|
+
:volume-cubic-mile:
|
716
|
+
:other: "{0} mi³"
|
717
|
+
:volume-cubic-yard:
|
718
|
+
:other: "{0} yd³"
|
719
|
+
:volume-cup:
|
720
|
+
:other: "{0} c"
|
721
|
+
:volume-cup-metric:
|
722
|
+
:other: "{0} mc"
|
723
|
+
:volume-deciliter:
|
724
|
+
:other: "{0} dL"
|
725
|
+
:volume-fluid-ounce:
|
726
|
+
:other: "{0} fl oz"
|
727
|
+
:volume-fluid-ounce-imperial:
|
728
|
+
:other: "{0} fl oz Imp."
|
729
|
+
:volume-gallon:
|
730
|
+
:other: "{0} ແກລລອນ"
|
731
|
+
:volume-gallon-imperial:
|
732
|
+
:other: "{0} gal Imp."
|
733
|
+
:volume-hectoliter:
|
734
|
+
:other: "{0} hL"
|
735
|
+
:volume-liter:
|
736
|
+
:other: "{0} L"
|
737
|
+
:volume-megaliter:
|
738
|
+
:other: "{0} ML"
|
739
|
+
:volume-milliliter:
|
740
|
+
:other: "{0} mL"
|
741
|
+
:volume-pint:
|
742
|
+
:other: "{0} pt"
|
743
|
+
:volume-pint-metric:
|
744
|
+
:other: "{0} mpt"
|
745
|
+
:volume-quart:
|
746
|
+
:other: "{0} qt"
|
747
|
+
:volume-tablespoon:
|
748
|
+
:other: "{0} tbsp"
|
749
|
+
:volume-teaspoon:
|
750
|
+
:other: "{0} tsp"
|