twitter_cldr 3.0.0.beta1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (698) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +16 -2
  3. data/History.txt +9 -1
  4. data/README.md +297 -113
  5. data/Rakefile +97 -17
  6. data/lib/twitter_cldr/collation/collator.rb +12 -3
  7. data/lib/twitter_cldr/collation/trie_builder.rb +1 -1
  8. data/lib/twitter_cldr/{tokenizers/calendars → data_readers}/additional_date_format_selector.rb +6 -4
  9. data/lib/twitter_cldr/data_readers/calendar_data_reader.rb +91 -0
  10. data/lib/twitter_cldr/data_readers/data_reader.rb +32 -0
  11. data/lib/twitter_cldr/data_readers/date_data_reader.rb +26 -0
  12. data/lib/twitter_cldr/data_readers/date_time_data_reader.rb +41 -0
  13. data/lib/twitter_cldr/data_readers/number_data_reader.rb +142 -0
  14. data/lib/twitter_cldr/data_readers/time_data_reader.rb +26 -0
  15. data/lib/twitter_cldr/data_readers/timespan_data_reader.rb +122 -0
  16. data/lib/twitter_cldr/data_readers.rb +17 -0
  17. data/lib/twitter_cldr/formatters/calendars/{datetime_formatter.rb → date_time_formatter.rb} +27 -42
  18. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +3 -64
  19. data/lib/twitter_cldr/formatters/formatter.rb +39 -0
  20. data/lib/twitter_cldr/formatters/list_formatter.rb +22 -12
  21. data/lib/twitter_cldr/formatters/numbers/abbreviated/abbreviated_number_formatter.rb +5 -26
  22. data/lib/twitter_cldr/formatters/numbers/currency_formatter.rb +2 -11
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +4 -2
  24. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +45 -27
  25. data/lib/twitter_cldr/formatters/numbers/percent_formatter.rb +3 -13
  26. data/lib/twitter_cldr/formatters/numbers/rbnf/formatters.rb +224 -0
  27. data/lib/twitter_cldr/formatters/numbers/rbnf/post_processors/chinese.rb +122 -0
  28. data/lib/twitter_cldr/formatters/numbers/rbnf/rule.rb +93 -0
  29. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_group.rb +20 -0
  30. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_parser.rb +86 -0
  31. data/lib/twitter_cldr/formatters/numbers/rbnf/rule_set.rb +259 -0
  32. data/lib/twitter_cldr/formatters/numbers/rbnf/substitution.rb +30 -0
  33. data/lib/twitter_cldr/formatters/numbers/rbnf.rb +127 -0
  34. data/lib/twitter_cldr/formatters/plurals/plural_formatter.rb +18 -6
  35. data/lib/twitter_cldr/formatters.rb +4 -5
  36. data/lib/twitter_cldr/localized/localized_array.rb +1 -1
  37. data/lib/twitter_cldr/localized/localized_date.rb +6 -3
  38. data/lib/twitter_cldr/localized/localized_datetime.rb +38 -15
  39. data/lib/twitter_cldr/localized/localized_number.rb +40 -24
  40. data/lib/twitter_cldr/localized/localized_object.rb +4 -4
  41. data/lib/twitter_cldr/localized/localized_string.rb +40 -7
  42. data/lib/twitter_cldr/localized/localized_time.rb +9 -2
  43. data/lib/twitter_cldr/localized/localized_timespan.rb +50 -5
  44. data/lib/twitter_cldr/normalization.rb +8 -19
  45. data/lib/twitter_cldr/parsers/parser.rb +50 -0
  46. data/lib/twitter_cldr/parsers/segmentation_parser.rb +137 -0
  47. data/lib/twitter_cldr/parsers/symbol_table.rb +30 -0
  48. data/lib/twitter_cldr/parsers/unicode_regex/character_class.rb +91 -0
  49. data/lib/twitter_cldr/parsers/unicode_regex/character_range.rb +39 -0
  50. data/lib/twitter_cldr/parsers/unicode_regex/character_set.rb +65 -0
  51. data/lib/twitter_cldr/parsers/unicode_regex/component.rb +50 -0
  52. data/lib/twitter_cldr/parsers/unicode_regex/literal.rb +83 -0
  53. data/lib/twitter_cldr/parsers/unicode_regex/unicode_string.rb +41 -0
  54. data/lib/twitter_cldr/parsers/unicode_regex_parser.rb +262 -0
  55. data/lib/twitter_cldr/parsers.rb +5 -1
  56. data/lib/twitter_cldr/resources/casefolder.rb.erb +64 -0
  57. data/lib/twitter_cldr/resources/casefolder_class_generator.rb +75 -0
  58. data/lib/twitter_cldr/resources/download.rb +10 -4
  59. data/lib/twitter_cldr/resources/icu_based_importer.rb +18 -0
  60. data/lib/twitter_cldr/resources/locales_resources_importer.rb +24 -13
  61. data/lib/twitter_cldr/resources/normalization_quick_check_importer.rb +1 -14
  62. data/lib/twitter_cldr/resources/rbnf_test_importer.rb +107 -0
  63. data/lib/twitter_cldr/resources/readme_renderer.rb +115 -0
  64. data/lib/twitter_cldr/resources/tailoring_importer.rb +2 -8
  65. data/lib/twitter_cldr/resources/uli/segment_exceptions_importer.rb +62 -0
  66. data/lib/twitter_cldr/resources/uli.rb +12 -0
  67. data/lib/twitter_cldr/resources/unicode_data_importer.rb +84 -14
  68. data/lib/twitter_cldr/resources/unicode_importer.rb +37 -0
  69. data/lib/twitter_cldr/resources/unicode_properties_importer.rb +79 -0
  70. data/lib/twitter_cldr/resources.rb +8 -1
  71. data/lib/twitter_cldr/shared/break_iterator.rb +213 -0
  72. data/lib/twitter_cldr/shared/calendar.rb +38 -14
  73. data/lib/twitter_cldr/shared/casefolder.rb +210 -0
  74. data/lib/twitter_cldr/shared/code_point.rb +103 -16
  75. data/lib/twitter_cldr/shared/numbering_system.rb +58 -0
  76. data/lib/twitter_cldr/shared/territories.rb +43 -1
  77. data/lib/twitter_cldr/shared/unicode_regex.rb +81 -0
  78. data/lib/twitter_cldr/shared.rb +13 -9
  79. data/lib/twitter_cldr/tokenizers/calendars/date_time_tokenizer.rb +77 -0
  80. data/lib/twitter_cldr/tokenizers/calendars/date_tokenizer.rb +14 -29
  81. data/lib/twitter_cldr/tokenizers/calendars/time_tokenizer.rb +13 -28
  82. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -87
  83. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +16 -71
  84. data/lib/twitter_cldr/tokenizers/numbers/rbnf_tokenizer.rb +53 -0
  85. data/lib/twitter_cldr/tokenizers/pattern_tokenizer.rb +42 -0
  86. data/lib/twitter_cldr/tokenizers/segmentation/segmentation_tokenizer.rb +39 -0
  87. data/lib/twitter_cldr/tokenizers/tokenizer.rb +116 -0
  88. data/lib/twitter_cldr/tokenizers/unicode_regex/unicode_regex_tokenizer.rb +52 -0
  89. data/lib/twitter_cldr/tokenizers.rb +8 -4
  90. data/lib/twitter_cldr/utils/code_points.rb +1 -1
  91. data/lib/twitter_cldr/utils/range_set.rb +242 -0
  92. data/lib/twitter_cldr/utils/yaml.rb +17 -12
  93. data/lib/twitter_cldr/utils.rb +1 -1
  94. data/lib/twitter_cldr/version.rb +1 -1
  95. data/lib/twitter_cldr.rb +2 -1
  96. data/resources/custom/locales/sv/units.yml +8 -0
  97. data/resources/locales/af/calendars.yml +278 -224
  98. data/resources/locales/af/currencies.yml +954 -916
  99. data/resources/locales/af/languages.yml +583 -580
  100. data/resources/locales/af/layout.yml +5 -5
  101. data/resources/locales/af/lists.yml +23 -7
  102. data/resources/locales/af/numbers.yml +59 -54
  103. data/resources/locales/af/plurals.yml +2 -2
  104. data/resources/locales/af/rbnf.yml +261 -0
  105. data/resources/locales/af/territories.yml +264 -263
  106. data/resources/locales/ar/calendars.yml +287 -259
  107. data/resources/locales/ar/currencies.yml +1730 -1692
  108. data/resources/locales/ar/languages.yml +583 -580
  109. data/resources/locales/ar/layout.yml +5 -5
  110. data/resources/locales/ar/lists.yml +23 -7
  111. data/resources/locales/ar/numbers.yml +66 -61
  112. data/resources/locales/ar/plurals.yml +5 -8
  113. data/resources/locales/ar/rbnf.yml +519 -0
  114. data/resources/locales/ar/territories.yml +264 -263
  115. data/resources/locales/be/calendars.yml +238 -237
  116. data/resources/locales/be/currencies.yml +954 -917
  117. data/resources/locales/be/languages.yml +583 -580
  118. data/resources/locales/be/layout.yml +5 -5
  119. data/resources/locales/be/lists.yml +23 -7
  120. data/resources/locales/be/numbers.yml +62 -57
  121. data/resources/locales/be/plurals.yml +7 -4
  122. data/resources/locales/be/rbnf.yml +1288 -0
  123. data/resources/locales/be/territories.yml +264 -263
  124. data/resources/locales/bg/calendars.yml +278 -218
  125. data/resources/locales/bg/currencies.yml +955 -917
  126. data/resources/locales/bg/languages.yml +583 -580
  127. data/resources/locales/bg/layout.yml +5 -5
  128. data/resources/locales/bg/lists.yml +23 -7
  129. data/resources/locales/bg/numbers.yml +62 -57
  130. data/resources/locales/bg/plurals.yml +2 -2
  131. data/resources/locales/bg/rbnf.yml +280 -0
  132. data/resources/locales/bg/territories.yml +264 -263
  133. data/resources/locales/bn/calendars.yml +287 -225
  134. data/resources/locales/bn/currencies.yml +953 -916
  135. data/resources/locales/bn/languages.yml +583 -580
  136. data/resources/locales/bn/layout.yml +5 -5
  137. data/resources/locales/bn/lists.yml +23 -7
  138. data/resources/locales/bn/numbers.yml +62 -57
  139. data/resources/locales/bn/plurals.yml +2 -2
  140. data/resources/locales/bn/rbnf.yml +4 -0
  141. data/resources/locales/bn/territories.yml +264 -263
  142. data/resources/locales/ca/calendars.yml +278 -278
  143. data/resources/locales/ca/currencies.yml +953 -916
  144. data/resources/locales/ca/languages.yml +583 -580
  145. data/resources/locales/ca/layout.yml +5 -5
  146. data/resources/locales/ca/lists.yml +23 -7
  147. data/resources/locales/ca/numbers.yml +62 -57
  148. data/resources/locales/ca/plurals.yml +3 -2
  149. data/resources/locales/ca/rbnf.yml +756 -0
  150. data/resources/locales/ca/territories.yml +264 -263
  151. data/resources/locales/cs/calendars.yml +269 -262
  152. data/resources/locales/cs/currencies.yml +1483 -1172
  153. data/resources/locales/cs/languages.yml +583 -580
  154. data/resources/locales/cs/layout.yml +5 -5
  155. data/resources/locales/cs/lists.yml +23 -7
  156. data/resources/locales/cs/numbers.yml +64 -58
  157. data/resources/locales/cs/plurals.yml +6 -2
  158. data/resources/locales/cs/rbnf.yml +367 -0
  159. data/resources/locales/cs/territories.yml +264 -263
  160. data/resources/locales/cy/calendars.yml +275 -274
  161. data/resources/locales/cy/currencies.yml +1585 -1548
  162. data/resources/locales/cy/languages.yml +583 -580
  163. data/resources/locales/cy/layout.yml +5 -5
  164. data/resources/locales/cy/lists.yml +23 -7
  165. data/resources/locales/cy/numbers.yml +66 -61
  166. data/resources/locales/cy/plurals.yml +4 -3
  167. data/resources/locales/cy/rbnf.yml +298 -0
  168. data/resources/locales/cy/territories.yml +264 -263
  169. data/resources/locales/da/calendars.yml +281 -280
  170. data/resources/locales/da/currencies.yml +954 -916
  171. data/resources/locales/da/languages.yml +583 -580
  172. data/resources/locales/da/layout.yml +5 -5
  173. data/resources/locales/da/lists.yml +23 -7
  174. data/resources/locales/da/numbers.yml +62 -57
  175. data/resources/locales/da/plurals.yml +3 -2
  176. data/resources/locales/da/rbnf.yml +194 -0
  177. data/resources/locales/da/territories.yml +264 -263
  178. data/resources/locales/de/calendars.yml +294 -293
  179. data/resources/locales/de/currencies.yml +954 -916
  180. data/resources/locales/de/languages.yml +583 -580
  181. data/resources/locales/de/layout.yml +5 -5
  182. data/resources/locales/de/lists.yml +23 -7
  183. data/resources/locales/de/numbers.yml +62 -57
  184. data/resources/locales/de/plurals.yml +3 -2
  185. data/resources/locales/de/rbnf.yml +346 -0
  186. data/resources/locales/de/territories.yml +264 -263
  187. data/resources/locales/el/calendars.yml +279 -282
  188. data/resources/locales/el/currencies.yml +954 -916
  189. data/resources/locales/el/languages.yml +583 -580
  190. data/resources/locales/el/layout.yml +5 -5
  191. data/resources/locales/el/lists.yml +23 -7
  192. data/resources/locales/el/numbers.yml +62 -57
  193. data/resources/locales/el/plurals.yml +2 -2
  194. data/resources/locales/el/rbnf.yml +880 -0
  195. data/resources/locales/el/territories.yml +264 -263
  196. data/resources/locales/en/calendars.yml +192 -191
  197. data/resources/locales/en/currencies.yml +953 -915
  198. data/resources/locales/en/languages.yml +583 -580
  199. data/resources/locales/en/layout.yml +5 -5
  200. data/resources/locales/en/lists.yml +23 -7
  201. data/resources/locales/en/numbers.yml +62 -57
  202. data/resources/locales/en/plurals.yml +3 -2
  203. data/resources/locales/en/rbnf.yml +542 -0
  204. data/resources/locales/en/territories.yml +264 -263
  205. data/resources/locales/en-GB/calendars.yml +195 -194
  206. data/resources/locales/en-GB/currencies.yml +953 -915
  207. data/resources/locales/en-GB/languages.yml +583 -580
  208. data/resources/locales/en-GB/layout.yml +5 -5
  209. data/resources/locales/en-GB/lists.yml +23 -7
  210. data/resources/locales/en-GB/numbers.yml +62 -57
  211. data/resources/locales/en-GB/plurals.yml +2 -1
  212. data/resources/locales/en-GB/rbnf.yml +4 -0
  213. data/resources/locales/en-GB/territories.yml +264 -263
  214. data/resources/locales/es/calendars.yml +288 -238
  215. data/resources/locales/es/currencies.yml +953 -922
  216. data/resources/locales/es/languages.yml +583 -580
  217. data/resources/locales/es/layout.yml +5 -5
  218. data/resources/locales/es/lists.yml +23 -7
  219. data/resources/locales/es/numbers.yml +62 -57
  220. data/resources/locales/es/plurals.yml +2 -2
  221. data/resources/locales/es/rbnf.yml +913 -0
  222. data/resources/locales/es/territories.yml +264 -263
  223. data/resources/locales/eu/calendars.yml +277 -218
  224. data/resources/locales/eu/currencies.yml +953 -916
  225. data/resources/locales/eu/languages.yml +583 -580
  226. data/resources/locales/eu/layout.yml +5 -5
  227. data/resources/locales/eu/lists.yml +23 -7
  228. data/resources/locales/eu/numbers.yml +56 -51
  229. data/resources/locales/eu/plurals.yml +2 -2
  230. data/resources/locales/eu/rbnf.yml +4 -0
  231. data/resources/locales/eu/territories.yml +264 -263
  232. data/resources/locales/fa/calendars.yml +294 -293
  233. data/resources/locales/fa/currencies.yml +955 -916
  234. data/resources/locales/fa/languages.yml +583 -580
  235. data/resources/locales/fa/layout.yml +5 -5
  236. data/resources/locales/fa/lists.yml +23 -7
  237. data/resources/locales/fa/numbers.yml +62 -57
  238. data/resources/locales/fa/plurals.yml +2 -2
  239. data/resources/locales/fa/rbnf.yml +157 -0
  240. data/resources/locales/fa/territories.yml +264 -263
  241. data/resources/locales/fi/calendars.yml +284 -283
  242. data/resources/locales/fi/currencies.yml +953 -915
  243. data/resources/locales/fi/languages.yml +583 -580
  244. data/resources/locales/fi/layout.yml +5 -5
  245. data/resources/locales/fi/lists.yml +23 -7
  246. data/resources/locales/fi/numbers.yml +62 -57
  247. data/resources/locales/fi/plurals.yml +3 -2
  248. data/resources/locales/fi/rbnf.yml +206 -0
  249. data/resources/locales/fi/territories.yml +264 -263
  250. data/resources/locales/fil/calendars.yml +281 -230
  251. data/resources/locales/fil/currencies.yml +953 -916
  252. data/resources/locales/fil/languages.yml +583 -580
  253. data/resources/locales/fil/layout.yml +5 -5
  254. data/resources/locales/fil/lists.yml +23 -7
  255. data/resources/locales/fil/numbers.yml +62 -57
  256. data/resources/locales/fil/plurals.yml +3 -2
  257. data/resources/locales/fil/rbnf.yml +158 -0
  258. data/resources/locales/fil/territories.yml +264 -263
  259. data/resources/locales/fr/calendars.yml +297 -296
  260. data/resources/locales/fr/currencies.yml +968 -949
  261. data/resources/locales/fr/languages.yml +583 -580
  262. data/resources/locales/fr/layout.yml +5 -5
  263. data/resources/locales/fr/lists.yml +23 -7
  264. data/resources/locales/fr/numbers.yml +62 -57
  265. data/resources/locales/fr/plurals.yml +2 -2
  266. data/resources/locales/fr/rbnf.yml +621 -0
  267. data/resources/locales/fr/territories.yml +264 -263
  268. data/resources/locales/ga/calendars.yml +192 -191
  269. data/resources/locales/ga/currencies.yml +954 -916
  270. data/resources/locales/ga/languages.yml +583 -580
  271. data/resources/locales/ga/layout.yml +5 -5
  272. data/resources/locales/ga/lists.yml +23 -7
  273. data/resources/locales/ga/numbers.yml +62 -57
  274. data/resources/locales/ga/plurals.yml +4 -3
  275. data/resources/locales/ga/rbnf.yml +615 -0
  276. data/resources/locales/ga/territories.yml +264 -263
  277. data/resources/locales/gl/calendars.yml +283 -217
  278. data/resources/locales/gl/currencies.yml +953 -916
  279. data/resources/locales/gl/languages.yml +583 -580
  280. data/resources/locales/gl/layout.yml +5 -5
  281. data/resources/locales/gl/lists.yml +23 -7
  282. data/resources/locales/gl/numbers.yml +62 -57
  283. data/resources/locales/gl/plurals.yml +3 -2
  284. data/resources/locales/gl/rbnf.yml +4 -0
  285. data/resources/locales/gl/territories.yml +264 -263
  286. data/resources/locales/he/calendars.yml +248 -220
  287. data/resources/locales/he/currencies.yml +992 -932
  288. data/resources/locales/he/languages.yml +583 -580
  289. data/resources/locales/he/layout.yml +5 -5
  290. data/resources/locales/he/lists.yml +23 -7
  291. data/resources/locales/he/numbers.yml +64 -59
  292. data/resources/locales/he/plurals.yml +6 -3
  293. data/resources/locales/he/rbnf.yml +1029 -0
  294. data/resources/locales/he/territories.yml +264 -263
  295. data/resources/locales/hi/calendars.yml +284 -216
  296. data/resources/locales/hi/currencies.yml +953 -915
  297. data/resources/locales/hi/languages.yml +583 -580
  298. data/resources/locales/hi/layout.yml +5 -5
  299. data/resources/locales/hi/lists.yml +23 -7
  300. data/resources/locales/hi/numbers.yml +60 -55
  301. data/resources/locales/hi/plurals.yml +2 -2
  302. data/resources/locales/hi/rbnf.yml +430 -0
  303. data/resources/locales/hi/territories.yml +264 -263
  304. data/resources/locales/hr/calendars.yml +308 -307
  305. data/resources/locales/hr/currencies.yml +1248 -1504
  306. data/resources/locales/hr/languages.yml +583 -580
  307. data/resources/locales/hr/layout.yml +5 -5
  308. data/resources/locales/hr/lists.yml +23 -7
  309. data/resources/locales/hr/numbers.yml +63 -59
  310. data/resources/locales/hr/plurals.yml +12 -4
  311. data/resources/locales/hr/rbnf.yml +599 -0
  312. data/resources/locales/hr/territories.yml +264 -263
  313. data/resources/locales/hu/calendars.yml +285 -284
  314. data/resources/locales/hu/currencies.yml +954 -916
  315. data/resources/locales/hu/languages.yml +583 -580
  316. data/resources/locales/hu/layout.yml +5 -5
  317. data/resources/locales/hu/lists.yml +23 -7
  318. data/resources/locales/hu/numbers.yml +62 -57
  319. data/resources/locales/hu/plurals.yml +2 -2
  320. data/resources/locales/hu/rbnf.yml +363 -0
  321. data/resources/locales/hu/territories.yml +264 -263
  322. data/resources/locales/id/calendars.yml +276 -275
  323. data/resources/locales/id/currencies.yml +954 -916
  324. data/resources/locales/id/languages.yml +583 -580
  325. data/resources/locales/id/layout.yml +5 -5
  326. data/resources/locales/id/lists.yml +23 -7
  327. data/resources/locales/id/numbers.yml +61 -56
  328. data/resources/locales/id/plurals.yml +2 -2
  329. data/resources/locales/id/rbnf.yml +121 -0
  330. data/resources/locales/id/territories.yml +264 -263
  331. data/resources/locales/is/calendars.yml +281 -242
  332. data/resources/locales/is/currencies.yml +954 -916
  333. data/resources/locales/is/languages.yml +583 -580
  334. data/resources/locales/is/layout.yml +5 -5
  335. data/resources/locales/is/lists.yml +23 -7
  336. data/resources/locales/is/numbers.yml +62 -57
  337. data/resources/locales/is/plurals.yml +5 -2
  338. data/resources/locales/is/rbnf.yml +326 -0
  339. data/resources/locales/is/territories.yml +264 -263
  340. data/resources/locales/it/calendars.yml +275 -260
  341. data/resources/locales/it/currencies.yml +953 -920
  342. data/resources/locales/it/languages.yml +583 -580
  343. data/resources/locales/it/layout.yml +5 -5
  344. data/resources/locales/it/lists.yml +23 -7
  345. data/resources/locales/it/numbers.yml +59 -54
  346. data/resources/locales/it/plurals.yml +3 -2
  347. data/resources/locales/it/rbnf.yml +1189 -0
  348. data/resources/locales/it/territories.yml +264 -263
  349. data/resources/locales/ja/calendars.yml +269 -207
  350. data/resources/locales/ja/currencies.yml +953 -915
  351. data/resources/locales/ja/languages.yml +583 -580
  352. data/resources/locales/ja/layout.yml +5 -5
  353. data/resources/locales/ja/lists.yml +23 -7
  354. data/resources/locales/ja/numbers.yml +62 -57
  355. data/resources/locales/ja/plurals.yml +2 -2
  356. data/resources/locales/ja/rbnf.yml +209 -0
  357. data/resources/locales/ja/territories.yml +264 -263
  358. data/resources/locales/ko/calendars.yml +246 -213
  359. data/resources/locales/ko/currencies.yml +953 -915
  360. data/resources/locales/ko/languages.yml +583 -580
  361. data/resources/locales/ko/layout.yml +5 -5
  362. data/resources/locales/ko/lists.yml +23 -7
  363. data/resources/locales/ko/numbers.yml +60 -55
  364. data/resources/locales/ko/plurals.yml +2 -2
  365. data/resources/locales/ko/rbnf.yml +722 -0
  366. data/resources/locales/ko/territories.yml +264 -263
  367. data/resources/locales/lv/calendars.yml +286 -285
  368. data/resources/locales/lv/currencies.yml +1122 -1084
  369. data/resources/locales/lv/languages.yml +583 -580
  370. data/resources/locales/lv/layout.yml +5 -5
  371. data/resources/locales/lv/lists.yml +23 -7
  372. data/resources/locales/lv/numbers.yml +63 -58
  373. data/resources/locales/lv/plurals.yml +11 -3
  374. data/resources/locales/lv/rbnf.yml +238 -0
  375. data/resources/locales/lv/territories.yml +264 -263
  376. data/resources/locales/ms/calendars.yml +280 -279
  377. data/resources/locales/ms/currencies.yml +954 -916
  378. data/resources/locales/ms/languages.yml +583 -580
  379. data/resources/locales/ms/layout.yml +5 -5
  380. data/resources/locales/ms/lists.yml +23 -7
  381. data/resources/locales/ms/numbers.yml +62 -57
  382. data/resources/locales/ms/plurals.yml +2 -2
  383. data/resources/locales/ms/rbnf.yml +130 -0
  384. data/resources/locales/ms/territories.yml +264 -263
  385. data/resources/locales/nb/calendars.yml +284 -283
  386. data/resources/locales/nb/currencies.yml +958 -916
  387. data/resources/locales/nb/languages.yml +583 -580
  388. data/resources/locales/nb/layout.yml +5 -5
  389. data/resources/locales/nb/lists.yml +23 -7
  390. data/resources/locales/nb/numbers.yml +62 -57
  391. data/resources/locales/nb/plurals.yml +2 -2
  392. data/resources/locales/nb/rbnf.yml +191 -0
  393. data/resources/locales/nb/territories.yml +264 -263
  394. data/resources/locales/nl/calendars.yml +285 -284
  395. data/resources/locales/nl/currencies.yml +953 -917
  396. data/resources/locales/nl/languages.yml +583 -580
  397. data/resources/locales/nl/layout.yml +5 -5
  398. data/resources/locales/nl/lists.yml +23 -7
  399. data/resources/locales/nl/numbers.yml +62 -57
  400. data/resources/locales/nl/plurals.yml +3 -2
  401. data/resources/locales/nl/rbnf.yml +320 -0
  402. data/resources/locales/nl/territories.yml +264 -263
  403. data/resources/locales/pl/calendars.yml +288 -287
  404. data/resources/locales/pl/currencies.yml +1326 -1284
  405. data/resources/locales/pl/languages.yml +583 -580
  406. data/resources/locales/pl/layout.yml +5 -5
  407. data/resources/locales/pl/lists.yml +23 -7
  408. data/resources/locales/pl/numbers.yml +64 -59
  409. data/resources/locales/pl/plurals.yml +11 -4
  410. data/resources/locales/pl/rbnf.yml +410 -0
  411. data/resources/locales/pl/territories.yml +264 -263
  412. data/resources/locales/pt/calendars.yml +290 -289
  413. data/resources/locales/pt/currencies.yml +954 -916
  414. data/resources/locales/pt/languages.yml +583 -580
  415. data/resources/locales/pt/layout.yml +5 -5
  416. data/resources/locales/pt/lists.yml +23 -7
  417. data/resources/locales/pt/numbers.yml +62 -57
  418. data/resources/locales/pt/plurals.yml +4 -2
  419. data/resources/locales/pt/rbnf.yml +586 -0
  420. data/resources/locales/pt/territories.yml +264 -263
  421. data/resources/locales/ro/calendars.yml +284 -283
  422. data/resources/locales/ro/currencies.yml +1170 -1132
  423. data/resources/locales/ro/languages.yml +583 -580
  424. data/resources/locales/ro/layout.yml +5 -5
  425. data/resources/locales/ro/lists.yml +23 -7
  426. data/resources/locales/ro/numbers.yml +63 -58
  427. data/resources/locales/ro/plurals.yml +5 -2
  428. data/resources/locales/ro/rbnf.yml +250 -0
  429. data/resources/locales/ro/territories.yml +264 -263
  430. data/resources/locales/ru/calendars.yml +282 -281
  431. data/resources/locales/ru/currencies.yml +1118 -1247
  432. data/resources/locales/ru/languages.yml +583 -580
  433. data/resources/locales/ru/layout.yml +5 -5
  434. data/resources/locales/ru/lists.yml +23 -7
  435. data/resources/locales/ru/numbers.yml +63 -59
  436. data/resources/locales/ru/plurals.yml +8 -4
  437. data/resources/locales/ru/rbnf.yml +385 -0
  438. data/resources/locales/ru/territories.yml +264 -263
  439. data/resources/locales/sk/calendars.yml +254 -251
  440. data/resources/locales/sk/currencies.yml +1174 -1008
  441. data/resources/locales/sk/languages.yml +583 -580
  442. data/resources/locales/sk/layout.yml +5 -5
  443. data/resources/locales/sk/lists.yml +23 -7
  444. data/resources/locales/sk/numbers.yml +64 -58
  445. data/resources/locales/sk/plurals.yml +6 -2
  446. data/resources/locales/sk/rbnf.yml +304 -0
  447. data/resources/locales/sk/territories.yml +264 -263
  448. data/resources/locales/sq/calendars.yml +283 -206
  449. data/resources/locales/sq/currencies.yml +954 -916
  450. data/resources/locales/sq/languages.yml +583 -580
  451. data/resources/locales/sq/layout.yml +5 -5
  452. data/resources/locales/sq/lists.yml +23 -7
  453. data/resources/locales/sq/numbers.yml +62 -57
  454. data/resources/locales/sq/plurals.yml +2 -2
  455. data/resources/locales/sq/rbnf.yml +181 -0
  456. data/resources/locales/sq/territories.yml +264 -263
  457. data/resources/locales/sr/calendars.yml +290 -289
  458. data/resources/locales/sr/currencies.yml +1251 -1508
  459. data/resources/locales/sr/languages.yml +583 -580
  460. data/resources/locales/sr/layout.yml +5 -5
  461. data/resources/locales/sr/lists.yml +23 -7
  462. data/resources/locales/sr/numbers.yml +62 -58
  463. data/resources/locales/sr/plurals.yml +12 -4
  464. data/resources/locales/sr/rbnf.yml +429 -0
  465. data/resources/locales/sr/territories.yml +264 -263
  466. data/resources/locales/sv/calendars.yml +290 -289
  467. data/resources/locales/sv/currencies.yml +960 -930
  468. data/resources/locales/sv/languages.yml +583 -580
  469. data/resources/locales/sv/layout.yml +5 -5
  470. data/resources/locales/sv/lists.yml +23 -7
  471. data/resources/locales/sv/numbers.yml +63 -58
  472. data/resources/locales/sv/plurals.yml +3 -2
  473. data/resources/locales/sv/rbnf.yml +692 -0
  474. data/resources/locales/sv/territories.yml +264 -263
  475. data/resources/locales/ta/calendars.yml +281 -266
  476. data/resources/locales/ta/currencies.yml +953 -915
  477. data/resources/locales/ta/languages.yml +583 -580
  478. data/resources/locales/ta/layout.yml +5 -5
  479. data/resources/locales/ta/lists.yml +23 -7
  480. data/resources/locales/ta/numbers.yml +62 -57
  481. data/resources/locales/ta/plurals.yml +2 -2
  482. data/resources/locales/ta/rbnf.yml +241 -0
  483. data/resources/locales/ta/territories.yml +264 -263
  484. data/resources/locales/th/calendars.yml +278 -289
  485. data/resources/locales/th/currencies.yml +953 -915
  486. data/resources/locales/th/languages.yml +583 -580
  487. data/resources/locales/th/layout.yml +5 -5
  488. data/resources/locales/th/lists.yml +23 -7
  489. data/resources/locales/th/numbers.yml +62 -57
  490. data/resources/locales/th/plurals.yml +2 -2
  491. data/resources/locales/th/rbnf.yml +119 -0
  492. data/resources/locales/th/territories.yml +264 -263
  493. data/resources/locales/tr/calendars.yml +287 -286
  494. data/resources/locales/tr/currencies.yml +953 -916
  495. data/resources/locales/tr/languages.yml +583 -580
  496. data/resources/locales/tr/layout.yml +5 -5
  497. data/resources/locales/tr/lists.yml +23 -7
  498. data/resources/locales/tr/numbers.yml +61 -56
  499. data/resources/locales/tr/plurals.yml +2 -2
  500. data/resources/locales/tr/rbnf.yml +277 -0
  501. data/resources/locales/tr/territories.yml +264 -263
  502. data/resources/locales/uk/calendars.yml +286 -252
  503. data/resources/locales/uk/currencies.yml +1311 -1070
  504. data/resources/locales/uk/languages.yml +583 -580
  505. data/resources/locales/uk/layout.yml +5 -5
  506. data/resources/locales/uk/lists.yml +23 -7
  507. data/resources/locales/uk/numbers.yml +64 -59
  508. data/resources/locales/uk/plurals.yml +10 -4
  509. data/resources/locales/uk/rbnf.yml +430 -0
  510. data/resources/locales/uk/territories.yml +264 -263
  511. data/resources/locales/ur/calendars.yml +267 -228
  512. data/resources/locales/ur/currencies.yml +954 -916
  513. data/resources/locales/ur/languages.yml +583 -580
  514. data/resources/locales/ur/layout.yml +5 -5
  515. data/resources/locales/ur/lists.yml +23 -7
  516. data/resources/locales/ur/numbers.yml +62 -57
  517. data/resources/locales/ur/plurals.yml +3 -2
  518. data/resources/locales/ur/rbnf.yml +4 -0
  519. data/resources/locales/ur/territories.yml +264 -263
  520. data/resources/locales/vi/calendars.yml +256 -236
  521. data/resources/locales/vi/currencies.yml +953 -915
  522. data/resources/locales/vi/languages.yml +583 -580
  523. data/resources/locales/vi/layout.yml +5 -5
  524. data/resources/locales/vi/lists.yml +23 -7
  525. data/resources/locales/vi/numbers.yml +62 -57
  526. data/resources/locales/vi/plurals.yml +2 -2
  527. data/resources/locales/vi/rbnf.yml +164 -0
  528. data/resources/locales/vi/territories.yml +264 -263
  529. data/resources/locales/zh/calendars.yml +266 -265
  530. data/resources/locales/zh/currencies.yml +953 -915
  531. data/resources/locales/zh/languages.yml +583 -580
  532. data/resources/locales/zh/layout.yml +5 -5
  533. data/resources/locales/zh/lists.yml +23 -7
  534. data/resources/locales/zh/numbers.yml +62 -57
  535. data/resources/locales/zh/plurals.yml +2 -2
  536. data/resources/locales/zh/rbnf.yml +689 -0
  537. data/resources/locales/zh/territories.yml +264 -263
  538. data/resources/locales/zh-Hant/calendars.yml +266 -265
  539. data/resources/locales/zh-Hant/currencies.yml +955 -915
  540. data/resources/locales/zh-Hant/languages.yml +583 -580
  541. data/resources/locales/zh-Hant/layout.yml +5 -5
  542. data/resources/locales/zh-Hant/lists.yml +23 -7
  543. data/resources/locales/zh-Hant/numbers.yml +62 -57
  544. data/resources/locales/zh-Hant/plurals.yml +2 -2
  545. data/resources/locales/zh-Hant/rbnf.yml +647 -0
  546. data/resources/locales/zh-Hant/territories.yml +264 -263
  547. data/resources/shared/currency_digits_and_rounding.yml +67 -64
  548. data/resources/shared/numbering_systems.yml +176 -0
  549. data/resources/shared/rbnf_root.yml +1573 -0
  550. data/resources/shared/segments/segments_root.yml +728 -0
  551. data/resources/shared/segments/tailorings/en.yml +8 -0
  552. data/resources/uli/segments/de.yml +128 -0
  553. data/resources/uli/segments/en.yml +154 -0
  554. data/resources/uli/segments/es.yml +112 -0
  555. data/resources/uli/segments/fr.yml +47 -0
  556. data/resources/uli/segments/it.yml +37 -0
  557. data/resources/uli/segments/pt.yml +173 -0
  558. data/resources/uli/segments/ru.yml +10 -0
  559. data/resources/unicode_data/casefolding.yml +4765 -0
  560. data/resources/unicode_data/indices/bidi_class.yml +4572 -0
  561. data/resources/unicode_data/indices/bidi_mirrored.yml +3087 -0
  562. data/resources/unicode_data/indices/category.yml +10918 -0
  563. data/resources/unicode_data/indices/keys.yml +101 -0
  564. data/resources/unicode_data/properties/line_break.yml +9269 -0
  565. data/resources/unicode_data/properties/sentence_break.yml +8067 -0
  566. data/resources/unicode_data/properties/word_break.yml +3001 -0
  567. data/spec/collation/collation_spec.rb +2 -1
  568. data/spec/collation/collator_spec.rb +4 -3
  569. data/spec/collation/tailoring_spec.rb +2 -2
  570. data/spec/collation/tailoring_tests/he.txt +5 -2
  571. data/spec/{tokenizers/calendars → data_readers}/additional_date_format_selector_spec.rb +13 -13
  572. data/spec/data_readers/date_time_data_reader_spec.rb +26 -0
  573. data/spec/data_readers/number_data_reader_spec.rb +18 -0
  574. data/spec/data_readers/timespan_data_reader.rb +22 -0
  575. data/spec/formatters/calendars/datetime_formatter_spec.rb +18 -22
  576. data/spec/formatters/list_formatter_spec.rb +16 -87
  577. data/spec/formatters/numbers/abbreviated/abbreviated_number_formatter_spec.rb +15 -59
  578. data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +32 -17
  579. data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +33 -17
  580. data/spec/formatters/numbers/currency_formatter_spec.rb +18 -13
  581. data/spec/formatters/numbers/decimal_formatter_spec.rb +16 -18
  582. data/spec/formatters/numbers/number_formatter_spec.rb +40 -31
  583. data/spec/formatters/numbers/percent_formatter_spec.rb +14 -6
  584. data/spec/formatters/numbers/rbnf/allowed_failures.yml +74 -0
  585. data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +706 -0
  586. data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +706 -0
  587. data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +1174 -0
  588. data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +706 -0
  589. data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +1291 -0
  590. data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +1174 -0
  591. data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +823 -0
  592. data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +940 -0
  593. data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +940 -0
  594. data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +940 -0
  595. data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +1174 -0
  596. data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +1291 -0
  597. data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +1291 -0
  598. data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +1642 -0
  599. data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +1291 -0
  600. data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +589 -0
  601. data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +706 -0
  602. data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +706 -0
  603. data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +1408 -0
  604. data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +940 -0
  605. data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +1291 -0
  606. data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +1057 -0
  607. data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +823 -0
  608. data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +1174 -0
  609. data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +940 -0
  610. data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +706 -0
  611. data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +823 -0
  612. data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +1174 -0
  613. data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +823 -0
  614. data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +1408 -0
  615. data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +706 -0
  616. data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +706 -0
  617. data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +940 -0
  618. data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +706 -0
  619. data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +823 -0
  620. data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +1174 -0
  621. data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +823 -0
  622. data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +823 -0
  623. data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +823 -0
  624. data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +706 -0
  625. data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +940 -0
  626. data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +1876 -0
  627. data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +706 -0
  628. data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +706 -0
  629. data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +706 -0
  630. data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +823 -0
  631. data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +1291 -0
  632. data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +706 -0
  633. data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +940 -0
  634. data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +940 -0
  635. data/spec/formatters/numbers/rbnf/rbnf_spec.rb +98 -0
  636. data/spec/formatters/plurals/plural_formatter_spec.rb +4 -4
  637. data/spec/formatters/plurals/rules_spec.rb +5 -5
  638. data/spec/localized/localized_date_spec.rb +1 -1
  639. data/spec/localized/localized_datetime_spec.rb +8 -13
  640. data/spec/localized/localized_number_spec.rb +17 -32
  641. data/spec/localized/localized_object_spec.rb +0 -5
  642. data/spec/localized/localized_string_spec.rb +40 -2
  643. data/spec/localized/localized_time_spec.rb +3 -6
  644. data/spec/localized/localized_timespan_spec.rb +144 -0
  645. data/spec/normalization_spec.rb +12 -12
  646. data/spec/parsers/number_parser_spec.rb +5 -5
  647. data/spec/parsers/parser_spec.rb +60 -0
  648. data/spec/parsers/segmentation_parser_spec.rb +96 -0
  649. data/spec/parsers/symbol_table_spec.rb +32 -0
  650. data/spec/parsers/unicode_regex/character_class_spec.rb +117 -0
  651. data/spec/parsers/unicode_regex/character_range_spec.rb +21 -0
  652. data/spec/parsers/unicode_regex/character_set_spec.rb +36 -0
  653. data/spec/parsers/unicode_regex/literal_spec.rb +34 -0
  654. data/spec/parsers/unicode_regex/unicode_string_spec.rb +22 -0
  655. data/spec/parsers/unicode_regex_parser_spec.rb +86 -0
  656. data/spec/readme_spec.rb +8 -269
  657. data/spec/shared/break_iterator_spec.rb +72 -0
  658. data/spec/shared/calendar_spec.rb +5 -4
  659. data/spec/shared/casefolder_spec.rb +30 -0
  660. data/spec/shared/casefolding.txt +251 -0
  661. data/spec/shared/casefolding_expected.txt +251 -0
  662. data/spec/shared/code_point_spec.rb +44 -14
  663. data/spec/shared/numbering_system_spec.rb +41 -0
  664. data/spec/shared/territories_spec.rb +14 -6
  665. data/spec/shared/unicode_regex_spec.rb +203 -0
  666. data/spec/spec_helper.rb +17 -0
  667. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +26 -30
  668. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +11 -90
  669. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -5
  670. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +17 -7
  671. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +28 -27
  672. data/spec/tokenizers/segmentation/segmentation_tokenizer_spec.rb +40 -0
  673. data/spec/tokenizers/unicode_regex/unicode_regex_tokenizer_spec.rb +190 -0
  674. data/spec/utils/range_set_spec.rb +171 -0
  675. data/spec/utils/yaml/yaml_spec.rb +62 -51
  676. data/twitter_cldr.gemspec +1 -1
  677. metadata +199 -30
  678. data/lib/twitter_cldr/formatters/base.rb +0 -47
  679. data/lib/twitter_cldr/formatters/calendars/date_formatter.rb +0 -19
  680. data/lib/twitter_cldr/formatters/calendars/time_formatter.rb +0 -19
  681. data/lib/twitter_cldr/normalization/base.rb +0 -37
  682. data/lib/twitter_cldr/normalization/hangul.rb +0 -79
  683. data/lib/twitter_cldr/normalization/nfc.rb +0 -24
  684. data/lib/twitter_cldr/normalization/nfd.rb +0 -26
  685. data/lib/twitter_cldr/normalization/nfkc.rb +0 -114
  686. data/lib/twitter_cldr/normalization/nfkd.rb +0 -120
  687. data/lib/twitter_cldr/normalization/quick_check.rb +0 -41
  688. data/lib/twitter_cldr/tokenizers/base.rb +0 -169
  689. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -131
  690. data/lib/twitter_cldr/utils/territories.rb +0 -56
  691. data/spec/formatters/base_spec.rb +0 -18
  692. data/spec/formatters/calendars/timespan_formatter_spec.rb +0 -112
  693. data/spec/normalization/NormalizationTestShort.txt +0 -602
  694. data/spec/normalization/base_spec.rb +0 -16
  695. data/spec/normalization/hangul_spec.rb +0 -42
  696. data/spec/normalization/normalization_spec.rb +0 -113
  697. data/spec/tokenizers/base_spec.rb +0 -259
  698. data/spec/utils/territories_spec.rb +0 -16
@@ -1,580 +1,583 @@
1
- ---
2
- :vi:
3
- :languages:
4
- :aa: Tiếng Afar
5
- :ab: Tiếng Abkhazia
6
- :ace: Tiếng Achinese
7
- :ach: Tiếng Acoli
8
- :ada: Tiếng Adangme
9
- :ady: Tiếng Adyghe
10
- :ae: Tiếng Avestan
11
- :af: Tiếng Nam Phi
12
- :afa: Ngôn ngữ Phi-Á
13
- :afh: Tiếng Afrihili
14
- :agq: Tiếng Aghem
15
- :ain: Tiếng Ainu
16
- :ak: Tiếng Akan
17
- :akk: Tiếng Akkadia
18
- :ale: Tiếng Aleut
19
- :alg: Ngôn ngữ Algonquin
20
- :alt: Tiếng Altai Miền Nam
21
- :am: Tiếng Amharic
22
- :an: Tiếng Aragon
23
- :ang: Tiếng Anh cổ
24
- :anp: Tiếng Angika
25
- :apa: Ngôn ngữ Apache
26
- :ar: Tiếng Ả Rập
27
- :ar-001: Modern Standard Arabic
28
- :arc: Tiếng Aramaic
29
- :arn: Tiếng Araucanian
30
- :arp: Tiếng Arapaho
31
- :art: Ngôn ngữ Nhân tạo
32
- :arw: Tiếng Arawak
33
- :as: Tiếng Assam
34
- :asa: Tiếng Asu
35
- :ast: Tiếng Asturias
36
- :ath: Ngôn ngữ Athapascan
37
- :aus: Ngôn ngữ Châu Úc
38
- :av: Tiếng Avaric
39
- :awa: Tiếng Awadhi
40
- :ay: Tiếng Aymara
41
- :az: Tiếng Azeri
42
- :ba: Tiếng Bashkir
43
- :bad: Tiếng Banda
44
- :bai: Ngôn ngữ Bamileke
45
- :bal: Tiếng Baluchi
46
- :ban: Tiếng Bali
47
- :bas: Tiếng Basaa
48
- :bat: Ngôn ngữ Baltic
49
- :bax: Tiếng Bamun
50
- :bbj: Tiếng Ghomala
51
- :be: Tiếng Bê-la-rút
52
- :bej: Tiếng Beja
53
- :bem: Tiếng Bemba
54
- :ber: Tiếng Berber
55
- :bez: Tiếng Bena
56
- :bfd: Tiếng Bafut
57
- :bg: Tiếng Bun-ga-ri
58
- :bh: Tiếng Bihari
59
- :bho: Tiếng Bhojpuri
60
- :bi: Tiếng Bislama
61
- :bik: Tiếng Bikol
62
- :bin: Tiếng Bini
63
- :bkm: Tiếng Kom
64
- :bla: Tiếng Siksika
65
- :bm: Tiếng Bambara
66
- :bn: Tiếng Bengali
67
- :bnt: Tiếng Ban-tu
68
- :bo: Tiếng Tây Tạng
69
- :br: Tiếng Breton
70
- :bra: Tiếng Braj
71
- :brx: Tiếng Bodo
72
- :bs: Tiếng Nam Tư
73
- :bss: Tiếng Akoose
74
- :btk: Tiếng Batak
75
- :bua: Tiếng Buriat
76
- :bug: Tiếng Bugin
77
- :bum: Tiếng Bulu
78
- :byn: Tiếng Blin
79
- :byv: Tiếng Medumba
80
- :ca: Tiếng Ca-ta-lăng
81
- :cad: Tiếng Caddo
82
- :cai: Ngôn ngữ Thổ dân Trung Mỹ
83
- :car: Tiếng Carib
84
- :cau: Ngôn ngữ Cáp-ca
85
- :cay: Tiếng Cayuga
86
- :cch: Tiếng Atsam
87
- :ce: Tiếng Chechen
88
- :ceb: Tiếng Cebuano
89
- :cel: Ngôn ngữ Xen-tơ
90
- :cgg: Tiếng Chiga
91
- :ch: Tiếng Chamorro
92
- :chb: Tiếng Chibcha
93
- :chg: Tiếng Chagatai
94
- :chk: Tiếng Chuuk
95
- :chm: Tiếng Mari
96
- :chn: Biệt ngữ Chinook
97
- :cho: Tiếng Choctaw
98
- :chp: Tiếng Chipewyan
99
- :chr: Tiếng Cherokee
100
- :chy: Tiếng Cheyenne
101
- :ckb: Tiếng Kurd Sorani
102
- :cmc: Ngôn ngữ Chamic
103
- :co: Tiếng Corse
104
- :cop: Tiếng Coptic
105
- :cpe: Tiếng Creole hoặc Pidgin gốc Anh
106
- :cpf: Tiếng Creole hoặc Pidgin gốc Pháp
107
- :cpp: Tiếng Creole hoặc Pidgin gốc Bồ Đào Nha
108
- :cr: Tiếng Cree
109
- :crh: Tiếng Thổ Nhĩ Kỳ Crimean
110
- :crp: Tiếng Creole hoặc Pidgin
111
- :cs: Tiếng Séc
112
- :csb: Tiếng Kashubia
113
- :cu: Tiếng Slavơ Nhà thờ
114
- :cus: Tiếng Cushit
115
- :cv: Tiếng Chuvash
116
- :cy: Tiếng Xentơ
117
- :da: Tiếng Đan Mạch
118
- :dak: Tiếng Dakota
119
- :dar: Tiếng Dargwa
120
- :dav: Tiếng Taita
121
- :day: Tiếng Dayak
122
- :de: Tiếng Đức
123
- :de-AT: Austrian German
124
- :de-CH: Tiếng Đức Chuẩn (Thụy Sĩ)
125
- :del: Tiếng Delaware
126
- :den: Tiếng Slave
127
- :dgr: Tiếng Dogrib
128
- :din: Tiếng Dinka
129
- :dje: Tiếng Zarma
130
- :doi: Tiếng Dogri
131
- :dra: Ngôn ngữ Dravidia
132
- :dsb: Tiếng Hạ Sorbia
133
- :dua: Tiếng Duala
134
- :dum: Tiếng Hà Lan Trung cổ
135
- :dv: Tiếng Divehi
136
- :dyo: Tiếng Jola-Fonyi
137
- :dyu: Tiếng Dyula
138
- :dz: Tiếng Dzongkha
139
- :dzg: Tiếng Dazaga
140
- :ebu: Tiếng Embu
141
- :ee: Tiếng Ewe
142
- :efi: Tiếng Efik
143
- :egy: Tiếng Ai Cập cổ
144
- :eka: Tiếng Ekajuk
145
- :el: Tiếng Hy Lạp
146
- :elx: Tiếng Elamite
147
- :en: Tiếng Anh
148
- :en-AU: Australian English
149
- :en-CA: Tiếng Anh (Canada)
150
- :en-GB: Tiếng Anh (Anh)
151
- :en-US: Tiếng Anh (Mỹ)
152
- :enm: Tiếng Anh Trung cổ
153
- :eo: Tiếng Quốc Tế Ngữ
154
- :es: Tiếng Tây Ban Nha
155
- :es-419: Tiếng Tây Ban Nha (Mỹ La tinh)
156
- :es-ES: Tiếng Tây Ban Nha (I-bê-ri)
157
- :et: Tiếng E-xtô-ni-a
158
- :eu: Tiếng Basque
159
- :ewo: Tiếng Ewondo
160
- :fa: Tiếng Ba Tư
161
- :fan: Tiếng Fang
162
- :fat: Tiếng Fanti
163
- :ff: Tiếng Fulah
164
- :fi: Tiếng Phần Lan
165
- :fil: Tiếng Philipin
166
- :fiu: Ngôn ngữ Finno-Ugrian
167
- :fj: Tiếng Fiji
168
- :fo: Tiếng Faore
169
- :fon: Tiếng Fon
170
- :fr: Tiếng Pháp
171
- :fr-CA: Tiếng Pháp (Canada)
172
- :fr-CH: Swiss French
173
- :frm: Tiếng Pháp Trung cổ
174
- :fro: Tiếng Pháp cổ
175
- :frr: Tiếng Frisian Miền Bắc
176
- :frs: Tiếng Frisian Miền Đông
177
- :fur: Tiếng Friulian
178
- :fy: Tiếng Frisian
179
- :ga: Tiếng Ai-len
180
- :gaa: Ga
181
- :gay: Tiếng Gayo
182
- :gba: Tiếng Gbaya
183
- :gd: Tiếng Xentơ (Xcốt len)
184
- :gem: Ngôn ngữ Giéc-man
185
- :gez: Tiếng Geez
186
- :gil: Tiếng Gilbert
187
- :gl: Tiếng Galician
188
- :gmh: Tiếng Thượng Giéc-man Trung cổ
189
- :gn: Tiếng Guarani
190
- :goh: Tiếng Thượng Giéc-man cổ
191
- :gon: Tiếng Gondi
192
- :gor: Tiếng Gorontalo
193
- :got: Tiếng Gô-tích
194
- :grb: Tiếng Grebo
195
- :grc: Tiếng Hy Lạp cổ
196
- :gsw: Tiếng Đức Thụy
197
- :gu: Tiếng Gujarati
198
- :guz: Tiếng Gusii
199
- :gv: Tiếng Manx
200
- :gwi: Tiếng Gwichʼin
201
- :ha: Tiếng Hausa
202
- :hai: Tiếng Haida
203
- :haw: Tiếng Hawaii
204
- :he: Tiếng Hê-brơ
205
- :hi: Tiếng Hin-đi
206
- :hil: Tiếng Hiligaynon
207
- :him: Tiếng Himachali
208
- :hit: Tiếng Hittite
209
- :hmn: Tiếng Hmông
210
- :ho: Tiếng Hiri Motu
211
- :hr: Tiếng Crô-a-ti-a
212
- :hsb: Tiếng Thượng Sorbia
213
- :ht: Tiếng Haiti
214
- :hu: Tiếng Hung-ga-ri
215
- :hup: Tiếng Hupa
216
- :hy: Tiếng Ác-mê-ni
217
- :hz: Tiếng Herero
218
- :ia: Tiếng Khoa Học Quốc Tế
219
- :iba: Tiếng Iban
220
- :ibb: Tiếng Ibibio
221
- :id: Tiếng In-đô-nê-xia
222
- :ie: Tiếng Interlingue
223
- :ig: Tiếng Igbo
224
- :ii: Tiếng Di Tứ Xuyên
225
- :ijo: Tiếng Ijo
226
- :ik: Tiếng Inupiaq
227
- :ilo: Tiếng Iloko
228
- :inc: Ngôn ngữ Indic
229
- :ine: Ngôn ngữ Ấn-Âu
230
- :inh: Tiếng Ingush
231
- :io: Tiếng Ido
232
- :ira: Ngôn ngữ Iran
233
- :iro: Ngôn ngữ Iroquoia
234
- :is: Tiếng Ai-xơ-len
235
- :it: Tiếng Ý
236
- :iu: Tiếng Inuktitut
237
- :ja: Tiếng Nhật
238
- :jbo: Tiếng Lojban
239
- :jgo: Ngomba
240
- :jmc: Tiếng Machame
241
- :jpr: Tiếng Judeo-Ba Tư
242
- :jrb: Tiếng Judeo-Ả Rập
243
- :jv: Tiếng Gia-va
244
- :ka: Tiếng Georgian
245
- :kaa: Tiếng Kara-Kalpak
246
- :kab: Tiếng Kabyle
247
- :kac: Tiếng Kachin
248
- :kaj: Tiếng Jju
249
- :kam: Tiếng Kamba
250
- :kar: Tiếng Karen
251
- :kaw: Tiếng Kawi
252
- :kbd: Tiếng Kabardian
253
- :kbl: Tiếng Kanembu
254
- :kcg: Tiếng Tyap
255
- :kde: Tiếng Makonde
256
- :kea: Tiếng Kabuverdianu
257
- :kfo: Tiếng Koro
258
- :kg: Tiếng Congo
259
- :kha: Tiếng Khasi
260
- :khi: Ngôn ngữ Khoisan
261
- :kho: Tiếng Khotan
262
- :khq: Tiếng Koyra Chiini
263
- :ki: Tiếng Kikuyu
264
- :kj: Tiếng Kuanyama
265
- :kk: Tiếng Kazakh
266
- :kkj: Tiếng Kako
267
- :kl: Tiếng Kalaallisut
268
- :kln: Tiếng Kalenjin
269
- :km: Tiếng Campuchia
270
- :kmb: Tiếng Kimbundu
271
- :kn: Tiếng Kan-na-đa
272
- :ko: Tiếng Hàn Quốc
273
- :kok: Tiếng Konkani
274
- :kos: Tiếng Kosrae
275
- :kpe: Tiếng Kpelle
276
- :kr: Tiếng Kanuri
277
- :krc: Tiếng Karachay-Balkar
278
- :krl: Tiếng Karelian
279
- :kro: Tiếng Kru
280
- :kru: Tiếng Kurukh
281
- :ks: Tiếng Kashmiri
282
- :ksb: Tiếng Shambala
283
- :ksf: Tiếng Bafia
284
- :ksh: Tiếng Cologne
285
- :ku: Tiếng Kurd
286
- :kum: Tiếng Kumyk
287
- :kut: Tiếng Kutenai
288
- :kv: Tiếng Komi
289
- :kw: Tiếng Cornish
290
- :ky: Tiếng Kyrgyz
291
- :la: Tiếng La-tinh
292
- :lad: Tiếng Ladino
293
- :lag: Tiếng Langi
294
- :lah: Tiếng Lahnda
295
- :lam: Tiếng Lamba
296
- :lb: Tiếng Luxembourg
297
- :lez: Tiếng Lezghian
298
- :lg: Tiếng Ganda
299
- :li: Tiếng Limburg
300
- :lkt: Lakota
301
- :ln: Tiếng Lingala
302
- :lo: Tiếng Lào
303
- :lol: Tiếng Mongo
304
- :loz: Tiếng Lozi
305
- :lt: Tiếng Lít-va
306
- :lu: Tiếng Luba-Katanga
307
- :lua: Tiếng Luba-Lulua
308
- :lui: Tiếng Luiseno
309
- :lun: Tiếng Lunda
310
- :luo: Tiếng Luo
311
- :lus: Tiếng Lushai
312
- :luy: Tiếng Luyia
313
- :lv: Tiếng Lát-vi-a
314
- :mad: Tiếng Madura
315
- :maf: Tiếng Mafa
316
- :mag: Tiếng Magahi
317
- :mai: Tiếng Maithili
318
- :mak: Tiếng Makasar
319
- :man: Tiếng Mandingo
320
- :map: Ngôn ngữ Úc-Á
321
- :mas: Tiếng Masai
322
- :mde: Tiếng Maba
323
- :mdf: Tiếng Moksha
324
- :mdr: Tiếng Mandar
325
- :men: Tiếng Mende
326
- :mer: Tiếng Meru
327
- :mfe: Tiếng Morisyen
328
- :mg: Tiếng Malagasy
329
- :mga: Tiếng Ai-len Trung cổ
330
- :mgh: Tiếng Makhuwa-Meetto
331
- :mgo: Meta'
332
- :mh: Tiếng Marshall
333
- :mi: Tiếng Maori
334
- :mic: Tiếng Micmac
335
- :min: Tiếng Minangkabau
336
- :mis: Ngôn ngữ Khác
337
- :mk: Tiếng Ma-xê-đô-ni-a
338
- :mkh: Ngôn ngữ Mon-Khmer
339
- :ml: Tiếng Malayalam
340
- :mn: Tiếng Mông Cổ
341
- :mnc: Tiếng Manchu
342
- :mni: Tiếng Manipuri
343
- :mno: Ngôn ngữ Manobo
344
- :mo: Tiếng Moldova
345
- :moh: Tiếng Mohawk
346
- :mos: Tiếng Mossi
347
- :mr: Tiếng Marathi
348
- :ms: Tiếng Ma-lay-xi-a
349
- :mt: Tiếng Mantơ
350
- :mua: Tiếng Mundang
351
- :mul: Nhiều Ngôn ngữ
352
- :mun: Ngôn ngữ Munda
353
- :mus: Tiếng Creek
354
- :mwl: Tiếng Miranda
355
- :mwr: Tiếng Marwari
356
- :my: Tiếng Miến Điện
357
- :mye: Tiếng Myene
358
- :myn: Ngôn ngữ Maya
359
- :myv: Tiếng Erzya
360
- :na: Tiếng Nauru
361
- :nah: Tiếng Nahuatl
362
- :nai: Ngôn ngữ Thổ dân Bắc Mỹ
363
- :nap: Tiếng Napoli
364
- :naq: Tiếng Nama
365
- :nb: Tiếng Na Uy (Bokmål)
366
- :nd: Bắc Ndebele
367
- :nds: Tiếng Hạ Giéc-man
368
- :ne: Tiếng Nê-pan
369
- :new: Tiếng Newari
370
- :ng: Tiếng Ndonga
371
- :nia: Tiếng Nias
372
- :nic: Ngôn ngữ Niger-Kordofan
373
- :niu: Tiếng Niuean
374
- :nl: Tiếng Hà Lan
375
- :nl-BE: Tiếng Flemish
376
- :nmg: Tiếng Kwasio
377
- :nn: Tiếng Na Uy (Nynorsk)
378
- :nnh: Tiếng Ngiemboon
379
- :no: Tiếng Na Uy
380
- :nog: Tiếng Nogai
381
- :non: Tiếng Na Uy cổ
382
- :nqo: Tiếng N'Ko
383
- :nr: Tiếng Ndebele Miền Nam
384
- :nso: Bắc Sotho
385
- :nub: Ngôn ngữ Nubia
386
- :nus: Tiếng Nuer
387
- :nv: Tiếng Navajo
388
- :nwc: Tiếng Newari Cổ điển
389
- :ny: Tiếng Nyanja
390
- :nym: Tiếng Nyamwezi
391
- :nyn: Tiếng Nyankole
392
- :nyo: Tiếng Nyoro
393
- :nzi: Tiếng Nzima
394
- :oc: Tiếng Occitan
395
- :oj: Tiếng Ojibwa
396
- :om: Tiếng Oromo
397
- :or: Tiếng Ô-ri-a
398
- :os: Tiếng Ossetic
399
- :osa: Tiếng Osage
400
- :ota: Tiếng Thổ Nhĩ Kỳ Ottoman
401
- :oto: Ngôn ngữ Otomia
402
- :pa: Tiếng Punjabi
403
- :paa: Ngôn ngữ Papua
404
- :pag: Tiếng Pangasinan
405
- :pal: Tiếng Pahlavi
406
- :pam: Tiếng Pampanga
407
- :pap: Tiếng Papiamento
408
- :pau: Tiếng Palauan
409
- :peo: Tiếng Ba Tư cổ
410
- :phi: Ngôn ngữ Philippine
411
- :phn: Tiếng Phoenicia
412
- :pi: Tiếng Pali
413
- :pl: Tiếng Ba Lan
414
- :pon: Tiếng Pohnpeian
415
- :pra: Ngôn ngữ Prakrit
416
- :pro: Tiếng Provençal cổ
417
- :ps: Tiếng Pushto
418
- :pt: Tiếng Bồ Đào Nha
419
- :pt-BR: Tiếng Bồ Đào Nha (Braxin)
420
- :pt-PT: Tiếng Bồ Đào Nha (I-bê-ri)
421
- :qu: Tiếng Quechua
422
- :raj: Tiếng Rajasthani
423
- :rap: Tiếng Rapanui
424
- :rar: Tiếng Rarotongan
425
- :rm: Tiếng Romansh
426
- :rn: Tiếng Rundi
427
- :ro: Tiếng Ru-ma-ni
428
- :roa: Ngôn ngữ Roman
429
- :rof: Tiếng Rombo
430
- :rom: Tiếng Rumani
431
- :root: Tiếng Root
432
- :ru: Tiếng Nga
433
- :rup: Tiếng Aromania
434
- :rw: Tiếng Kinyarwanda
435
- :rwk: Tiếng Rwa
436
- :sa: Tiếng Phạn
437
- :sad: Tiếng Sandawe
438
- :sah: Tiếng Sakha
439
- :sai: Ngôn ngữ Thổ dân Nam Mỹ
440
- :sal: Ngôn ngữ Salishan
441
- :sam: Tiếng Samaritan Aramaic
442
- :saq: Tiếng Samburu
443
- :sas: Tiếng Sasak
444
- :sat: Tiếng Santali
445
- :sba: Tiếng Ngambay
446
- :sbp: Tiếng Sangu
447
- :sc: Tiếng Sardinia
448
- :scn: Tiếng Sicilia
449
- :sco: Tiếng Scots
450
- :sd: Tiếng Sin-hi
451
- :se: Bắc Sami
452
- :see: Tiếng Seneca
453
- :seh: Tiếng Sena
454
- :sel: Tiếng Selkup
455
- :sem: Ngôn ngữ Semitic
456
- :ses: Tiếng Koyraboro Senni
457
- :sg: Tiếng Sango
458
- :sga: Tiếng Ai-len cổ
459
- :sgn: Ngôn ngữ Ký hiệu
460
- :sh: Tiếng Xéc bi - Croatia
461
- :shi: Tiếng Tachelhit
462
- :shn: Tiếng Shan
463
- :shu: Tiếng Ả-Rập Chad
464
- :si: Tiếng Sinhala
465
- :sid: Tiếng Sidamo
466
- :sio: Ngôn ngữ Sioua
467
- :sit: Ngôn ngữ Sino-Tây Tạng
468
- :sk: Tiếng Xlô-vác
469
- :sl: Tiếng Xlô-ven
470
- :sla: Ngôn ngữ Slavơ
471
- :sm: Tiếng Samoa
472
- :sma: TIếng Sami Miền Nam
473
- :smi: Ngôn ngữ Sami
474
- :smj: Tiếng Lule Sami
475
- :smn: Tiếng Inari Sami
476
- :sms: Tiếng Skolt Sami
477
- :sn: Tiếng Shona
478
- :snk: Tiếng Soninke
479
- :so: Tiếng Xô-ma-li
480
- :sog: Tiếng Sogdien
481
- :son: Tiếng Songhai
482
- :sq: Tiếng An-ba-ni
483
- :sr: Tiếng Séc-bi
484
- :srn: Tiếng Sranan Tongo
485
- :srr: Tiếng Serer
486
- :ss: Tiếng Swati
487
- :ssa: Ngôn ngữ Nilo-Sahara
488
- :ssy: Tiếng Saho
489
- :st: Tiếng Sesotho
490
- :su: Tiếng Xu đăng
491
- :suk: Tiếng Sukuma
492
- :sus: Tiếng Susu
493
- :sux: Tiếng Sumeria
494
- :sv: Tiếng Thụy Điển
495
- :sw: Tiếng Swahili
496
- :swb: Tiếng Cômo
497
- :swc: Tiếng Swahili Công-gô
498
- :syc: Tiếng Syria Cổ điển
499
- :syr: Tiếng Syriac
500
- :ta: Tiếng Tamil
501
- :tai: Ngôn ngữ Thái
502
- :te: Tiếng Telugu
503
- :tem: Tiếng Timne
504
- :teo: Tiếng Teso
505
- :ter: Tiếng Tereno
506
- :tet: Tetum
507
- :tg: Tiếng Tajik
508
- :th: Tiếng Thái
509
- :ti: Tiếng Tigrigya
510
- :tig: Tiếng Tigre
511
- :tiv: Tiếng Tiv
512
- :tk: Tiếng Tuôc-men
513
- :tkl: Tiếng Tokelau
514
- :tl: Tiếng Tagalog
515
- :tlh: Tiếng Klingon
516
- :tli: Tiếng Tlingit
517
- :tmh: Tiếng Tamashek
518
- :tn: Tiếng Tswana
519
- :to: Tiếng Tonga
520
- :tog: Tiếng Nyasa Tonga
521
- :tpi: Tiếng Tok Pisin
522
- :tr: Tiếng Thổ Nhĩ Kỳ
523
- :trv: Tiếng Taroko
524
- :ts: Tiếng Tsonga
525
- :tsi: Tiếng Tsimshian
526
- :tt: Tiếng Tatar
527
- :tum: Tiếng Tumbuka
528
- :tup: Ngôn ngữ Tupi
529
- :tut: Ngôn ngữ Altai
530
- :tvl: Tiếng Tuvalu
531
- :tw: Tiếng Twi
532
- :twq: Tiếng Tasawaq
533
- :ty: Tiếng Tahiti
534
- :tyv: Tiếng Tuvinian
535
- :tzm: Tiếng Tamazight Miền Trung Ma-rốc
536
- :udm: Tiếng Udmurt
537
- :ug: Tiếng Uyghur
538
- :uga: Tiếng Ugaritic
539
- :uk: Tiếng U-crai-na
540
- :umb: Tiếng Umbundu
541
- :und: Tiếng không xác định
542
- :ur: Tiếng Uđu
543
- :uz: Tiếng U-dơ-bếch
544
- :vai: Tiếng Vai
545
- :ve: Tiếng Venda
546
- :vi: Tiếng Việt
547
- :vo: Tiếng Volapük
548
- :vot: Tiếng Votic
549
- :vun: Tiếng Vunjo
550
- :wa: Tiếng Walloon
551
- :wae: Tiếng Walser
552
- :wak: Ngôn ngữ Wakashan
553
- :wal: Tiếng Walamo
554
- :war: Tiếng Waray
555
- :was: Tiếng Washo
556
- :wen: Ngôn ngữ Sorbia
557
- :wo: Tiếng Wolof
558
- :xal: Tiếng Kalmyk
559
- :xh: Tiếng Xhosa
560
- :xog: Tiếng Soga
561
- :yao: Tiếng Yao
562
- :yap: Tiếng Yap
563
- :yav: Tiếng Yangben
564
- :ybb: Tiếng Yemba
565
- :yi: Tiếng Y-đit
566
- :yo: Tiếng Yoruba
567
- :ypk: Tiếng Yupik
568
- :yue: Tiếng Quảng Đông
569
- :za: Tiếng Zhuang
570
- :zap: Tiếng Zapotec
571
- :zbl: hiệu Blissymbols
572
- :zen: Tiếng Zenaga
573
- :zh: Tiếng Trung
574
- :zh-Hans: Tiếng Trung (Giản thể)
575
- :zh-Hant: Tiếng Trung (Phồn thể)
576
- :znd: Tiếng Zande
577
- :zu: Tiếng Zulu
578
- :zun: Tiếng Zuni
579
- :zxx: Không có nội dung ngôn ngữ
580
- :zza: Tiếng Zaza
1
+ ---
2
+ :vi:
3
+ :languages:
4
+ :aa: "Tiếng Afar"
5
+ :ab: "Tiếng Abkhazia"
6
+ :ace: "Tiếng Achinese"
7
+ :ach: "Tiếng Acoli"
8
+ :ada: "Tiếng Adangme"
9
+ :ady: "Tiếng Adyghe"
10
+ :ae: "Tiếng Avestan"
11
+ :af: "Tiếng Nam Phi"
12
+ :afa: "Ngôn ngữ Phi-Á"
13
+ :afh: "Tiếng Afrihili"
14
+ :agq: "Tiếng Aghem"
15
+ :ain: "Tiếng Ainu"
16
+ :ak: "Tiếng Akan"
17
+ :akk: "Tiếng Akkadia"
18
+ :ale: "Tiếng Aleut"
19
+ :alg: "Ngôn ngữ Algonquin"
20
+ :alt: "Tiếng Altai Miền Nam"
21
+ :am: "Tiếng Amharic"
22
+ :an: "Tiếng Aragon"
23
+ :ang: "Tiếng Anh cổ"
24
+ :anp: "Tiếng Angika"
25
+ :apa: "Ngôn ngữ Apache"
26
+ :ar: "Tiếng Ả Rập"
27
+ :ar-001: "Tiếng Rập Hiện đại"
28
+ :arc: "Tiếng Aramaic"
29
+ :arn: "Tiếng Araucanian"
30
+ :arp: "Tiếng Arapaho"
31
+ :art: "Ngôn ngữ Nhân tạo"
32
+ :arw: "Tiếng Arawak"
33
+ :as: "Tiếng Assam"
34
+ :asa: "Tiếng Asu"
35
+ :ast: "Tiếng Asturias"
36
+ :ath: "Ngôn ngữ Athapascan"
37
+ :aus: "Ngôn ngữ Châu Úc"
38
+ :av: "Tiếng Avaric"
39
+ :awa: "Tiếng Awadhi"
40
+ :ay: "Tiếng Aymara"
41
+ :az: "Tiếng Azeri"
42
+ :ba: "Tiếng Bashkir"
43
+ :bad: "Tiếng Banda"
44
+ :bai: "Ngôn ngữ Bamileke"
45
+ :bal: "Tiếng Baluchi"
46
+ :ban: "Tiếng Bali"
47
+ :bas: "Tiếng Basaa"
48
+ :bat: "Ngôn ngữ Baltic"
49
+ :bax: "Tiếng Bamun"
50
+ :bbj: "Tiếng Ghomala"
51
+ :be: "Tiếng Belarus"
52
+ :bej: "Tiếng Beja"
53
+ :bem: "Tiếng Bemba"
54
+ :ber: "Tiếng Berber"
55
+ :bez: "Tiếng Bena"
56
+ :bfd: "Tiếng Bafut"
57
+ :bg: "Tiếng Bulgaria"
58
+ :bh: "Tiếng Bihari"
59
+ :bho: "Tiếng Bhojpuri"
60
+ :bi: "Tiếng Bislama"
61
+ :bik: "Tiếng Bikol"
62
+ :bin: "Tiếng Bini"
63
+ :bkm: "Tiếng Kom"
64
+ :bla: "Tiếng Siksika"
65
+ :bm: "Tiếng Bambara"
66
+ :bn: "Tiếng Bengali"
67
+ :bnt: "Tiếng Ban-tu"
68
+ :bo: "Tiếng Tây Tạng"
69
+ :br: "Tiếng Breton"
70
+ :bra: "Tiếng Braj"
71
+ :brx: "Tiếng Bodo"
72
+ :bs: "Tiếng Nam Tư"
73
+ :bss: "Tiếng Akoose"
74
+ :btk: "Tiếng Batak"
75
+ :bua: "Tiếng Buriat"
76
+ :bug: "Tiếng Bugin"
77
+ :bum: "Tiếng Bulu"
78
+ :byn: "Tiếng Blin"
79
+ :byv: "Tiếng Medumba"
80
+ :ca: "Tiếng Catalan"
81
+ :cad: "Tiếng Caddo"
82
+ :cai: "Ngôn ngữ Thổ dân Trung Mỹ"
83
+ :car: "Tiếng Carib"
84
+ :cau: "Ngôn ngữ Cáp-ca"
85
+ :cay: "Tiếng Cayuga"
86
+ :cch: "Tiếng Atsam"
87
+ :ce: "Tiếng Chechen"
88
+ :ceb: "Tiếng Cebuano"
89
+ :cel: "Ngôn ngữ Xen-tơ"
90
+ :cgg: "Tiếng Chiga"
91
+ :ch: "Tiếng Chamorro"
92
+ :chb: "Tiếng Chibcha"
93
+ :chg: "Tiếng Chagatai"
94
+ :chk: "Tiếng Chuuk"
95
+ :chm: "Tiếng Mari"
96
+ :chn: "Biệt ngữ Chinook"
97
+ :cho: "Tiếng Choctaw"
98
+ :chp: "Tiếng Chipewyan"
99
+ :chr: "Tiếng Cherokee"
100
+ :chy: "Tiếng Cheyenne"
101
+ :ckb: "Tiếng Kurd Sorani"
102
+ :cmc: "Ngôn ngữ Chamic"
103
+ :co: "Tiếng Corse"
104
+ :cop: "Tiếng Coptic"
105
+ :cpe: "Tiếng Creole hoặc Pidgin gốc Anh"
106
+ :cpf: "Tiếng Creole hoặc Pidgin gốc Pháp"
107
+ :cpp: "Tiếng Creole hoặc Pidgin gốc Bồ Đào Nha"
108
+ :cr: "Tiếng Cree"
109
+ :crh: "Tiếng Thổ Nhĩ Kỳ Crimean"
110
+ :crp: "Tiếng Creole hoặc Pidgin"
111
+ :cs: "Tiếng Séc"
112
+ :csb: "Tiếng Kashubia"
113
+ :cu: "Tiếng Slavơ Nhà thờ"
114
+ :cus: "Tiếng Cushit"
115
+ :cv: "Tiếng Chuvash"
116
+ :cy: "Tiếng Wales"
117
+ :da: "Tiếng Đan Mạch"
118
+ :dak: "Tiếng Dakota"
119
+ :dar: "Tiếng Dargwa"
120
+ :dav: "Tiếng Taita"
121
+ :day: "Tiếng Dayak"
122
+ :de: "Tiếng Đức"
123
+ :de-AT: "Austrian German"
124
+ :de-CH: "Tiếng Thượng Giéc-man (Thụy Sĩ)"
125
+ :del: "Tiếng Delaware"
126
+ :den: "Tiếng Slave"
127
+ :dgr: "Tiếng Dogrib"
128
+ :din: "Tiếng Dinka"
129
+ :dje: "Tiếng Zarma"
130
+ :doi: "Tiếng Dogri"
131
+ :dra: "Ngôn ngữ Dravidia"
132
+ :dsb: "Tiếng Hạ Sorbia"
133
+ :dua: "Tiếng Duala"
134
+ :dum: "Tiếng Hà Lan Trung cổ"
135
+ :dv: "Tiếng Divehi"
136
+ :dyo: "Tiếng Jola-Fonyi"
137
+ :dyu: "Tiếng Dyula"
138
+ :dz: "Tiếng Dzongkha"
139
+ :dzg: "Tiếng Dazaga"
140
+ :ebu: "Tiếng Embu"
141
+ :ee: "Tiếng Ewe"
142
+ :efi: "Tiếng Efik"
143
+ :egy: "Tiếng Ai Cập cổ"
144
+ :eka: "Tiếng Ekajuk"
145
+ :el: "Tiếng Hy Lạp"
146
+ :elx: "Tiếng Elamite"
147
+ :en: "Tiếng Anh"
148
+ :en-AU: "Australian English"
149
+ :en-CA: "Canadian English"
150
+ :en-GB: "Tiếng Anh (Anh)"
151
+ :en-US: "Tiếng Anh (Mỹ)"
152
+ :enm: "Tiếng Anh Trung cổ"
153
+ :eo: "Tiếng Quốc Tế Ngữ"
154
+ :es: "Tiếng Tây Ban Nha"
155
+ :es-419: "Tiếng Tây Ban Nha (Mỹ La tinh)"
156
+ :es-ES: "Tiếng Tây Ban Nha (I-bê-ri)"
157
+ :es-MX: "Mexican Spanish"
158
+ :et: "Tiếng Estonia"
159
+ :eu: "Tiếng Basque"
160
+ :ewo: "Tiếng Ewondo"
161
+ :fa: "Tiếng Ba Tư"
162
+ :fan: "Tiếng Fang"
163
+ :fat: "Tiếng Fanti"
164
+ :ff: "Tiếng Fulah"
165
+ :fi: "Tiếng Phần Lan"
166
+ :fil: "Tiếng Philipin"
167
+ :fiu: "Ngôn ngữ Finno-Ugrian"
168
+ :fj: "Tiếng Fiji"
169
+ :fo: "Tiếng Faore"
170
+ :fon: "Tiếng Fon"
171
+ :fr: "Tiếng Pháp"
172
+ :fr-CA: "Canadian French"
173
+ :fr-CH: "Swiss French"
174
+ :frm: "Tiếng Pháp Trung cổ"
175
+ :fro: "Tiếng Pháp cổ"
176
+ :frr: "Tiếng Frisian Miền Bắc"
177
+ :frs: "Tiếng Frisian Miền Đông"
178
+ :fur: "Tiếng Friulian"
179
+ :fy: "Tiếng Frisia"
180
+ :ga: "Tiếng Ai-len"
181
+ :gaa: "Tiếng Ga"
182
+ :gay: "Tiếng Gayo"
183
+ :gba: "Tiếng Gbaya"
184
+ :gd: "Tiếng Xentơ (Xcốt len)"
185
+ :gem: "Ngôn ngữ Giéc-man"
186
+ :gez: "Tiếng Geez"
187
+ :gil: "Tiếng Gilbert"
188
+ :gl: "Tiếng Galician"
189
+ :gmh: "Tiếng Thượng Giéc-man Trung cổ"
190
+ :gn: "Tiếng Guarani"
191
+ :goh: "Tiếng Thượng Giéc-man cổ"
192
+ :gon: "Tiếng Gondi"
193
+ :gor: "Tiếng Gorontalo"
194
+ :got: "Tiếng Gô-tích"
195
+ :grb: "Tiếng Grebo"
196
+ :grc: "Tiếng Hy Lạp cổ"
197
+ :gsw: "Tiếng Đức (Thụy Sĩ)"
198
+ :gu: "Tiếng Gujarati"
199
+ :guz: "Tiếng Gusii"
200
+ :gv: "Tiếng Manx"
201
+ :gwi: "Tiếng Gwichʼin"
202
+ :ha: "Tiếng Hausa"
203
+ :hai: "Tiếng Haida"
204
+ :haw: "Tiếng Hawaii"
205
+ :he: "Tiếng Do Thái"
206
+ :hi: "Tiếng Hindi"
207
+ :hil: "Tiếng Hiligaynon"
208
+ :him: "Tiếng Himachali"
209
+ :hit: "Tiếng Hittite"
210
+ :hmn: "Tiếng Hmông"
211
+ :ho: "Tiếng Hiri Motu"
212
+ :hr: "Tiếng Croatia"
213
+ :hsb: "Tiếng Thượng Sorbia"
214
+ :ht: "Tiếng Haiti"
215
+ :hu: "Tiếng Hungary"
216
+ :hup: "Tiếng Hupa"
217
+ :hy: "Tiếng Armenia"
218
+ :hz: "Tiếng Herero"
219
+ :ia: "Tiếng Khoa Học Quốc Tế"
220
+ :iba: "Tiếng Iban"
221
+ :ibb: "Tiếng Ibibio"
222
+ :id: "Tiếng Indonesia"
223
+ :ie: "Tiếng Interlingue"
224
+ :ig: "Tiếng Igbo"
225
+ :ii: "Tiếng Di Tứ Xuyên"
226
+ :ijo: "Tiếng Ijo"
227
+ :ik: "Tiếng Inupiaq"
228
+ :ilo: "Tiếng Iloko"
229
+ :inc: "Ngôn ngữ Indic"
230
+ :ine: "Ngôn ngữ Ấn-Âu"
231
+ :inh: "Tiếng Ingush"
232
+ :io: "Tiếng Ido"
233
+ :ira: "Ngôn ngữ Iran"
234
+ :iro: "Ngôn ngữ Iroquoia"
235
+ :is: "Tiếng Iceland"
236
+ :it: "Tiếng Ý"
237
+ :iu: "Tiếng Inuktitut"
238
+ :ja: "Tiếng Nhật"
239
+ :jbo: "Tiếng Lojban"
240
+ :jgo: "Ngomba"
241
+ :jmc: "Tiếng Machame"
242
+ :jpr: "Tiếng Judeo-Ba Tư"
243
+ :jrb: "Tiếng Judeo-Ả Rập"
244
+ :jv: "Tiếng Java"
245
+ :ka: "Tiếng Gruzia"
246
+ :kaa: "Tiếng Kara-Kalpak"
247
+ :kab: "Tiếng Kabyle"
248
+ :kac: "Tiếng Kachin"
249
+ :kaj: "Tiếng Jju"
250
+ :kam: "Tiếng Kamba"
251
+ :kar: "Tiếng Karen"
252
+ :kaw: "Tiếng Kawi"
253
+ :kbd: "Tiếng Kabardian"
254
+ :kbl: "Tiếng Kanembu"
255
+ :kcg: "Tiếng Tyap"
256
+ :kde: "Tiếng Makonde"
257
+ :kea: "Tiếng Kabuverdianu"
258
+ :kfo: "Tiếng Koro"
259
+ :kg: "Tiếng Congo"
260
+ :kha: "Tiếng Khasi"
261
+ :khi: "Ngôn ngữ Khoisan"
262
+ :kho: "Tiếng Khotan"
263
+ :khq: "Tiếng Koyra Chiini"
264
+ :ki: "Tiếng Kikuyu"
265
+ :kj: "Tiếng Kuanyama"
266
+ :kk: "Tiếng Kazakh"
267
+ :kkj: "Tiếng Kako"
268
+ :kl: "Tiếng Kalaallisut"
269
+ :kln: "Tiếng Kalenjin"
270
+ :km: "Tiếng Campuchia"
271
+ :kmb: "Tiếng Kimbundu"
272
+ :kn: "Tiếng Kannada"
273
+ :ko: "Tiếng Hàn Quốc"
274
+ :kok: "Tiếng Konkani"
275
+ :kos: "Tiếng Kosrae"
276
+ :kpe: "Tiếng Kpelle"
277
+ :kr: "Tiếng Kanuri"
278
+ :krc: "Tiếng Karachay-Balkar"
279
+ :krl: "Tiếng Karelian"
280
+ :kro: "Tiếng Kru"
281
+ :kru: "Tiếng Kurukh"
282
+ :ks: "Tiếng Kashmiri"
283
+ :ksb: "Tiếng Shambala"
284
+ :ksf: "Tiếng Bafia"
285
+ :ksh: "Tiếng Cologne"
286
+ :ku: "Tiếng Kurd"
287
+ :kum: "Tiếng Kumyk"
288
+ :kut: "Tiếng Kutenai"
289
+ :kv: "Tiếng Komi"
290
+ :kw: "Tiếng Cornish"
291
+ :ky: "Tiếng Kyrgyz"
292
+ :la: "Tiếng La-tinh"
293
+ :lad: "Tiếng Ladino"
294
+ :lag: "Tiếng Langi"
295
+ :lah: "Tiếng Lahnda"
296
+ :lam: "Tiếng Lamba"
297
+ :lb: "Tiếng Luxembourg"
298
+ :lez: "Tiếng Lezghian"
299
+ :lg: "Tiếng Ganda"
300
+ :li: "Tiếng Limburg"
301
+ :lkt: "Lakota"
302
+ :ln: "Tiếng Lingala"
303
+ :lo: "Tiếng Lào"
304
+ :lol: "Tiếng Mongo"
305
+ :loz: "Tiếng Lozi"
306
+ :lt: "Tiếng Lít-va"
307
+ :lu: "Tiếng Luba-Katanga"
308
+ :lua: "Tiếng Luba-Lulua"
309
+ :lui: "Tiếng Luiseno"
310
+ :lun: "Tiếng Lunda"
311
+ :luo: "Tiếng Luo"
312
+ :lus: "Tiếng Lushai"
313
+ :luy: "Tiếng Luyia"
314
+ :lv: "Tiếng Latvia"
315
+ :mad: "Tiếng Madura"
316
+ :maf: "Tiếng Mafa"
317
+ :mag: "Tiếng Magahi"
318
+ :mai: "Tiếng Maithili"
319
+ :mak: "Tiếng Makasar"
320
+ :man: "Tiếng Mandingo"
321
+ :map: "Ngôn ngữ Úc-Á"
322
+ :mas: "Tiếng Masai"
323
+ :mde: "Tiếng Maba"
324
+ :mdf: "Tiếng Moksha"
325
+ :mdr: "Tiếng Mandar"
326
+ :men: "Tiếng Mende"
327
+ :mer: "Tiếng Meru"
328
+ :mfe: "Tiếng Morisyen"
329
+ :mg: "Tiếng Malagasy"
330
+ :mga: "Tiếng Ai-len Trung cổ"
331
+ :mgh: "Tiếng Makhuwa-Meetto"
332
+ :mgo: "Meta'"
333
+ :mh: "Tiếng Marshall"
334
+ :mi: "Tiếng Maori"
335
+ :mic: "Tiếng Micmac"
336
+ :min: "Tiếng Minangkabau"
337
+ :mis: "Ngôn ngữ Khác"
338
+ :mk: "Tiếng Macedonia"
339
+ :mkh: "Ngôn ngữ Mon-Khmer"
340
+ :ml: "Tiếng Malayalam"
341
+ :mn: "Tiếng Mông Cổ"
342
+ :mnc: "Tiếng Manchu"
343
+ :mni: "Tiếng Manipuri"
344
+ :mno: "Ngôn ngữ Manobo"
345
+ :mo: "Tiếng Moldova"
346
+ :moh: "Tiếng Mohawk"
347
+ :mos: "Tiếng Mossi"
348
+ :mr: "Tiếng Marathi"
349
+ :ms: "Tiếng Malaysia"
350
+ :mt: "Tiếng Malt"
351
+ :mua: "Tiếng Mundang"
352
+ :mul: "Nhiều Ngôn ngữ"
353
+ :mun: "Ngôn ngữ Munda"
354
+ :mus: "Tiếng Creek"
355
+ :mwl: "Tiếng Miranda"
356
+ :mwr: "Tiếng Marwari"
357
+ :my: "Tiếng Miến Điện"
358
+ :mye: "Tiếng Myene"
359
+ :myn: "Ngôn ngữ Maya"
360
+ :myv: "Tiếng Erzya"
361
+ :na: "Tiếng Nauru"
362
+ :nah: "Tiếng Nahuatl"
363
+ :nai: "Ngôn ngữ Thổ dân Bắc Mỹ"
364
+ :nap: "Tiếng Napoli"
365
+ :naq: "Tiếng Nama"
366
+ :nb: "Tiếng Na Uy (Bokmål)"
367
+ :nd: "Bắc Ndebele"
368
+ :nds: "Tiếng Hạ Giéc-man"
369
+ :ne: "Tiếng Nepal"
370
+ :new: "Tiếng Newari"
371
+ :ng: "Tiếng Ndonga"
372
+ :nia: "Tiếng Nias"
373
+ :nic: "Ngôn ngữ Niger-Kordofan"
374
+ :niu: "Tiếng Niuean"
375
+ :nl: "Tiếng Hà Lan"
376
+ :nl-BE: "Tiếng Flemish"
377
+ :nmg: "Tiếng Kwasio"
378
+ :nn: "Tiếng Na Uy (Nynorsk)"
379
+ :nnh: "Tiếng Ngiemboon"
380
+ ? !ruby/symbol "no"
381
+ : "Tiếng Na Uy"
382
+ :nog: "Tiếng Nogai"
383
+ :non: "Tiếng Na Uy cổ"
384
+ :nqo: "Tiếng N'Ko"
385
+ :nr: "Tiếng Ndebele Miền Nam"
386
+ :nso: "Bắc Sotho"
387
+ :nub: "Ngôn ngữ Nubia"
388
+ :nus: "Tiếng Nuer"
389
+ :nv: "Tiếng Navajo"
390
+ :nwc: "Tiếng Newari Cổ điển"
391
+ :ny: "Tiếng Nyanja"
392
+ :nym: "Tiếng Nyamwezi"
393
+ :nyn: "Tiếng Nyankole"
394
+ :nyo: "Tiếng Nyoro"
395
+ :nzi: "Tiếng Nzima"
396
+ :oc: "Tiếng Occitan"
397
+ :oj: "Tiếng Ojibwa"
398
+ :om: "Tiếng Oromo"
399
+ :or: "Tiếng Ô-ri-a"
400
+ :os: "Tiếng Ossetic"
401
+ :osa: "Tiếng Osage"
402
+ :ota: "Tiếng Thổ Nhĩ Kỳ Ottoman"
403
+ :oto: "Ngôn ngữ Otomia"
404
+ :pa: "Tiếng Punjab"
405
+ :paa: "Ngôn ngữ Papua"
406
+ :pag: "Tiếng Pangasinan"
407
+ :pal: "Tiếng Pahlavi"
408
+ :pam: "Tiếng Pampanga"
409
+ :pap: "Tiếng Papiamento"
410
+ :pau: "Tiếng Palauan"
411
+ :peo: "Tiếng Ba Tư cổ"
412
+ :phi: "Ngôn ngữ Philippine"
413
+ :phn: "Tiếng Phoenicia"
414
+ :pi: "Tiếng Pali"
415
+ :pl: "Tiếng Ba Lan"
416
+ :pon: "Tiếng Pohnpeian"
417
+ :pra: "Ngôn ngữ Prakrit"
418
+ :pro: "Tiếng Provençal cổ"
419
+ :ps: "Tiếng Pushto"
420
+ :pt: "Tiếng Bồ Đào Nha"
421
+ :pt-BR: "Tiếng Bồ Đào Nha (Braxin)"
422
+ :pt-PT: "Tiếng Bồ Đào Nha (I-bê-ri)"
423
+ :qu: "Tiếng Quechua"
424
+ :raj: "Tiếng Rajasthani"
425
+ :rap: "Tiếng Rapanui"
426
+ :rar: "Tiếng Rarotongan"
427
+ :rm: "Tiếng Romansh"
428
+ :rn: "Tiếng Rundi"
429
+ :ro: "Tiếng Romania"
430
+ :roa: "Ngôn ngữ Roman"
431
+ :rof: "Tiếng Rombo"
432
+ :rom: "Tiếng Rumani"
433
+ :root: "Tiếng Root"
434
+ :ru: "Tiếng Nga"
435
+ :rup: "Tiếng Aromania"
436
+ :rw: "Tiếng Kinyarwanda"
437
+ :rwk: "Tiếng Rwa"
438
+ :sa: "Tiếng Phạn"
439
+ :sad: "Tiếng Sandawe"
440
+ :sah: "Tiếng Sakha"
441
+ :sai: "Ngôn ngữ Thổ dân Nam Mỹ"
442
+ :sal: "Ngôn ngữ Salishan"
443
+ :sam: "Tiếng Samaritan Aramaic"
444
+ :saq: "Tiếng Samburu"
445
+ :sas: "Tiếng Sasak"
446
+ :sat: "Tiếng Santali"
447
+ :sba: "Tiếng Ngambay"
448
+ :sbp: "Tiếng Sangu"
449
+ :sc: "Tiếng Sardinia"
450
+ :scn: "Tiếng Sicilia"
451
+ :sco: "Tiếng Scots"
452
+ :sd: "Tiếng Sindhi"
453
+ :se: "Bắc Sami"
454
+ :see: "Tiếng Seneca"
455
+ :seh: "Tiếng Sena"
456
+ :sel: "Tiếng Selkup"
457
+ :sem: "Ngôn ngữ Semitic"
458
+ :ses: "Tiếng Koyraboro Senni"
459
+ :sg: "Tiếng Sango"
460
+ :sga: "Tiếng Ai-len cổ"
461
+ :sgn: "Ngôn ngữ Ký hiệu"
462
+ :sh: "Tiếng Xéc bi - Croatia"
463
+ :shi: "Tiếng Tachelhit"
464
+ :shn: "Tiếng Shan"
465
+ :shu: "Tiếng Ả-Rập Chad"
466
+ :si: "Tiếng Sinhala"
467
+ :sid: "Tiếng Sidamo"
468
+ :sio: "Ngôn ngữ Sioua"
469
+ :sit: "Ngôn ngữ Sino-Tây Tạng"
470
+ :sk: "Tiếng Slovak"
471
+ :sl: "Tiếng Slovenia"
472
+ :sla: "Ngôn ngữ Slavơ"
473
+ :sm: "Tiếng Samoa"
474
+ :sma: "TIếng Sami Miền Nam"
475
+ :smi: "Ngôn ngữ Sami"
476
+ :smj: "Tiếng Lule Sami"
477
+ :smn: "Tiếng Inari Sami"
478
+ :sms: "Tiếng Skolt Sami"
479
+ :sn: "Tiếng Shona"
480
+ :snk: "Tiếng Soninke"
481
+ :so: "Tiếng Somali"
482
+ :sog: "Tiếng Sogdien"
483
+ :son: "Tiếng Songhai"
484
+ :sq: "Tiếng An-ba-ni"
485
+ :sr: "Tiếng Serbia"
486
+ :srn: "Tiếng Sranan Tongo"
487
+ :srr: "Tiếng Serer"
488
+ :ss: "Tiếng Swati"
489
+ :ssa: "Ngôn ngữ Nilo-Sahara"
490
+ :ssy: "Tiếng Saho"
491
+ :st: "Tiếng Sesotho"
492
+ :su: "Tiếng Sudan"
493
+ :suk: "Tiếng Sukuma"
494
+ :sus: "Tiếng Susu"
495
+ :sux: "Tiếng Sumeria"
496
+ :sv: "Tiếng Thụy Điển"
497
+ :sw: "Tiếng Swahili"
498
+ :swb: "Tiếng Cômo"
499
+ :swc: "Tiếng Swahili Công-gô"
500
+ :syc: "Tiếng Syria Cổ điển"
501
+ :syr: "Tiếng Syriac"
502
+ :ta: "Tiếng Tamil"
503
+ :tai: "Ngôn ngữ Thái"
504
+ :te: "Tiếng Telugu"
505
+ :tem: "Tiếng Timne"
506
+ :teo: "Tiếng Teso"
507
+ :ter: "Tiếng Tereno"
508
+ :tet: "Tetum"
509
+ :tg: "Tiếng Tajik"
510
+ :th: "Tiếng Thái"
511
+ :ti: "Tiếng Tigrigya"
512
+ :tig: "Tiếng Tigre"
513
+ :tiv: "Tiếng Tiv"
514
+ :tk: "Tiếng Turk"
515
+ :tkl: "Tiếng Tokelau"
516
+ :tl: "Tiếng Tagalog"
517
+ :tlh: "Tiếng Klingon"
518
+ :tli: "Tiếng Tlingit"
519
+ :tmh: "Tiếng Tamashek"
520
+ :tn: "Tiếng Tswana"
521
+ :to: "Tiếng Tonga"
522
+ :tog: "Tiếng Nyasa Tonga"
523
+ :tpi: "Tiếng Tok Pisin"
524
+ :tr: "Tiếng Thổ Nhĩ Kỳ"
525
+ :trv: "Tiếng Taroko"
526
+ :ts: "Tiếng Tsonga"
527
+ :tsi: "Tiếng Tsimshian"
528
+ :tt: "Tiếng Tatar"
529
+ :tum: "Tiếng Tumbuka"
530
+ :tup: "Ngôn ngữ Tupi"
531
+ :tut: "Ngôn ngữ Altai"
532
+ :tvl: "Tiếng Tuvalu"
533
+ :tw: "Tiếng Twi"
534
+ :twq: "Tiếng Tasawaq"
535
+ :ty: "Tiếng Tahiti"
536
+ :tyv: "Tiếng Tuvinian"
537
+ :tzm: "Tiếng Tamazight Miền Trung Ma-rốc"
538
+ :udm: "Tiếng Udmurt"
539
+ :ug: "Tiếng Duy Ngô Nhĩ"
540
+ :uga: "Tiếng Ugaritic"
541
+ :uk: "Tiếng Ucraina"
542
+ :umb: "Tiếng Umbundu"
543
+ :und: "Ngôn ngữ không xác định"
544
+ :ur: "Tiếng Uđu"
545
+ :uz: "Tiếng Uzbek"
546
+ :vai: "Tiếng Vai"
547
+ :ve: "Tiếng Venda"
548
+ :vi: "Tiếng Việt"
549
+ :vo: "Tiếng Volapük"
550
+ :vot: "Tiếng Votic"
551
+ :vun: "Tiếng Vunjo"
552
+ :wa: "Tiếng Walloon"
553
+ :wae: "Tiếng Walser"
554
+ :wak: "Ngôn ngữ Wakashan"
555
+ :wal: "Tiếng Walamo"
556
+ :war: "Tiếng Waray"
557
+ :was: "Tiếng Washo"
558
+ :wen: "Ngôn ngữ Sorbia"
559
+ :wo: "Tiếng Wolof"
560
+ :xal: "Tiếng Kalmyk"
561
+ :xh: "Tiếng Xhosa"
562
+ :xog: "Tiếng Soga"
563
+ :yao: "Tiếng Yao"
564
+ :yap: "Tiếng Yap"
565
+ :yav: "Tiếng Yangben"
566
+ :ybb: "Tiếng Yemba"
567
+ :yi: "Tiếng Y-đit"
568
+ :yo: "Tiếng Yoruba"
569
+ :ypk: "Tiếng Yupik"
570
+ :yue: "Tiếng Quảng Đông"
571
+ :za: "Tiếng Zhuang"
572
+ :zap: "Tiếng Zapotec"
573
+ :zbl: "Ký hiệu Blissymbols"
574
+ :zen: "Tiếng Zenaga"
575
+ :zgh: "Tiếng Tamazight Chuẩn của Ma-rốc"
576
+ :zh: "Tiếng Trung"
577
+ :zh-Hans: "Tiếng Trung (Giản thể)"
578
+ :zh-Hant: "Tiếng Trung (Phồn thể)"
579
+ :znd: "Tiếng Zande"
580
+ :zu: "Tiếng Zulu"
581
+ :zun: "Tiếng Zuni"
582
+ :zxx: "Không có nội dung ngôn ngữ"
583
+ :zza: "Tiếng Zaza"