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