twitter_cldr 3.6.0 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +2 -1
- data/History.txt +7 -0
- data/README.md +133 -6
- data/Rakefile +23 -4
- data/lib/twitter_cldr.rb +3 -0
- data/lib/twitter_cldr/collation.rb +1 -2
- data/lib/twitter_cldr/collation/collator.rb +9 -1
- data/lib/twitter_cldr/collation/trie_builder.rb +2 -2
- data/lib/twitter_cldr/collation/trie_with_fallback.rb +2 -2
- data/lib/twitter_cldr/localized.rb +2 -2
- data/lib/twitter_cldr/localized/localized_date.rb +3 -15
- data/lib/twitter_cldr/localized/localized_string.rb +26 -5
- data/lib/twitter_cldr/normalization.rb +1 -1
- data/lib/twitter_cldr/resources.rb +2 -0
- data/lib/twitter_cldr/resources/hyphenation_importer.rb +115 -0
- data/lib/twitter_cldr/resources/loader.rb +17 -5
- data/lib/twitter_cldr/resources/locales_resources_importer.rb +3 -2
- data/lib/twitter_cldr/resources/properties/indic_positional_category_property_importer.rb +1 -1
- data/lib/twitter_cldr/resources/properties/properties_importer.rb +2 -2
- data/lib/twitter_cldr/resources/rbnf_test_importer.rb +15 -9
- data/lib/twitter_cldr/resources/transform_test_importer.rb +137 -0
- data/lib/twitter_cldr/segmentation/break_iterator.rb +1 -1
- data/lib/twitter_cldr/shared.rb +1 -0
- data/lib/twitter_cldr/shared/hyphenator.rb +188 -0
- data/lib/twitter_cldr/shared/likely_subtags.rb +18 -2
- data/lib/twitter_cldr/shared/locale.rb +20 -10
- data/lib/twitter_cldr/transforms.rb +24 -0
- data/lib/twitter_cldr/transforms/comment_rule.rb +30 -0
- data/lib/twitter_cldr/transforms/conversion_rule_set.rb +155 -0
- data/lib/twitter_cldr/transforms/conversions.rb +16 -0
- data/lib/twitter_cldr/transforms/conversions/conversion_rule.rb +131 -0
- data/lib/twitter_cldr/transforms/conversions/parser.rb +113 -0
- data/lib/twitter_cldr/transforms/conversions/side.rb +117 -0
- data/lib/twitter_cldr/transforms/cursor.rb +39 -0
- data/lib/twitter_cldr/transforms/filters.rb +16 -0
- data/lib/twitter_cldr/transforms/filters/filter_rule.rb +29 -0
- data/lib/twitter_cldr/transforms/filters/null_filter.rb +26 -0
- data/lib/twitter_cldr/transforms/filters/regex_filter.rb +74 -0
- data/lib/twitter_cldr/transforms/rule.rb +121 -0
- data/lib/twitter_cldr/transforms/rule_match.rb +37 -0
- data/lib/twitter_cldr/transforms/rule_set.rb +95 -0
- data/lib/twitter_cldr/transforms/tokenizer.rb +41 -0
- data/lib/twitter_cldr/transforms/transform_id.rb +164 -0
- data/lib/twitter_cldr/transforms/transformer.rb +220 -0
- data/lib/twitter_cldr/transforms/transforms.rb +21 -0
- data/lib/twitter_cldr/transforms/transforms/break_internal_transform.rb +20 -0
- data/lib/twitter_cldr/transforms/transforms/casing_transform.rb +76 -0
- data/lib/twitter_cldr/transforms/transforms/named_transform.rb +45 -0
- data/lib/twitter_cldr/transforms/transforms/normalization_transform.rb +57 -0
- data/lib/twitter_cldr/transforms/transforms/null_transform.rb +30 -0
- data/lib/twitter_cldr/transforms/transforms/parser.rb +129 -0
- data/lib/twitter_cldr/transforms/transforms/transform_pair.rb +47 -0
- data/lib/twitter_cldr/transforms/transforms/transform_rule.rb +92 -0
- data/lib/twitter_cldr/transforms/transliterator.rb +62 -0
- data/lib/twitter_cldr/transforms/variable_rule.rb +77 -0
- data/lib/twitter_cldr/utils.rb +1 -0
- data/lib/twitter_cldr/utils/regexp_ast.rb +1 -0
- data/lib/twitter_cldr/utils/regexp_sampler.rb +4 -0
- data/lib/twitter_cldr/utils/script_detector.rb +4 -0
- data/lib/twitter_cldr/{collation → utils}/trie.rb +7 -2
- data/lib/twitter_cldr/version.rb +1 -1
- data/lib/twitter_cldr/versions.rb +3 -3
- data/resources/collation/tries/af.dump +0 -0
- data/resources/collation/tries/ar.dump +0 -0
- data/resources/collation/tries/be.dump +0 -0
- data/resources/collation/tries/bg.dump +0 -0
- data/resources/collation/tries/bn.dump +0 -0
- data/resources/collation/tries/ca.dump +0 -0
- data/resources/collation/tries/cs.dump +0 -0
- data/resources/collation/tries/cy.dump +0 -0
- data/resources/collation/tries/da.dump +0 -0
- data/resources/collation/tries/de-CH.dump +0 -0
- data/resources/collation/tries/de.dump +0 -0
- data/resources/collation/tries/default.dump +0 -0
- data/resources/collation/tries/el.dump +0 -0
- data/resources/collation/tries/en-150.dump +0 -0
- data/resources/collation/tries/en-AU.dump +0 -0
- data/resources/collation/tries/en-CA.dump +0 -0
- data/resources/collation/tries/en-GB.dump +0 -0
- data/resources/collation/tries/en-IE.dump +0 -0
- data/resources/collation/tries/en-SG.dump +0 -0
- data/resources/collation/tries/en-ZA.dump +0 -0
- data/resources/collation/tries/en.dump +0 -0
- data/resources/collation/tries/es-419.dump +0 -0
- data/resources/collation/tries/es-CO.dump +0 -0
- data/resources/collation/tries/es-MX.dump +0 -0
- data/resources/collation/tries/es-US.dump +0 -0
- data/resources/collation/tries/es.dump +0 -0
- data/resources/collation/tries/eu.dump +0 -0
- data/resources/collation/tries/fa.dump +0 -0
- data/resources/collation/tries/fi.dump +0 -0
- data/resources/collation/tries/fil.dump +0 -0
- data/resources/collation/tries/fr-BE.dump +0 -0
- data/resources/collation/tries/fr-CA.dump +0 -0
- data/resources/collation/tries/fr-CH.dump +0 -0
- data/resources/collation/tries/fr.dump +0 -0
- data/resources/collation/tries/ga.dump +0 -0
- data/resources/collation/tries/gl.dump +0 -0
- data/resources/collation/tries/gu.dump +0 -0
- data/resources/collation/tries/he.dump +0 -0
- data/resources/collation/tries/hi.dump +0 -0
- data/resources/collation/tries/hr.dump +0 -0
- data/resources/collation/tries/hu.dump +0 -0
- data/resources/collation/tries/id.dump +0 -0
- data/resources/collation/tries/is.dump +0 -0
- data/resources/collation/tries/it-CH.dump +0 -0
- data/resources/collation/tries/it.dump +0 -0
- data/resources/collation/tries/ja.dump +0 -0
- data/resources/collation/tries/kn.dump +0 -0
- data/resources/collation/tries/ko.dump +0 -0
- data/resources/collation/tries/lv.dump +0 -0
- data/resources/collation/tries/mr.dump +0 -0
- data/resources/collation/tries/ms.dump +0 -0
- data/resources/collation/tries/nb.dump +0 -0
- data/resources/collation/tries/nl.dump +0 -0
- data/resources/collation/tries/pl.dump +0 -0
- data/resources/collation/tries/pt.dump +0 -0
- data/resources/collation/tries/ro.dump +0 -0
- data/resources/collation/tries/ru.dump +0 -0
- data/resources/collation/tries/sk.dump +0 -0
- data/resources/collation/tries/sq.dump +0 -0
- data/resources/collation/tries/sr.dump +0 -0
- data/resources/collation/tries/sv.dump +0 -0
- data/resources/collation/tries/ta.dump +0 -0
- data/resources/collation/tries/th.dump +0 -0
- data/resources/collation/tries/tr.dump +0 -0
- data/resources/collation/tries/uk.dump +0 -0
- data/resources/collation/tries/ur.dump +0 -0
- data/resources/collation/tries/vi.dump +0 -0
- data/resources/collation/tries/zh-Hant.dump +0 -0
- data/resources/collation/tries/zh.dump +0 -0
- data/resources/locales/af/calendars.yml +86 -44
- data/resources/locales/af/fields.yml +55 -26
- data/resources/locales/af/languages.yml +13 -4
- data/resources/locales/af/numbers.yml +49 -0
- data/resources/locales/af/territories.yml +12 -13
- data/resources/locales/af/units.yml +71 -6
- data/resources/locales/ar/calendars.yml +59 -4
- data/resources/locales/ar/fields.yml +276 -262
- data/resources/locales/ar/languages.yml +65 -41
- data/resources/locales/ar/lists.yml +8 -8
- data/resources/locales/ar/numbers.yml +135 -38
- data/resources/locales/ar/plurals.yml +3 -4
- data/resources/locales/ar/rbnf.yml +322 -0
- data/resources/locales/ar/territories.yml +15 -16
- data/resources/locales/ar/units.yml +380 -247
- data/resources/locales/be/calendars.yml +103 -29
- data/resources/locales/be/fields.yml +416 -1
- data/resources/locales/be/languages.yml +130 -10
- data/resources/locales/be/lists.yml +18 -3
- data/resources/locales/be/numbers.yml +200 -16
- data/resources/locales/be/plural_rules.yml +2 -1
- data/resources/locales/be/plurals.yml +9 -8
- data/resources/locales/be/territories.yml +23 -13
- data/resources/locales/be/units.yml +1212 -127
- data/resources/locales/bg/calendars.yml +65 -23
- data/resources/locales/bg/fields.yml +50 -2
- data/resources/locales/bg/languages.yml +13 -16
- data/resources/locales/bg/numbers.yml +51 -2
- data/resources/locales/bg/territories.yml +8 -9
- data/resources/locales/bg/units.yml +72 -7
- data/resources/locales/bn/calendars.yml +72 -23
- data/resources/locales/bn/fields.yml +37 -1
- data/resources/locales/bn/languages.yml +28 -22
- data/resources/locales/bn/numbers.yml +49 -0
- data/resources/locales/bn/plurals.yml +2 -2
- data/resources/locales/bn/territories.yml +6 -7
- data/resources/locales/bn/units.yml +108 -43
- data/resources/locales/ca/calendars.yml +87 -28
- data/resources/locales/ca/fields.yml +58 -10
- data/resources/locales/ca/languages.yml +61 -10
- data/resources/locales/ca/numbers.yml +49 -0
- data/resources/locales/ca/plurals.yml +2 -2
- data/resources/locales/ca/territories.yml +16 -17
- data/resources/locales/ca/units.yml +79 -12
- data/resources/locales/cs/calendars.yml +74 -19
- data/resources/locales/cs/fields.yml +48 -12
- data/resources/locales/cs/languages.yml +8 -3
- data/resources/locales/cs/numbers.yml +73 -0
- data/resources/locales/cs/plurals.yml +3 -3
- data/resources/locales/cs/territories.yml +1 -2
- data/resources/locales/cs/units.yml +129 -15
- data/resources/locales/cy/calendars.yml +47 -22
- data/resources/locales/cy/fields.yml +390 -52
- data/resources/locales/cy/languages.yml +83 -8
- data/resources/locales/cy/lists.yml +6 -1
- data/resources/locales/cy/numbers.yml +99 -2
- data/resources/locales/cy/territories.yml +4 -5
- data/resources/locales/cy/units.yml +1401 -71
- data/resources/locales/da/calendars.yml +67 -20
- data/resources/locales/da/fields.yml +59 -11
- data/resources/locales/da/languages.yml +10 -4
- data/resources/locales/da/numbers.yml +55 -6
- data/resources/locales/da/plurals.yml +2 -2
- data/resources/locales/da/rbnf.yml +353 -46
- data/resources/locales/da/territories.yml +8 -9
- data/resources/locales/da/units.yml +84 -16
- data/resources/locales/de-CH/calendars.yml +59 -15
- data/resources/locales/de-CH/fields.yml +36 -0
- data/resources/locales/de-CH/languages.yml +27 -23
- data/resources/locales/de-CH/numbers.yml +62 -13
- data/resources/locales/de-CH/plurals.yml +2 -2
- data/resources/locales/de-CH/rbnf.yml +532 -1
- data/resources/locales/de-CH/territories.yml +7 -8
- data/resources/locales/de-CH/units.yml +85 -16
- data/resources/locales/de/calendars.yml +59 -15
- data/resources/locales/de/fields.yml +36 -0
- data/resources/locales/de/languages.yml +27 -23
- data/resources/locales/de/numbers.yml +61 -12
- data/resources/locales/de/plurals.yml +2 -2
- data/resources/locales/de/territories.yml +8 -9
- data/resources/locales/de/units.yml +85 -16
- data/resources/locales/el/calendars.yml +54 -19
- data/resources/locales/el/fields.yml +69 -49
- data/resources/locales/el/languages.yml +12 -6
- data/resources/locales/el/lists.yml +6 -6
- data/resources/locales/el/numbers.yml +49 -0
- data/resources/locales/el/territories.yml +2 -3
- data/resources/locales/el/units.yml +81 -16
- data/resources/locales/en-150/calendars.yml +64 -26
- data/resources/locales/en-150/fields.yml +19 -12
- data/resources/locales/en-150/languages.yml +13 -8
- data/resources/locales/en-150/numbers.yml +49 -0
- data/resources/locales/en-150/plurals.yml +5 -5
- data/resources/locales/en-150/territories.yml +2 -3
- data/resources/locales/en-150/units.yml +125 -14
- data/resources/locales/en-AU/calendars.yml +117 -73
- data/resources/locales/en-AU/fields.yml +26 -19
- data/resources/locales/en-AU/languages.yml +13 -8
- data/resources/locales/en-AU/lists.yml +2 -2
- data/resources/locales/en-AU/numbers.yml +50 -1
- data/resources/locales/en-AU/plurals.yml +5 -5
- data/resources/locales/en-AU/territories.yml +6 -7
- data/resources/locales/en-AU/units.yml +171 -57
- data/resources/locales/en-CA/calendars.yml +58 -19
- data/resources/locales/en-CA/fields.yml +19 -12
- data/resources/locales/en-CA/languages.yml +13 -8
- data/resources/locales/en-CA/numbers.yml +49 -0
- data/resources/locales/en-CA/plurals.yml +5 -5
- data/resources/locales/en-CA/territories.yml +2 -3
- data/resources/locales/en-CA/units.yml +125 -14
- data/resources/locales/en-GB/calendars.yml +77 -40
- data/resources/locales/en-GB/fields.yml +77 -85
- data/resources/locales/en-GB/languages.yml +12 -7
- data/resources/locales/en-GB/lists.yml +1 -1
- data/resources/locales/en-GB/numbers.yml +49 -0
- data/resources/locales/en-GB/plurals.yml +5 -5
- data/resources/locales/en-GB/territories.yml +14 -15
- data/resources/locales/en-GB/units.yml +186 -75
- data/resources/locales/en-IE/calendars.yml +55 -17
- data/resources/locales/en-IE/fields.yml +19 -12
- data/resources/locales/en-IE/languages.yml +13 -8
- data/resources/locales/en-IE/numbers.yml +49 -0
- data/resources/locales/en-IE/plurals.yml +5 -5
- data/resources/locales/en-IE/territories.yml +2 -3
- data/resources/locales/en-IE/units.yml +126 -15
- data/resources/locales/en-SG/calendars.yml +52 -14
- data/resources/locales/en-SG/fields.yml +19 -12
- data/resources/locales/en-SG/languages.yml +13 -8
- data/resources/locales/en-SG/numbers.yml +49 -0
- data/resources/locales/en-SG/plurals.yml +5 -5
- data/resources/locales/en-SG/territories.yml +2 -3
- data/resources/locales/en-SG/units.yml +125 -14
- data/resources/locales/en-ZA/calendars.yml +54 -16
- data/resources/locales/en-ZA/fields.yml +19 -12
- data/resources/locales/en-ZA/languages.yml +13 -8
- data/resources/locales/en-ZA/numbers.yml +49 -0
- data/resources/locales/en-ZA/plurals.yml +5 -5
- data/resources/locales/en-ZA/territories.yml +2 -3
- data/resources/locales/en-ZA/units.yml +125 -14
- data/resources/locales/en/calendars.yml +51 -13
- data/resources/locales/en/fields.yml +19 -12
- data/resources/locales/en/languages.yml +13 -8
- data/resources/locales/en/numbers.yml +49 -0
- data/resources/locales/en/plurals.yml +5 -5
- data/resources/locales/en/rbnf.yml +37 -1
- data/resources/locales/en/territories.yml +2 -3
- data/resources/locales/en/units.yml +125 -14
- data/resources/locales/es-419/calendars.yml +159 -108
- data/resources/locales/es-419/fields.yml +122 -94
- data/resources/locales/es-419/languages.yml +22 -17
- data/resources/locales/es-419/lists.yml +4 -4
- data/resources/locales/es-419/numbers.yml +49 -0
- data/resources/locales/es-419/rbnf.yml +62 -1
- data/resources/locales/es-419/territories.yml +5 -6
- data/resources/locales/es-419/units.yml +193 -128
- data/resources/locales/es-CO/calendars.yml +128 -77
- data/resources/locales/es-CO/fields.yml +40 -12
- data/resources/locales/es-CO/languages.yml +22 -17
- data/resources/locales/es-CO/lists.yml +4 -4
- data/resources/locales/es-CO/numbers.yml +75 -26
- data/resources/locales/es-CO/territories.yml +5 -6
- data/resources/locales/es-CO/units.yml +167 -102
- data/resources/locales/es-MX/calendars.yml +119 -69
- data/resources/locales/es-MX/fields.yml +40 -12
- data/resources/locales/es-MX/languages.yml +26 -21
- data/resources/locales/es-MX/lists.yml +4 -4
- data/resources/locales/es-MX/numbers.yml +67 -18
- data/resources/locales/es-MX/territories.yml +8 -9
- data/resources/locales/es-MX/units.yml +160 -95
- data/resources/locales/es-US/calendars.yml +127 -77
- data/resources/locales/es-US/fields.yml +40 -12
- data/resources/locales/es-US/languages.yml +22 -17
- data/resources/locales/es-US/lists.yml +4 -4
- data/resources/locales/es-US/numbers.yml +73 -24
- data/resources/locales/es-US/territories.yml +5 -6
- data/resources/locales/es-US/units.yml +167 -102
- data/resources/locales/es/calendars.yml +124 -74
- data/resources/locales/es/fields.yml +40 -12
- data/resources/locales/es/languages.yml +22 -17
- data/resources/locales/es/lists.yml +4 -4
- data/resources/locales/es/numbers.yml +73 -24
- data/resources/locales/es/rbnf.yml +29 -14
- data/resources/locales/es/territories.yml +5 -6
- data/resources/locales/es/units.yml +171 -106
- data/resources/locales/eu/calendars.yml +18 -3
- data/resources/locales/eu/fields.yml +8 -0
- data/resources/locales/eu/languages.yml +1 -1
- data/resources/locales/eu/numbers.yml +49 -0
- data/resources/locales/eu/territories.yml +5 -6
- data/resources/locales/eu/units.yml +36 -6
- data/resources/locales/fa/calendars.yml +57 -14
- data/resources/locales/fa/fields.yml +64 -12
- data/resources/locales/fa/languages.yml +29 -17
- data/resources/locales/fa/numbers.yml +81 -32
- data/resources/locales/fa/plurals.yml +2 -2
- data/resources/locales/fa/territories.yml +11 -12
- data/resources/locales/fa/units.yml +144 -66
- data/resources/locales/fi/calendars.yml +55 -4
- data/resources/locales/fi/fields.yml +56 -4
- data/resources/locales/fi/languages.yml +8 -4
- data/resources/locales/fi/numbers.yml +49 -0
- data/resources/locales/fi/plurals.yml +2 -2
- data/resources/locales/fi/rbnf.yml +3649 -29
- data/resources/locales/fi/territories.yml +1 -2
- data/resources/locales/fi/units.yml +98 -12
- data/resources/locales/fil/calendars.yml +113 -60
- data/resources/locales/fil/fields.yml +78 -30
- data/resources/locales/fil/languages.yml +24 -12
- data/resources/locales/fil/lists.yml +4 -4
- data/resources/locales/fil/numbers.yml +61 -12
- data/resources/locales/fil/plurals.yml +4 -4
- data/resources/locales/fil/territories.yml +3 -4
- data/resources/locales/fil/units.yml +203 -138
- data/resources/locales/fr-BE/calendars.yml +103 -73
- data/resources/locales/fr-BE/fields.yml +32 -20
- data/resources/locales/fr-BE/languages.yml +12 -6
- data/resources/locales/fr-BE/numbers.yml +51 -2
- data/resources/locales/fr-BE/territories.yml +5 -6
- data/resources/locales/fr-BE/units.yml +100 -26
- data/resources/locales/fr-CA/calendars.yml +56 -26
- data/resources/locales/fr-CA/fields.yml +54 -42
- data/resources/locales/fr-CA/languages.yml +23 -17
- data/resources/locales/fr-CA/numbers.yml +54 -5
- data/resources/locales/fr-CA/territories.yml +4 -5
- data/resources/locales/fr-CA/units.yml +93 -19
- data/resources/locales/fr-CH/calendars.yml +103 -73
- data/resources/locales/fr-CH/fields.yml +32 -20
- data/resources/locales/fr-CH/languages.yml +12 -6
- data/resources/locales/fr-CH/numbers.yml +52 -3
- data/resources/locales/fr-CH/territories.yml +5 -6
- data/resources/locales/fr-CH/units.yml +100 -26
- data/resources/locales/fr/calendars.yml +103 -73
- data/resources/locales/fr/fields.yml +32 -20
- data/resources/locales/fr/languages.yml +12 -6
- data/resources/locales/fr/numbers.yml +51 -2
- data/resources/locales/fr/territories.yml +5 -6
- data/resources/locales/fr/units.yml +100 -26
- data/resources/locales/ga/calendars.yml +19 -4
- data/resources/locales/ga/fields.yml +82 -28
- data/resources/locales/ga/languages.yml +4 -3
- data/resources/locales/ga/numbers.yml +85 -0
- data/resources/locales/ga/plural_rules.yml +2 -1
- data/resources/locales/ga/plurals.yml +7 -5
- data/resources/locales/ga/territories.yml +0 -1
- data/resources/locales/ga/units.yml +140 -24
- data/resources/locales/gl/calendars.yml +60 -13
- data/resources/locales/gl/fields.yml +29 -0
- data/resources/locales/gl/languages.yml +42 -34
- data/resources/locales/gl/numbers.yml +50 -1
- data/resources/locales/gl/plurals.yml +2 -2
- data/resources/locales/gl/territories.yml +4 -5
- data/resources/locales/gl/units.yml +89 -24
- data/resources/locales/gu/calendars.yml +68 -25
- data/resources/locales/gu/fields.yml +55 -19
- data/resources/locales/gu/languages.yml +12 -7
- data/resources/locales/gu/lists.yml +8 -4
- data/resources/locales/gu/numbers.yml +97 -24
- data/resources/locales/gu/plurals.yml +2 -2
- data/resources/locales/gu/territories.yml +24 -25
- data/resources/locales/gu/units.yml +71 -6
- data/resources/locales/he/calendars.yml +42 -18
- data/resources/locales/he/languages.yml +9 -3
- data/resources/locales/he/numbers.yml +97 -24
- data/resources/locales/he/plurals.yml +3 -4
- data/resources/locales/he/rbnf.yml +4 -1
- data/resources/locales/he/territories.yml +7 -8
- data/resources/locales/he/units.yml +263 -164
- data/resources/locales/hi/calendars.yml +39 -3
- data/resources/locales/hi/fields.yml +12 -0
- data/resources/locales/hi/languages.yml +11 -5
- data/resources/locales/hi/numbers.yml +49 -0
- data/resources/locales/hi/plurals.yml +2 -2
- data/resources/locales/hi/territories.yml +0 -1
- data/resources/locales/hi/units.yml +75 -10
- data/resources/locales/hr/calendars.yml +46 -27
- data/resources/locales/hr/fields.yml +59 -11
- data/resources/locales/hr/languages.yml +8 -1
- data/resources/locales/hr/numbers.yml +61 -0
- data/resources/locales/hr/plurals.yml +4 -7
- data/resources/locales/hr/territories.yml +0 -1
- data/resources/locales/hr/units.yml +95 -13
- data/resources/locales/hu/calendars.yml +63 -2
- data/resources/locales/hu/fields.yml +48 -0
- data/resources/locales/hu/languages.yml +7 -1
- data/resources/locales/hu/numbers.yml +49 -0
- data/resources/locales/hu/territories.yml +3 -4
- data/resources/locales/hu/units.yml +73 -8
- data/resources/locales/id/calendars.yml +52 -2
- data/resources/locales/id/fields.yml +6 -6
- data/resources/locales/id/languages.yml +18 -21
- data/resources/locales/id/numbers.yml +37 -0
- data/resources/locales/id/rbnf.yml +4 -1
- data/resources/locales/id/territories.yml +2 -3
- data/resources/locales/id/units.yml +52 -4
- data/resources/locales/is/calendars.yml +53 -11
- data/resources/locales/is/fields.yml +61 -13
- data/resources/locales/is/languages.yml +10 -4
- data/resources/locales/is/numbers.yml +49 -0
- data/resources/locales/is/plurals.yml +2 -2
- data/resources/locales/is/territories.yml +4 -5
- data/resources/locales/is/units.yml +78 -12
- data/resources/locales/it-CH/calendars.yml +81 -31
- data/resources/locales/it-CH/fields.yml +22 -10
- data/resources/locales/it-CH/languages.yml +9 -5
- data/resources/locales/it-CH/lists.yml +4 -4
- data/resources/locales/it-CH/numbers.yml +61 -12
- data/resources/locales/it-CH/plurals.yml +2 -2
- data/resources/locales/it-CH/territories.yml +27 -28
- data/resources/locales/it-CH/units.yml +161 -96
- data/resources/locales/it/calendars.yml +67 -17
- data/resources/locales/it/fields.yml +22 -10
- data/resources/locales/it/languages.yml +9 -5
- data/resources/locales/it/lists.yml +4 -4
- data/resources/locales/it/numbers.yml +61 -12
- data/resources/locales/it/plurals.yml +2 -2
- data/resources/locales/it/rbnf.yml +3 -15
- data/resources/locales/it/territories.yml +27 -28
- data/resources/locales/it/units.yml +161 -96
- data/resources/locales/ja/calendars.yml +59 -2
- data/resources/locales/ja/fields.yml +36 -0
- data/resources/locales/ja/languages.yml +9 -6
- data/resources/locales/ja/numbers.yml +40 -3
- data/resources/locales/ja/territories.yml +1 -2
- data/resources/locales/ja/units.yml +57 -9
- data/resources/locales/kn/calendars.yml +56 -15
- data/resources/locales/kn/fields.yml +49 -1
- data/resources/locales/kn/languages.yml +6 -1
- data/resources/locales/kn/lists.yml +8 -4
- data/resources/locales/kn/numbers.yml +97 -24
- data/resources/locales/kn/plurals.yml +2 -2
- data/resources/locales/kn/territories.yml +0 -1
- data/resources/locales/kn/units.yml +83 -18
- data/resources/locales/ko/calendars.yml +61 -4
- data/resources/locales/ko/languages.yml +14 -21
- data/resources/locales/ko/numbers.yml +39 -2
- data/resources/locales/ko/territories.yml +29 -30
- data/resources/locales/ko/units.yml +58 -10
- data/resources/locales/lv/calendars.yml +58 -10
- data/resources/locales/lv/fields.yml +8 -8
- data/resources/locales/lv/languages.yml +8 -1
- data/resources/locales/lv/numbers.yml +62 -1
- data/resources/locales/lv/plurals.yml +4 -6
- data/resources/locales/lv/territories.yml +0 -1
- data/resources/locales/lv/units.yml +86 -8
- data/resources/locales/mr/calendars.yml +70 -11
- data/resources/locales/mr/fields.yml +97 -61
- data/resources/locales/mr/languages.yml +9 -3
- data/resources/locales/mr/lists.yml +8 -4
- data/resources/locales/mr/numbers.yml +97 -24
- data/resources/locales/mr/plurals.yml +2 -2
- data/resources/locales/mr/territories.yml +4 -5
- data/resources/locales/mr/units.yml +71 -6
- data/resources/locales/ms/calendars.yml +47 -6
- data/resources/locales/ms/fields.yml +48 -0
- data/resources/locales/ms/languages.yml +12 -4
- data/resources/locales/ms/numbers.yml +37 -0
- data/resources/locales/ms/rbnf.yml +2 -2
- data/resources/locales/ms/territories.yml +2 -3
- data/resources/locales/ms/units.yml +54 -6
- data/resources/locales/nb/calendars.yml +83 -38
- data/resources/locales/nb/fields.yml +89 -55
- data/resources/locales/nb/languages.yml +105 -8
- data/resources/locales/nb/numbers.yml +50 -1
- data/resources/locales/nb/rbnf.yml +762 -22
- data/resources/locales/nb/territories.yml +2 -3
- data/resources/locales/nb/units.yml +92 -19
- data/resources/locales/nl/calendars.yml +88 -52
- data/resources/locales/nl/fields.yml +62 -10
- data/resources/locales/nl/languages.yml +12 -9
- data/resources/locales/nl/lists.yml +1 -1
- data/resources/locales/nl/numbers.yml +50 -1
- data/resources/locales/nl/plurals.yml +2 -2
- data/resources/locales/nl/territories.yml +2 -3
- data/resources/locales/nl/units.yml +101 -30
- data/resources/locales/pl/calendars.yml +70 -31
- data/resources/locales/pl/fields.yml +12 -0
- data/resources/locales/pl/languages.yml +8 -5
- data/resources/locales/pl/numbers.yml +73 -0
- data/resources/locales/pl/plurals.yml +4 -8
- data/resources/locales/pl/rbnf.yml +965 -50
- data/resources/locales/pl/territories.yml +3 -4
- data/resources/locales/pl/units.yml +109 -10
- data/resources/locales/pt/calendars.yml +65 -23
- data/resources/locales/pt/fields.yml +76 -76
- data/resources/locales/pt/languages.yml +20 -13
- data/resources/locales/pt/numbers.yml +49 -0
- data/resources/locales/pt/plurals.yml +2 -2
- data/resources/locales/pt/rbnf.yml +1 -1
- data/resources/locales/pt/territories.yml +4 -5
- data/resources/locales/pt/units.yml +75 -10
- data/resources/locales/ro/calendars.yml +90 -50
- data/resources/locales/ro/fields.yml +15 -3
- data/resources/locales/ro/languages.yml +10 -4
- data/resources/locales/ro/numbers.yml +62 -1
- data/resources/locales/ro/plurals.yml +3 -4
- data/resources/locales/ro/territories.yml +4 -5
- data/resources/locales/ro/units.yml +100 -18
- data/resources/locales/ru/calendars.yml +88 -41
- data/resources/locales/ru/fields.yml +24 -12
- data/resources/locales/ru/languages.yml +13 -6
- data/resources/locales/ru/lists.yml +7 -7
- data/resources/locales/ru/numbers.yml +73 -0
- data/resources/locales/ru/plurals.yml +4 -8
- data/resources/locales/ru/rbnf.yml +3916 -8
- data/resources/locales/ru/territories.yml +6 -7
- data/resources/locales/ru/units.yml +127 -28
- data/resources/locales/sk/calendars.yml +97 -42
- data/resources/locales/sk/fields.yml +30 -18
- data/resources/locales/sk/languages.yml +20 -14
- data/resources/locales/sk/lists.yml +1 -1
- data/resources/locales/sk/numbers.yml +99 -26
- data/resources/locales/sk/plurals.yml +3 -3
- data/resources/locales/sk/territories.yml +1 -2
- data/resources/locales/sk/units.yml +114 -15
- data/resources/locales/sq/calendars.yml +66 -11
- data/resources/locales/sq/fields.yml +49 -49
- data/resources/locales/sq/languages.yml +48 -39
- data/resources/locales/sq/numbers.yml +49 -0
- data/resources/locales/sq/plurals.yml +2 -2
- data/resources/locales/sq/territories.yml +25 -25
- data/resources/locales/sq/units.yml +112 -47
- data/resources/locales/sr/calendars.yml +70 -21
- data/resources/locales/sr/fields.yml +26 -14
- data/resources/locales/sr/languages.yml +12 -6
- data/resources/locales/sr/numbers.yml +62 -1
- data/resources/locales/sr/plurals.yml +4 -7
- data/resources/locales/sr/territories.yml +2 -3
- data/resources/locales/sr/units.yml +99 -17
- data/resources/locales/sv/calendars.yml +110 -71
- data/resources/locales/sv/fields.yml +69 -21
- data/resources/locales/sv/languages.yml +35 -5
- data/resources/locales/sv/numbers.yml +51 -2
- data/resources/locales/sv/plurals.yml +4 -4
- data/resources/locales/sv/territories.yml +0 -1
- data/resources/locales/sv/units.yml +95 -9
- data/resources/locales/ta/calendars.yml +112 -47
- data/resources/locales/ta/fields.yml +145 -97
- data/resources/locales/ta/languages.yml +30 -26
- data/resources/locales/ta/numbers.yml +49 -0
- data/resources/locales/ta/territories.yml +31 -32
- data/resources/locales/ta/units.yml +90 -25
- data/resources/locales/th/calendars.yml +66 -6
- data/resources/locales/th/fields.yml +36 -0
- data/resources/locales/th/languages.yml +10 -3
- data/resources/locales/th/numbers.yml +37 -0
- data/resources/locales/th/rbnf.yml +2 -2
- data/resources/locales/th/territories.yml +0 -1
- data/resources/locales/th/units.yml +54 -6
- data/resources/locales/tr/calendars.yml +63 -2
- data/resources/locales/tr/fields.yml +28 -0
- data/resources/locales/tr/languages.yml +9 -4
- data/resources/locales/tr/numbers.yml +49 -0
- data/resources/locales/tr/rbnf.yml +9 -28
- data/resources/locales/tr/territories.yml +1 -2
- data/resources/locales/tr/units.yml +81 -16
- data/resources/locales/uk/calendars.yml +93 -61
- data/resources/locales/uk/fields.yml +44 -12
- data/resources/locales/uk/languages.yml +27 -6
- data/resources/locales/uk/numbers.yml +86 -13
- data/resources/locales/uk/plurals.yml +6 -10
- data/resources/locales/uk/territories.yml +3 -4
- data/resources/locales/uk/units.yml +122 -23
- data/resources/locales/ur/calendars.yml +58 -9
- data/resources/locales/ur/fields.yml +51 -19
- data/resources/locales/ur/languages.yml +23 -13
- data/resources/locales/ur/numbers.yml +49 -0
- data/resources/locales/ur/plurals.yml +2 -2
- data/resources/locales/ur/territories.yml +8 -9
- data/resources/locales/ur/units.yml +76 -11
- data/resources/locales/vi/calendars.yml +72 -23
- data/resources/locales/vi/fields.yml +65 -29
- data/resources/locales/vi/languages.yml +42 -3
- data/resources/locales/vi/numbers.yml +38 -1
- data/resources/locales/vi/territories.yml +7 -8
- data/resources/locales/vi/units.yml +58 -10
- data/resources/locales/zh-Hant/calendars.yml +64 -21
- data/resources/locales/zh-Hant/fields.yml +12 -0
- data/resources/locales/zh-Hant/languages.yml +13 -8
- data/resources/locales/zh-Hant/lists.yml +8 -8
- data/resources/locales/zh-Hant/numbers.yml +50 -13
- data/resources/locales/zh-Hant/territories.yml +11 -12
- data/resources/locales/zh-Hant/units.yml +204 -156
- data/resources/locales/zh/calendars.yml +69 -26
- data/resources/locales/zh/languages.yml +8 -1
- data/resources/locales/zh/numbers.yml +40 -3
- data/resources/locales/zh/territories.yml +2 -3
- data/resources/locales/zh/units.yml +71 -23
- data/resources/shared/aliases.yml +31 -0
- data/resources/shared/hyphenation/af-ZA.yml +3343 -0
- data/resources/shared/hyphenation/bg-BG.yml +5963 -0
- data/resources/shared/hyphenation/ca.yml +2310 -0
- data/resources/shared/hyphenation/cs-CZ.yml +3639 -0
- data/resources/shared/hyphenation/da-DK.yml +1148 -0
- data/resources/shared/hyphenation/de-AT.yml +11392 -0
- data/resources/shared/hyphenation/de-CH.yml +11392 -0
- data/resources/shared/hyphenation/de-DE.yml +11392 -0
- data/resources/shared/hyphenation/el-GR.yml +581 -0
- data/resources/shared/hyphenation/en-GB.yml +14064 -0
- data/resources/shared/hyphenation/en-US.yml +11132 -0
- data/resources/shared/hyphenation/es.yml +867 -0
- data/resources/shared/hyphenation/et-EE.yml +3694 -0
- data/resources/shared/hyphenation/fr.yml +2844 -0
- data/resources/shared/hyphenation/gl.yml +292 -0
- data/resources/shared/hyphenation/hr-HR.yml +1599 -0
- data/resources/shared/hyphenation/hu-HU.yml +96292 -0
- data/resources/shared/hyphenation/is.yml +7697 -0
- data/resources/shared/hyphenation/it-IT.yml +401 -0
- data/resources/shared/hyphenation/lt.yml +1549 -0
- data/resources/shared/hyphenation/lv-LV.yml +11902 -0
- data/resources/shared/hyphenation/nb-NO.yml +27144 -0
- data/resources/shared/hyphenation/nl-NL.yml +16259 -0
- data/resources/shared/hyphenation/nn-NO.yml +27144 -0
- data/resources/shared/hyphenation/pl-PL.yml +4826 -0
- data/resources/shared/hyphenation/pt-BR.yml +1249 -0
- data/resources/shared/hyphenation/pt-PT.yml +310 -0
- data/resources/shared/hyphenation/ro-RO.yml +5206 -0
- data/resources/shared/hyphenation/ru-RU.yml +3877 -0
- data/resources/shared/hyphenation/sk-SK.yml +2470 -0
- data/resources/shared/hyphenation/sl-SI.yml +1415 -0
- data/resources/shared/hyphenation/sr-Latn.yml +3414 -0
- data/resources/shared/hyphenation/sr.yml +3367 -0
- data/resources/shared/hyphenation/sv.yml +14956 -0
- data/resources/shared/hyphenation/te-IN.yml +75 -0
- data/resources/shared/hyphenation/uk-UA.yml +1656 -0
- data/resources/shared/hyphenation/zu-ZA.yml +133 -0
- data/resources/shared/language_codes_table.dump +0 -0
- data/resources/shared/likely_subtags.yml +61 -16
- data/resources/shared/numbering_systems.yml +45 -0
- data/resources/shared/postal_codes.yml +318 -309
- data/resources/shared/rbnf_root.yml +613 -273
- data/resources/shared/segments/segments_root.yml +4 -1
- data/resources/shared/territories_containment.yml +3 -3
- data/resources/shared/transforms/Amharic-Latin-BGN.yml +336 -0
- data/resources/shared/transforms/Amharic-Latin.yml +335 -0
- data/resources/shared/transforms/Any-Accents.yml +52 -0
- data/resources/shared/transforms/Any-Publishing.yml +22 -0
- data/resources/shared/transforms/Arabic-Latin-BGN.yml +122 -0
- data/resources/shared/transforms/Arabic-Latin.yml +109 -0
- data/resources/shared/transforms/Armenian-Latin-BGN.yml +133 -0
- data/resources/shared/transforms/Armenian-Latin.yml +132 -0
- data/resources/shared/transforms/Azerbaijani-Latin-BGN.yml +93 -0
- data/resources/shared/transforms/Azerbaijani-Latin.yml +92 -0
- data/resources/shared/transforms/Belarusian-Latin-BGN.yml +108 -0
- data/resources/shared/transforms/Belarusian-Latin.yml +107 -0
- data/resources/shared/transforms/Bengali-Devanagari.yml +13 -0
- data/resources/shared/transforms/Bengali-Gujarati.yml +13 -0
- data/resources/shared/transforms/Bengali-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Bengali-InterIndic.yml +100 -0
- data/resources/shared/transforms/Bengali-Kannada.yml +13 -0
- data/resources/shared/transforms/Bengali-Latin.yml +13 -0
- data/resources/shared/transforms/Bengali-Malayalam.yml +13 -0
- data/resources/shared/transforms/Bengali-Oriya.yml +13 -0
- data/resources/shared/transforms/Bengali-Tamil.yml +13 -0
- data/resources/shared/transforms/Bengali-Telugu.yml +13 -0
- data/resources/shared/transforms/Bulgarian-Latin-BGN.yml +99 -0
- data/resources/shared/transforms/Bulgarian-Latin.yml +98 -0
- data/resources/shared/transforms/Cyrillic-Latin.yml +128 -0
- data/resources/shared/transforms/Devanagari-Bengali.yml +13 -0
- data/resources/shared/transforms/Devanagari-Gujarati.yml +13 -0
- data/resources/shared/transforms/Devanagari-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Devanagari-InterIndic.yml +114 -0
- data/resources/shared/transforms/Devanagari-Kannada.yml +13 -0
- data/resources/shared/transforms/Devanagari-Latin.yml +13 -0
- data/resources/shared/transforms/Devanagari-Malayalam.yml +13 -0
- data/resources/shared/transforms/Devanagari-Oriya.yml +13 -0
- data/resources/shared/transforms/Devanagari-Tamil.yml +13 -0
- data/resources/shared/transforms/Devanagari-Telugu.yml +13 -0
- data/resources/shared/transforms/Fullwidth-Halfwidth.yml +260 -0
- data/resources/shared/transforms/Georgian-Latin-BGN.yml +44 -0
- data/resources/shared/transforms/Georgian-Latin.yml +43 -0
- data/resources/shared/transforms/Greek-Latin-BGN.yml +208 -0
- data/resources/shared/transforms/Greek-Latin-UNGEGN.yml +160 -0
- data/resources/shared/transforms/Greek-Latin.yml +206 -0
- data/resources/shared/transforms/Gujarati-Bengali.yml +13 -0
- data/resources/shared/transforms/Gujarati-Devanagari.yml +13 -0
- data/resources/shared/transforms/Gujarati-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Gujarati-InterIndic.yml +91 -0
- data/resources/shared/transforms/Gujarati-Kannada.yml +13 -0
- data/resources/shared/transforms/Gujarati-Latin.yml +13 -0
- data/resources/shared/transforms/Gujarati-Malayalam.yml +13 -0
- data/resources/shared/transforms/Gujarati-Oriya.yml +13 -0
- data/resources/shared/transforms/Gujarati-Tamil.yml +13 -0
- data/resources/shared/transforms/Gujarati-Telugu.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Bengali.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Devanagari.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Gujarati.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-InterIndic.yml +84 -0
- data/resources/shared/transforms/Gurmukhi-Kannada.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Latin.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Malayalam.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Oriya.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Tamil.yml +13 -0
- data/resources/shared/transforms/Gurmukhi-Telugu.yml +13 -0
- data/resources/shared/transforms/Han-Latin-Names.yml +53 -0
- data/resources/shared/transforms/Han-Latin.yml +1606 -0
- data/resources/shared/transforms/Han-Spacedhan.yml +17 -0
- data/resources/shared/transforms/Hangul-Latin.yml +12 -0
- data/resources/shared/transforms/Hebrew-Latin-BGN.yml +62 -0
- data/resources/shared/transforms/Hebrew-Latin.yml +72 -0
- data/resources/shared/transforms/Hiragana-Katakana.yml +114 -0
- data/resources/shared/transforms/Hiragana-Latin.yml +15 -0
- data/resources/shared/transforms/IPA-XSampa.yml +176 -0
- data/resources/shared/transforms/InterIndic-Bengali.yml +137 -0
- data/resources/shared/transforms/InterIndic-Devanagari.yml +149 -0
- data/resources/shared/transforms/InterIndic-Gujarati.yml +137 -0
- data/resources/shared/transforms/InterIndic-Gurmukhi.yml +141 -0
- data/resources/shared/transforms/InterIndic-Kannada.yml +139 -0
- data/resources/shared/transforms/InterIndic-Latin.yml +461 -0
- data/resources/shared/transforms/InterIndic-Malayalam.yml +139 -0
- data/resources/shared/transforms/InterIndic-Oriya.yml +137 -0
- data/resources/shared/transforms/InterIndic-Tamil.yml +138 -0
- data/resources/shared/transforms/InterIndic-Telugu.yml +138 -0
- data/resources/shared/transforms/Jamo-Latin.yml +12 -0
- data/resources/shared/transforms/JapaneseKana-Latin.yml +309 -0
- data/resources/shared/transforms/Kannada-Bengali.yml +13 -0
- data/resources/shared/transforms/Kannada-Devanagari.yml +13 -0
- data/resources/shared/transforms/Kannada-Gujarati.yml +13 -0
- data/resources/shared/transforms/Kannada-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Kannada-InterIndic.yml +91 -0
- data/resources/shared/transforms/Kannada-Latin.yml +13 -0
- data/resources/shared/transforms/Kannada-Malayalam.yml +13 -0
- data/resources/shared/transforms/Kannada-Oriya.yml +13 -0
- data/resources/shared/transforms/Kannada-Tamil.yml +13 -0
- data/resources/shared/transforms/Kannada-Telugu.yml +13 -0
- data/resources/shared/transforms/Katakana-Latin-BGN.yml +310 -0
- data/resources/shared/transforms/Katakana-Latin.yml +309 -0
- data/resources/shared/transforms/Kazakh-Latin-BGN.yml +136 -0
- data/resources/shared/transforms/Kazakh-Latin.yml +135 -0
- data/resources/shared/transforms/Kirghiz-Latin-BGN.yml +107 -0
- data/resources/shared/transforms/Kirghiz-Latin.yml +106 -0
- data/resources/shared/transforms/Korean-Latin-BGN.yml +282 -0
- data/resources/shared/transforms/Korean-Latin.yml +281 -0
- data/resources/shared/transforms/Latin-ASCII.yml +694 -0
- data/resources/shared/transforms/Latin-Armenian.yml +90 -0
- data/resources/shared/transforms/Latin-Bengali.yml +14 -0
- data/resources/shared/transforms/Latin-Bopomofo.yml +1451 -0
- data/resources/shared/transforms/Latin-CanadianAboriginal.yml +190 -0
- data/resources/shared/transforms/Latin-ConjoiningJamo.yml +263 -0
- data/resources/shared/transforms/Latin-Devanagari.yml +14 -0
- data/resources/shared/transforms/Latin-Ethiopic.yml +278 -0
- data/resources/shared/transforms/Latin-Gujarati.yml +14 -0
- data/resources/shared/transforms/Latin-Gurmukhi.yml +14 -0
- data/resources/shared/transforms/Latin-Hangul.yml +13 -0
- data/resources/shared/transforms/Latin-InterIndic.yml +341 -0
- data/resources/shared/transforms/Latin-Jamo.yml +13 -0
- data/resources/shared/transforms/Latin-Kannada.yml +14 -0
- data/resources/shared/transforms/Latin-Katakana.yml +274 -0
- data/resources/shared/transforms/Latin-Malayalam.yml +14 -0
- data/resources/shared/transforms/Latin-NumericPinyin.yml +21 -0
- data/resources/shared/transforms/Latin-Oriya.yml +14 -0
- data/resources/shared/transforms/Latin-Tamil.yml +14 -0
- data/resources/shared/transforms/Latin-Telugu.yml +14 -0
- data/resources/shared/transforms/Latin-Thaana.yml +439 -0
- data/resources/shared/transforms/Latin-Thai.yml +13 -0
- data/resources/shared/transforms/Macedonian-Latin-BGN.yml +89 -0
- data/resources/shared/transforms/Macedonian-Latin.yml +88 -0
- data/resources/shared/transforms/Malayalam-Bengali.yml +13 -0
- data/resources/shared/transforms/Malayalam-Devanagari.yml +13 -0
- data/resources/shared/transforms/Malayalam-Gujarati.yml +13 -0
- data/resources/shared/transforms/Malayalam-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Malayalam-InterIndic.yml +83 -0
- data/resources/shared/transforms/Malayalam-Kannada.yml +13 -0
- data/resources/shared/transforms/Malayalam-Latin.yml +13 -0
- data/resources/shared/transforms/Malayalam-Oriya.yml +13 -0
- data/resources/shared/transforms/Malayalam-Tamil.yml +13 -0
- data/resources/shared/transforms/Malayalam-Telugu.yml +13 -0
- data/resources/shared/transforms/Maldivian-Latin-BGN.yml +77 -0
- data/resources/shared/transforms/Maldivian-Latin.yml +76 -0
- data/resources/shared/transforms/Mongolian-Latin-BGN.yml +101 -0
- data/resources/shared/transforms/Mongolian-Latin.yml +100 -0
- data/resources/shared/transforms/Oriya-Bengali.yml +13 -0
- data/resources/shared/transforms/Oriya-Devanagari.yml +13 -0
- data/resources/shared/transforms/Oriya-Gujarati.yml +13 -0
- data/resources/shared/transforms/Oriya-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Oriya-InterIndic.yml +89 -0
- data/resources/shared/transforms/Oriya-Kannada.yml +13 -0
- data/resources/shared/transforms/Oriya-Latin.yml +13 -0
- data/resources/shared/transforms/Oriya-Malayalam.yml +13 -0
- data/resources/shared/transforms/Oriya-Tamil.yml +13 -0
- data/resources/shared/transforms/Oriya-Telugu.yml +13 -0
- data/resources/shared/transforms/Pashto-Latin-BGN.yml +151 -0
- data/resources/shared/transforms/Pashto-Latin.yml +150 -0
- data/resources/shared/transforms/Persian-Latin-BGN.yml +123 -0
- data/resources/shared/transforms/Persian-Latin.yml +122 -0
- data/resources/shared/transforms/Pinyin-NumericPinyin.yml +13 -0
- data/resources/shared/transforms/Russian-Latin-BGN.yml +113 -0
- data/resources/shared/transforms/Russian-Latin.yml +112 -0
- data/resources/shared/transforms/Serbian-Latin-BGN.yml +81 -0
- data/resources/shared/transforms/Serbian-Latin.yml +80 -0
- data/resources/shared/transforms/Simplified-Traditional.yml +3988 -0
- data/resources/shared/transforms/Syriac-Latin.yml +55 -0
- data/resources/shared/transforms/Tamil-Bengali.yml +13 -0
- data/resources/shared/transforms/Tamil-Devanagari.yml +13 -0
- data/resources/shared/transforms/Tamil-Gujarati.yml +13 -0
- data/resources/shared/transforms/Tamil-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Tamil-InterIndic.yml +72 -0
- data/resources/shared/transforms/Tamil-Kannada.yml +13 -0
- data/resources/shared/transforms/Tamil-Latin.yml +13 -0
- data/resources/shared/transforms/Tamil-Malayalam.yml +13 -0
- data/resources/shared/transforms/Tamil-Oriya.yml +13 -0
- data/resources/shared/transforms/Tamil-Telugu.yml +13 -0
- data/resources/shared/transforms/Telugu-Bengali.yml +13 -0
- data/resources/shared/transforms/Telugu-Devanagari.yml +13 -0
- data/resources/shared/transforms/Telugu-Gujarati.yml +13 -0
- data/resources/shared/transforms/Telugu-Gurmukhi.yml +13 -0
- data/resources/shared/transforms/Telugu-InterIndic.yml +89 -0
- data/resources/shared/transforms/Telugu-Kannada.yml +13 -0
- data/resources/shared/transforms/Telugu-Latin.yml +13 -0
- data/resources/shared/transforms/Telugu-Malayalam.yml +13 -0
- data/resources/shared/transforms/Telugu-Oriya.yml +13 -0
- data/resources/shared/transforms/Telugu-Tamil.yml +13 -0
- data/resources/shared/transforms/Thai-Latin.yml +15 -0
- data/resources/shared/transforms/Thai-ThaiLogical.yml +15 -0
- data/resources/shared/transforms/Thai-ThaiSemi.yml +10 -0
- data/resources/shared/transforms/ThaiLogical-Latin.yml +119 -0
- data/resources/shared/transforms/Turkmen-Latin-BGN.yml +122 -0
- data/resources/shared/transforms/Turkmen-Latin.yml +121 -0
- data/resources/shared/transforms/Ukrainian-Latin-BGN.yml +115 -0
- data/resources/shared/transforms/Ukrainian-Latin.yml +114 -0
- data/resources/shared/transforms/Uzbek-Latin-BGN.yml +117 -0
- data/resources/shared/transforms/Uzbek-Latin.yml +116 -0
- data/resources/shared/transforms/az-Lower.yml +12 -0
- data/resources/shared/transforms/az-Title.yml +13 -0
- data/resources/shared/transforms/az-Upper.yml +10 -0
- data/resources/shared/transforms/ch-ch_FONIPA.yml +71 -0
- data/resources/shared/transforms/cs-cs_FONIPA.yml +62 -0
- data/resources/shared/transforms/cs-ja.yml +10 -0
- data/resources/shared/transforms/cs-ko.yml +10 -0
- data/resources/shared/transforms/cs_FONIPA-ja.yml +201 -0
- data/resources/shared/transforms/cs_FONIPA-ko.yml +88 -0
- data/resources/shared/transforms/dsb-dsb_FONIPA.yml +73 -0
- data/resources/shared/transforms/el-Lower.yml +13 -0
- data/resources/shared/transforms/el-Title.yml +14 -0
- data/resources/shared/transforms/el-Upper.yml +13 -0
- data/resources/shared/transforms/es-am.yml +10 -0
- data/resources/shared/transforms/es-es_FONIPA.yml +81 -0
- data/resources/shared/transforms/es-ja.yml +10 -0
- data/resources/shared/transforms/es-zh.yml +10 -0
- data/resources/shared/transforms/es_419-ja.yml +11 -0
- data/resources/shared/transforms/es_419-zh.yml +11 -0
- data/resources/shared/transforms/es_FONIPA-am.yml +167 -0
- data/resources/shared/transforms/es_FONIPA-es_419_FONIPA.yml +10 -0
- data/resources/shared/transforms/es_FONIPA-ja.yml +145 -0
- data/resources/shared/transforms/es_FONIPA-zh.yml +497 -0
- data/resources/shared/transforms/it-am.yml +198 -0
- data/resources/shared/transforms/it-ja.yml +185 -0
- data/resources/shared/transforms/ja_Latn-ko.yml +92 -0
- data/resources/shared/transforms/ja_Latn-ru.yml +63 -0
- data/resources/shared/transforms/la-la_FONIPA.yml +81 -0
- data/resources/shared/transforms/lt-Lower.yml +17 -0
- data/resources/shared/transforms/lt-Title.yml +19 -0
- data/resources/shared/transforms/lt-Upper.yml +12 -0
- data/resources/shared/transforms/nl-Title.yml +10 -0
- data/resources/shared/transforms/pl-ja.yml +10 -0
- data/resources/shared/transforms/pl-pl_FONIPA.yml +98 -0
- data/resources/shared/transforms/pl_FONIPA-ja.yml +218 -0
- data/resources/shared/transforms/ro-ja.yml +10 -0
- data/resources/shared/transforms/ro-ro_FONIPA.yml +88 -0
- data/resources/shared/transforms/ro_FONIPA-ja.yml +157 -0
- data/resources/shared/transforms/ru-ja.yml +441 -0
- data/resources/shared/transforms/ru-zh.yml +975 -0
- data/resources/shared/transforms/sk-ja.yml +10 -0
- data/resources/shared/transforms/sk-sk_FONIPA.yml +74 -0
- data/resources/shared/transforms/sk_FONIPA-ja.yml +190 -0
- data/resources/shared/transforms/tlh-tlh_FONIPA.yml +54 -0
- data/resources/shared/transforms/tr-Lower.yml +12 -0
- data/resources/shared/transforms/tr-Title.yml +13 -0
- data/resources/shared/transforms/tr-Upper.yml +10 -0
- data/resources/shared/transforms/uz_Cyrl-uz_Latn.yml +102 -0
- data/resources/shared/transforms/yo-yo_BJ.yml +16 -0
- data/resources/shared/transforms/zh_Latn_PINYIN-ru.yml +120 -0
- data/resources/unicode_data/blocks.yml +168 -0
- data/resources/unicode_data/blocks/ancient_greek_numbers.yml +32 -0
- data/resources/unicode_data/blocks/ancient_symbols.yml +16 -0
- data/resources/unicode_data/blocks/arabic.yml +16 -0
- data/resources/unicode_data/blocks/arabic_extended_a.yml +176 -0
- data/resources/unicode_data/blocks/arabic_presentation_forms_a.yml +2 -2
- data/resources/unicode_data/blocks/armenian.yml +32 -0
- data/resources/unicode_data/blocks/bengali.yml +16 -0
- data/resources/unicode_data/blocks/brahmi.yml +16 -0
- data/resources/unicode_data/blocks/cherokee.yml +281 -169
- data/resources/unicode_data/blocks/cjk_unified_ideographs.yml +2 -2
- data/resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml +240 -0
- data/resources/unicode_data/blocks/combining_half_marks.yml +144 -0
- data/resources/unicode_data/blocks/cuneiform.yml +688 -0
- data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +208 -0
- data/resources/unicode_data/blocks/currency_symbols.yml +64 -0
- data/resources/unicode_data/blocks/cyrillic_extended_b.yml +112 -0
- data/resources/unicode_data/blocks/cyrillic_supplement.yml +128 -0
- data/resources/unicode_data/blocks/devanagari.yml +16 -0
- data/resources/unicode_data/blocks/devanagari_extended.yml +32 -0
- data/resources/unicode_data/blocks/dingbats.yml +16 -0
- data/resources/unicode_data/blocks/emoticons.yml +64 -0
- data/resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml +32 -0
- data/resources/unicode_data/blocks/greek_and_coptic.yml +18 -2
- data/resources/unicode_data/blocks/gujarati.yml +16 -0
- data/resources/unicode_data/blocks/ipa_extensions.yml +12 -12
- data/resources/unicode_data/blocks/kannada.yml +16 -0
- data/resources/unicode_data/blocks/latin_extended_d.yml +400 -0
- data/resources/unicode_data/blocks/limbu.yml +32 -0
- data/resources/unicode_data/blocks/malayalam.yml +32 -0
- data/resources/unicode_data/blocks/meroitic_cursive.yml +1024 -0
- data/resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml +1904 -0
- data/resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml +4816 -1088
- data/resources/unicode_data/blocks/miscellaneous_technical.yml +112 -0
- data/resources/unicode_data/blocks/musical_symbols.yml +176 -0
- data/resources/unicode_data/blocks/myanmar_extended_a.yml +64 -0
- data/resources/unicode_data/blocks/new_tai_lue.yml +19 -19
- data/resources/unicode_data/blocks/number_forms.yml +32 -0
- data/resources/unicode_data/blocks/old_italic.yml +16 -0
- data/resources/unicode_data/blocks/playing_cards.yml +368 -0
- data/resources/unicode_data/blocks/runic.yml +128 -0
- data/resources/unicode_data/blocks/sharada.yml +176 -0
- data/resources/unicode_data/blocks/sinhala.yml +160 -0
- data/resources/unicode_data/blocks/sundanese.yml +4 -4
- data/resources/unicode_data/blocks/supplemental_punctuation.yml +112 -0
- data/resources/unicode_data/blocks/telugu.yml +48 -0
- data/resources/unicode_data/blocks/transport_and_map_symbols.yml +448 -0
- data/resources/unicode_data/blocks/vedic_extensions.yml +32 -0
- data/resources/unicode_data/casefolding.yml +760 -0
- data/resources/unicode_data/properties/Age/7.0/value.dump +0 -0
- data/resources/unicode_data/properties/Age/8.0/value.dump +0 -0
- data/resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Close/value.dump +62 -0
- data/resources/unicode_data/properties/Bidi_Paired_Bracket_Type/Open/value.dump +66 -0
- data/resources/unicode_data/properties/Block/Ahom/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Anatolian Hieroglyphs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Bassa Vah/value.dump +3 -0
- data/resources/unicode_data/properties/Block/CJK Unified Ideographs Extension E/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Caucasian Albanian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Cherokee Supplement/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Combining Diacritical Marks Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Coptic Epact Numbers/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Duployan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Early Dynastic Cuneiform/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Elbasan/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Geometric Shapes Extended/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Grantha/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Hatran/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Khojki/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Khudawadi/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Latin Extended-E/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Linear A/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mahajani/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Manichaean/value.dump +5 -0
- data/resources/unicode_data/properties/Block/Mende Kikakui/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Modi/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Mro/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Multani/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Myanmar Extended-B/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Nabataean/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Old Hungarian/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Old North Arabian/value.dump +5 -0
- data/resources/unicode_data/properties/Block/Old Permic/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Ornamental Dingbats/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Pahawh Hmong/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Palmyrene/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Pau Cin Hau/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Psalter Pahlavi/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Shorthand Format Controls/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Siddham/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Sinhala Archaic Numbers/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Supplemental Arrows-C/value.dump +0 -0
- Pictographs/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Sutton SignWriting/value.dump +0 -0
- data/resources/unicode_data/properties/Block/Tirhuta/value.dump +3 -0
- data/resources/unicode_data/properties/Block/Warang Citi/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Brahmi_Joining_Number/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Cantillation_Mark/value.dump +10 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Killer/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Preceding_Repha/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Prefixed/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_Succeeding_Repha/value.dump +6 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Consonant_With_Stacker/value.dump +4 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Gemination_Mark/value.dump +6 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Invisible_Stacker/value.dump +11 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Joiner/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Non_Joiner/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Number/value.dump +0 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Number_Joiner/value.dump +3 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Pure_Killer/value.dump +17 -0
- data/resources/unicode_data/properties/Indic_Syllabic_Category/Syllable_Modifier/value.dump +15 -0
- data/resources/unicode_data/properties/Joining_Group/AIN/value.dump +8 -0
- data/resources/unicode_data/properties/Joining_Group/ALAPH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/ALEF/value.dump +8 -0
- data/resources/unicode_data/properties/Joining_Group/BEH/value.dump +8 -0
- data/resources/unicode_data/properties/Joining_Group/BETH/value.dump +4 -0
- data/resources/unicode_data/properties/Joining_Group/BURUSHASKI YEH BARREE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/DAL/value.dump +8 -0
- data/resources/unicode_data/properties/Joining_Group/DALATH RISH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/E/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/FARSI YEH/value.dump +6 -0
- data/resources/unicode_data/properties/Joining_Group/FE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/FEH/value.dump +6 -0
- data/resources/unicode_data/properties/Joining_Group/FINAL SEMKATH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/GAF/value.dump +8 -0
- data/resources/unicode_data/properties/Joining_Group/GAMAL/value.dump +4 -0
- data/resources/unicode_data/properties/Joining_Group/HAH/value.dump +10 -0
- data/resources/unicode_data/properties/Joining_Group/HE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/HEH GOAL/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/HEH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/HETH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/KAF/value.dump +6 -0
- data/resources/unicode_data/properties/Joining_Group/KAPH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/KHAPH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/KNOTTED HEH/value.dump +4 -0
- data/resources/unicode_data/properties/Joining_Group/LAM/value.dump +6 -0
- data/resources/unicode_data/properties/Joining_Group/LAMADH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ALEPH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN AYIN/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN BETH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN DALETH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN DHAMEDH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN FIVE/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN GIMEL/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN HETH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN HUNDRED/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN KAPH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN LAMEDH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN MEM/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN NUN/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ONE/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN PE/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN QOPH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN RESH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN SADHE/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN SAMEKH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TAW/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TEN/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TETH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN THAMEDH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN TWENTY/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN WAW/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN YODH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MANICHAEAN ZAYIN/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MEEM/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/MIM/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/NOON/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/NUN/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/NYA/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/No_Joining_Group/value.dump +0 -0
- data/resources/unicode_data/properties/Joining_Group/PE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/QAF/value.dump +6 -0
- data/resources/unicode_data/properties/Joining_Group/QAPH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/REH/value.dump +10 -0
- data/resources/unicode_data/properties/Joining_Group/REVERSED PE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/ROHINGYA YEH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/SAD/value.dump +6 -0
- data/resources/unicode_data/properties/Joining_Group/SADHE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/SEEN/value.dump +9 -0
- data/resources/unicode_data/properties/Joining_Group/SEMKATH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/SHIN/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/STRAIGHT WAW/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/SWASH KAF/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/SYRIAC WAW/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/TAH/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/TAW/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/TEH MARBUTA GOAL/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/TEH MARBUTA/value.dump +5 -0
- data/resources/unicode_data/properties/Joining_Group/TETH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/WAW/value.dump +9 -0
- data/resources/unicode_data/properties/Joining_Group/YEH BARREE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/YEH WITH TAIL/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/YEH/value.dump +9 -0
- data/resources/unicode_data/properties/Joining_Group/YUDH HE/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/YUDH/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/ZAIN/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Group/ZHAIN/value.dump +3 -0
- data/resources/unicode_data/properties/Joining_Type/Dual_Joining/value.dump +65 -0
- data/resources/unicode_data/properties/Joining_Type/Join_Causing/value.dump +8 -0
- data/resources/unicode_data/properties/Joining_Type/Left_Joining/value.dump +9 -0
- data/resources/unicode_data/properties/Joining_Type/Non_Joining/value.dump +0 -0
- data/resources/unicode_data/properties/Joining_Type/Right_Joining/value.dump +68 -0
- data/resources/unicode_data/properties/Script/Ahom/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Anatolian_Hieroglyphs/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Bassa_Vah/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Caucasian_Albanian/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Duployan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Elbasan/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Grantha/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Hatran/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Khojki/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Khudawadi/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Linear_A/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Mahajani/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Manichaean/value.dump +8 -0
- data/resources/unicode_data/properties/Script/Mende_Kikakui/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Modi/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Mro/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Multani/value.dump +8 -0
- data/resources/unicode_data/properties/Script/Nabataean/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Old_Hungarian/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Old_North_Arabian/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Old_Permic/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Pahawh_Hmong/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Palmyrene/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Pau_Cin_Hau/value.dump +3 -0
- data/resources/unicode_data/properties/Script/Psalter_Pahlavi/value.dump +5 -0
- data/resources/unicode_data/properties/Script/Siddham/value.dump +4 -0
- data/resources/unicode_data/properties/Script/SignWriting/value.dump +0 -0
- data/resources/unicode_data/properties/Script/Tirhuta/value.dump +4 -0
- data/resources/unicode_data/properties/Script/Warang_Citi/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Copt/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Dupl/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Glag/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Gran/value.dump +12 -0
- data/resources/unicode_data/properties/Script_Extensions/Kali/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Khoj/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Knda/value.dump +6 -0
- data/resources/unicode_data/properties/Script_Extensions/Limb/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Mahj/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Mani/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Mlym/value.dump +5 -0
- data/resources/unicode_data/properties/Script_Extensions/Modi/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Mult/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Perm/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Phlp/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Shrd/value.dump +8 -0
- data/resources/unicode_data/properties/Script_Extensions/Sind/value.dump +4 -0
- data/resources/unicode_data/properties/Script_Extensions/Sinh/value.dump +3 -0
- data/resources/unicode_data/properties/Script_Extensions/Taml/value.dump +9 -0
- data/resources/unicode_data/properties/Script_Extensions/Telu/value.dump +5 -0
- data/resources/unicode_data/properties/Script_Extensions/Tirh/value.dump +4 -0
- data/resources/unicode_data/property_aliases.yml +9 -3
- data/resources/unicode_data/property_value_aliases.yml +34 -0
- data/spec/collation/collator_spec.rb +53 -32
- data/spec/collation/trie_builder_spec.rb +2 -2
- data/spec/collation/trie_dumps_spec.rb +2 -2
- data/spec/collation/trie_loader_spec.rb +3 -3
- data/spec/collation/trie_with_fallback_spec.rb +1 -1
- data/spec/data_readers/additional_date_format_selector_spec.rb +1 -1
- data/spec/data_readers/timespan_data_reader_spec.rb +4 -4
- data/spec/formatters/list_formatter_spec.rb +1 -1
- data/spec/formatters/numbers/abbreviated/long_decimal_formatter_spec.rb +4 -4
- data/spec/formatters/numbers/abbreviated/short_decimal_formatter_spec.rb +0 -2
- data/spec/formatters/numbers/decimal_formatter_spec.rb +1 -1
- data/spec/formatters/numbers/rbnf/locales/af/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/ar/rbnf_test.yml +248 -14
- data/spec/formatters/numbers/rbnf/locales/be/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/bg/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/bn/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/ca/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/cs/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/cy/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/da/rbnf_test.yml +307 -307
- data/spec/formatters/numbers/rbnf/locales/de-CH/rbnf_test.yml +146 -146
- data/spec/formatters/numbers/rbnf/locales/de/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/el/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/en-150/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en-AU/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en-CA/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en-GB/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en-IE/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en-SG/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en-ZA/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/en/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/es-419/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/es-CO/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/es-MX/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/es-US/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/es/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/eu/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/fa/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/fi/rbnf_test.yml +5067 -387
- data/spec/formatters/numbers/rbnf/locales/fil/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/fr-BE/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/fr-CA/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/fr-CH/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/fr/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/ga/rbnf_test.yml +95 -95
- data/spec/formatters/numbers/rbnf/locales/gl/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/gu/rbnf_test.yml +1634 -1283
- data/spec/formatters/numbers/rbnf/locales/he/rbnf_test.yml +120 -120
- data/spec/formatters/numbers/rbnf/locales/hi/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/hr/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/hu/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/id/rbnf_test.yml +35 -35
- data/spec/formatters/numbers/rbnf/locales/is/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/it-CH/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/it/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/ja/rbnf_test.yml +7 -7
- data/spec/formatters/numbers/rbnf/locales/kn/rbnf_test.yml +1634 -1283
- data/spec/formatters/numbers/rbnf/locales/ko/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/lv/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/mr/rbnf_test.yml +1634 -1283
- data/spec/formatters/numbers/rbnf/locales/ms/rbnf_test.yml +35 -35
- data/spec/formatters/numbers/rbnf/locales/nb/rbnf_test.yml +950 -599
- data/spec/formatters/numbers/rbnf/locales/nl/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/pl/rbnf_test.yml +2152 -46
- data/spec/formatters/numbers/rbnf/locales/pt/rbnf_test.yml +28 -28
- data/spec/formatters/numbers/rbnf/locales/ro/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/ru/rbnf_test.yml +5265 -52
- data/spec/formatters/numbers/rbnf/locales/sk/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/sq/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/sr/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/sv/rbnf_test.yml +42 -42
- data/spec/formatters/numbers/rbnf/locales/ta/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/th/rbnf_test.yml +123 -123
- data/spec/formatters/numbers/rbnf/locales/tr/rbnf_test.yml +134 -134
- data/spec/formatters/numbers/rbnf/locales/uk/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/ur/rbnf_test.yml +488 -488
- data/spec/formatters/numbers/rbnf/locales/vi/rbnf_test.yml +14 -14
- data/spec/formatters/numbers/rbnf/locales/zh-Hant/rbnf_test.yml +7 -7
- data/spec/formatters/numbers/rbnf/locales/zh/rbnf_test.yml +7 -7
- data/spec/localized/localized_date_spec.rb +11 -2
- data/spec/localized/localized_datetime_spec.rb +1 -1
- data/spec/localized/localized_string_spec.rb +9 -1
- data/spec/localized/localized_symbol_spec.rb +4 -4
- data/spec/resources/loader_spec.rb +1 -1
- data/spec/segmentation/break_iterator_spec.rb +9 -9
- data/spec/shared/hunspell/base.hyph +4543 -0
- data/spec/shared/hunspell/base.pat +5536 -0
- data/spec/shared/hunspell/base.word +4543 -0
- data/spec/shared/hyphenator_spec.rb +103 -0
- data/spec/shared/likely_subtags_spec.rb +5 -0
- data/spec/shared/locale_spec.rb +34 -2
- data/spec/shared/postal_code_generator_spec.rb +8 -9
- data/spec/shared/postal_codes_spec.rb +9 -8
- data/spec/shared/unit_spec.rb +1 -1
- data/spec/transforms/rule_set_spec.rb +35 -0
- data/spec/transforms/test_data.yml +820 -0
- data/spec/transforms/transform_id_spec.rb +146 -0
- data/spec/transforms/transformer_spec.rb +113 -0
- data/spec/transforms/transliterator_spec.rb +35 -0
- data/spec/utils/script_detector_spec.rb +12 -3
- data/spec/{collation → utils}/trie_spec.rb +2 -2
- metadata +524 -5
@@ -6,4 +6,5 @@
|
|
6
6
|
:one: "n % 10 = 1 and n % 100 != 11 @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, … @decimal 1.0, 21.0, 31.0, 41.0, 51.0, 61.0, 71.0, 81.0, 101.0, 1001.0, …"
|
7
7
|
:other: " @decimal 0.1~0.9, 1.1~1.7, 10.1, 100.1, 1000.1, …"
|
8
8
|
:ordinal:
|
9
|
-
:
|
9
|
+
:few: "n % 10 = 2,3 and n % 100 != 12,13 @integer 2, 3, 22, 23, 32, 33, 42, 43, 52, 53, 62, 63, 72, 73, 82, 83, 102, 1002, …"
|
10
|
+
:other: " @integer 0, 1, 4~17, 100, 1000, 10000, 100000, 1000000, …"
|
@@ -2,19 +2,20 @@
|
|
2
2
|
:be:
|
3
3
|
:cardinal:
|
4
4
|
:rule: 'lambda { |num, runtime| n = runtime.n(num); i = runtime.i(num); v = runtime.v(num);
|
5
|
-
w = runtime.w(num); f = runtime.f(num); t = runtime.t(num); ((((
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
9))))) || ((((n % 100).floor == (n % 100)) && ((n % 100) >= 11) && ((n % 100)
|
10
|
-
<= 14)))) ? :many : (((n % 10 == 1) && (n % 100 != 11)) ? :one : :other))) }'
|
5
|
+
w = runtime.w(num); f = runtime.f(num); t = runtime.t(num); (((2..4).include?(n
|
6
|
+
% 10) && !(12..14).include?(n % 100)) ? :few : (((n % 10 == 0 || (5..9).include?(n
|
7
|
+
% 10)) || (11..14).include?(n % 100)) ? :many : ((n % 10 == 1 && n % 100 !=
|
8
|
+
11) ? :one : :other))) }'
|
11
9
|
:names:
|
12
10
|
- :few
|
13
11
|
- :many
|
14
12
|
- :one
|
15
13
|
- :other
|
16
14
|
:ordinal:
|
17
|
-
:rule: lambda { |num, runtime| n = runtime.n(num); i = runtime.i(num); v = runtime.v(num);
|
18
|
-
w = runtime.w(num); f = runtime.f(num); t = runtime.t(num);
|
15
|
+
:rule: 'lambda { |num, runtime| n = runtime.n(num); i = runtime.i(num); v = runtime.v(num);
|
16
|
+
w = runtime.w(num); f = runtime.f(num); t = runtime.t(num); ((((n % 10 == 2)
|
17
|
+
|| (n % 10 == 3)) && ((n % 100 != 12) && (n % 100 != 13))) ? :few : :other)
|
18
|
+
}'
|
19
19
|
:names:
|
20
|
+
- :few
|
20
21
|
- :other
|
@@ -1,6 +1,7 @@
|
|
1
1
|
---
|
2
2
|
:be:
|
3
3
|
:territories:
|
4
|
+
:ac: "Востраў Ушэсця"
|
4
5
|
:ad: Андора
|
5
6
|
:ae: "Аб’яднаныя Арабскія Эміраты"
|
6
7
|
:af: Афганістан
|
@@ -8,7 +9,6 @@
|
|
8
9
|
:ai: Ангілья
|
9
10
|
:al: Албанія
|
10
11
|
:am: Арменія
|
11
|
-
:an: "Нідэрландскія Антылы"
|
12
12
|
:ao: Ангола
|
13
13
|
:aq: Антарктыка
|
14
14
|
:ar: Аргенціна
|
@@ -31,10 +31,11 @@
|
|
31
31
|
:bm: "Бермудскія астравы"
|
32
32
|
:bn: Бруней
|
33
33
|
:bo: Балівія
|
34
|
+
:bq: "Карыбскія Нідэрланды"
|
34
35
|
:br: Бразілія
|
35
36
|
:bs: Багамы
|
36
37
|
:bt: Бутан
|
37
|
-
:bv: "Бувэ
|
38
|
+
:bv: "Востраў Бувэ"
|
38
39
|
:bw: Батсвана
|
39
40
|
:by: Беларусь
|
40
41
|
:bz: Беліз
|
@@ -44,25 +45,28 @@
|
|
44
45
|
:cf: "Цэнтральна-Афрыканская Рэспубліка"
|
45
46
|
:cg: "Рэспубліка Конга"
|
46
47
|
:ch: Швейцарыя
|
47
|
-
:ci:
|
48
|
+
:ci: "Бераг Слановай Косці"
|
48
49
|
:ck: "Астравы Кука"
|
49
50
|
:cl: Чылі
|
50
51
|
:cm: Камерун
|
51
52
|
:cn: Кітай
|
52
53
|
:co: Калумбія
|
54
|
+
:cp: "Востраў Кліпертон"
|
53
55
|
:cr: Коста-Рыка
|
54
56
|
:cu: Куба
|
55
57
|
:cv: Каба-Вердэ
|
56
58
|
:cw: "Востраў Кюрасаа"
|
57
|
-
:cx: "Востраў
|
59
|
+
:cx: "Востраў Раства"
|
58
60
|
:cy: Кіпр
|
59
61
|
:cz: Чэхія
|
60
62
|
:de: Германія
|
63
|
+
:dg: "Востраў Дыега-Гарсія"
|
61
64
|
:dj: Джыбуці
|
62
65
|
:dk: Данія
|
63
66
|
:dm: Дамініка
|
64
67
|
:do: "Дамініканская Рэспубліка"
|
65
68
|
:dz: Алжыр
|
69
|
+
:ea: "Сеўта і Мелілья"
|
66
70
|
:ec: Эквадор
|
67
71
|
:ee: Эстонія
|
68
72
|
:eg: Егіпет
|
@@ -70,15 +74,15 @@
|
|
70
74
|
:er: Эрытрэя
|
71
75
|
:es: Іспанія
|
72
76
|
:et: Эфіопія
|
73
|
-
:eu: "Еўрапейскі
|
77
|
+
:eu: "Еўрапейскі саюз"
|
74
78
|
:fi: Фінляндыя
|
75
79
|
:fj: Фіджы
|
76
|
-
:fk: "
|
80
|
+
:fk: "Фалклендскія (Мальвінскія) астравы"
|
77
81
|
:fm: Мікранезія
|
78
82
|
:fo: "Фарэрскія астравы"
|
79
83
|
:fr: Францыя
|
80
84
|
:ga: Габон
|
81
|
-
:gb:
|
85
|
+
:gb: Брытанія
|
82
86
|
:gd: Грэнада
|
83
87
|
:ge: Грузія
|
84
88
|
:gf: "Французская Гвіяна"
|
@@ -97,11 +101,12 @@
|
|
97
101
|
:gw: Гвінея-Бісау
|
98
102
|
:gy: Гаяна
|
99
103
|
:hk: Ганконг
|
100
|
-
:hm: "Востраў Херд і
|
104
|
+
:hm: "Востраў Херд і астравы Макдональд"
|
101
105
|
:hn: Гандурас
|
102
106
|
:hr: Харватыя
|
103
107
|
:ht: Гаіці
|
104
108
|
:hu: Венгрыя
|
109
|
+
:ic: "Канарскія астравы"
|
105
110
|
:id: Інданезія
|
106
111
|
:ie: Ірландыя
|
107
112
|
:il: Ізраіль
|
@@ -142,11 +147,12 @@
|
|
142
147
|
:mc: Манака
|
143
148
|
:md: Малдова
|
144
149
|
:me: Чарнагорыя
|
150
|
+
:mf: Сен-Мартэн
|
145
151
|
:mg: Мадагаскар
|
146
152
|
:mh: "Маршалавы Астравы"
|
147
|
-
:mk: "
|
153
|
+
:mk: "Македонія (БЮРМ)"
|
148
154
|
:ml: Малі
|
149
|
-
:mm: М’янма
|
155
|
+
:mm: "М’янма (Бірма)"
|
150
156
|
:mn: Манголія
|
151
157
|
:mo: Макаа
|
152
158
|
:mp: "Паўночныя Марыянскія астравы"
|
@@ -184,7 +190,7 @@
|
|
184
190
|
:pm: "Сен-П’ер і Мікелон"
|
185
191
|
:pn: "Астравы Піткэрн"
|
186
192
|
:pr: Пуэрта-Рыка
|
187
|
-
:ps:
|
193
|
+
:ps: Палесціна
|
188
194
|
:pt: Партугалія
|
189
195
|
:pw: Палау
|
190
196
|
:py: Парагвай
|
@@ -201,7 +207,7 @@
|
|
201
207
|
:sd: Судан
|
202
208
|
:se: Швецыя
|
203
209
|
:sg: Сінгапур
|
204
|
-
:sh: "Святой
|
210
|
+
:sh: "Востраў Святой Алены"
|
205
211
|
:si: Славенія
|
206
212
|
:sj: "Свальбард (Паўночна-Усходняя Зямля) і Ян-Маен"
|
207
213
|
:sk: Славакія
|
@@ -213,8 +219,10 @@
|
|
213
219
|
:ss: "Паўднёвы Судан"
|
214
220
|
:st: "Сан-Тамэ і Прынсіпі"
|
215
221
|
:sv: Сальвадор
|
222
|
+
:sx: Сінт-Мартэн
|
216
223
|
:sy: Сірыя
|
217
224
|
:sz: Свазіленд
|
225
|
+
:ta: Трыстан-да-Кунья
|
218
226
|
:tc: "Цёркс і Кайкас"
|
219
227
|
:td: Чад
|
220
228
|
:tf: "Французскія Паўднёвыя тэрыторыі"
|
@@ -233,7 +241,8 @@
|
|
233
241
|
:tz: Танзанія
|
234
242
|
:ua: Украіна
|
235
243
|
:ug: Уганда
|
236
|
-
:
|
244
|
+
:um: "Знешнія малыя астравы ЗША"
|
245
|
+
:us: ЗША
|
237
246
|
:uy: Уругвай
|
238
247
|
:uz: Узбекістан
|
239
248
|
:va: Ватыкан
|
@@ -245,6 +254,7 @@
|
|
245
254
|
:vu: Вануату
|
246
255
|
:wf: "Уоліс і Футуна"
|
247
256
|
:ws: Самоа
|
257
|
+
:xk: Косава
|
248
258
|
:ye: Емен
|
249
259
|
:yt: "Востраў Маёта"
|
250
260
|
:za: "Паўднёва-Афрыканская Рэспубліка"
|
@@ -2,21 +2,186 @@
|
|
2
2
|
:be:
|
3
3
|
:units:
|
4
4
|
:durationUnit:
|
5
|
-
:hm:
|
6
|
-
:hms:
|
7
|
-
:ms:
|
5
|
+
:hm: hh.mm
|
6
|
+
:hms: hh.mm.ss
|
7
|
+
:ms: mm.ss
|
8
8
|
:unitLength:
|
9
9
|
:long:
|
10
|
+
:acceleration-g-force:
|
11
|
+
:few: "{0} g"
|
12
|
+
:many: "{0} g"
|
13
|
+
:one: "{0} g"
|
14
|
+
:other: "{0} g"
|
15
|
+
:acceleration-meter-per-second-squared:
|
16
|
+
:few: "{0} метры ў секунду ў квадраце"
|
17
|
+
:many: "{0} метраў у секунду ў квадраце"
|
18
|
+
:one: "{0} метр у секунду ў квадраце"
|
19
|
+
:other: "{0} метра ў секунду ў квадраце"
|
20
|
+
:angle-arc-minute:
|
21
|
+
:few: "{0} вуглавыя хвіліны"
|
22
|
+
:many: "{0} вуглавых хвілін"
|
23
|
+
:one: "{0} вуглавая хвіліна"
|
24
|
+
:other: "{0} вуглавой хвіліны"
|
25
|
+
:angle-arc-second:
|
26
|
+
:few: "{0} вуглавыя секунды"
|
27
|
+
:many: "{0} вуглавых секунд"
|
28
|
+
:one: "{0} вуглавая секунда"
|
29
|
+
:other: "{0} вуглавой секунды"
|
30
|
+
:angle-degree:
|
31
|
+
:few: "{0} градусы"
|
32
|
+
:many: "{0} градусаў"
|
33
|
+
:one: "{0} градус"
|
34
|
+
:other: "{0} градуса"
|
35
|
+
:angle-radian:
|
36
|
+
:few: "{0} радыяны"
|
37
|
+
:many: "{0} радыян"
|
38
|
+
:one: "{0} радыян"
|
39
|
+
:other: "{0} радыяна"
|
40
|
+
:angle-revolution:
|
41
|
+
:few: "{0} абароты"
|
42
|
+
:many: "{0} абаротаў"
|
43
|
+
:one: "{0} абарот"
|
44
|
+
:other: "{0} абарота"
|
45
|
+
:area-acre:
|
46
|
+
:few: "{0} акры"
|
47
|
+
:many: "{0} акраў"
|
48
|
+
:one: "{0} акр"
|
49
|
+
:other: "{0} акра"
|
50
|
+
:area-hectare:
|
51
|
+
:few: "{0} гектары"
|
52
|
+
:many: "{0} гектараў"
|
53
|
+
:one: "{0} гектар"
|
54
|
+
:other: "{0} гектара"
|
55
|
+
:area-square-centimeter:
|
56
|
+
:few: "{0} квадратныя сантыметры"
|
57
|
+
:many: "{0} квадратных сантыметраў"
|
58
|
+
:one: "{0} квадратны сантыметр"
|
59
|
+
:other: "{0} квадратнага сантыметра"
|
60
|
+
:area-square-foot:
|
61
|
+
:few: "{0} квадратныя футы"
|
62
|
+
:many: "{0} квадратных футаў"
|
63
|
+
:one: "{0} квадратны фут"
|
64
|
+
:other: "{0} квадратнага фута"
|
65
|
+
:area-square-inch:
|
66
|
+
:few: "{0} квадратныя цалі"
|
67
|
+
:many: "{0} квадратных цаляў"
|
68
|
+
:one: "{0} квадратная цаля"
|
69
|
+
:other: "{0} квадратнай цалі"
|
70
|
+
:area-square-kilometer:
|
71
|
+
:few: "{0} квадратныя кіламетры"
|
72
|
+
:many: "{0} квадратных кіламетраў"
|
73
|
+
:one: "{0} квадратны кіламетр"
|
74
|
+
:other: "{0} квадратнага кіламетра"
|
75
|
+
:area-square-meter:
|
76
|
+
:few: "{0} квадратныя метры"
|
77
|
+
:many: "{0} квадратных метраў"
|
78
|
+
:one: "{0} квадратны метр"
|
79
|
+
:other: "{0} квадратнага метра"
|
80
|
+
:area-square-mile:
|
81
|
+
:few: "{0} квадратныя мілі"
|
82
|
+
:many: "{0} квадратных міль"
|
83
|
+
:one: "{0} квадратная міля"
|
84
|
+
:other: "{0} квадратнай мілі"
|
85
|
+
:area-square-yard:
|
86
|
+
:few: "{0} квадратныя ярды"
|
87
|
+
:many: "{0} квадратных ярдаў"
|
88
|
+
:one: "{0} квадратны ярд"
|
89
|
+
:other: "{0} квадратнага ярда"
|
90
|
+
:concentr-karat:
|
91
|
+
:few: "{0} караты золата"
|
92
|
+
:many: "{0} карат золата"
|
93
|
+
:one: "{0} карат золата"
|
94
|
+
:other: "{0} карата золата"
|
95
|
+
:consumption-liter-per-100kilometers:
|
96
|
+
:few: "{0} літры на 100 кіламетраў"
|
97
|
+
:many: "{0} літраў на 100 кіламетраў"
|
98
|
+
:one: "{0} літр на 100 кіламетраў"
|
99
|
+
:other: "{0} літра на 100 кіламетраў"
|
100
|
+
:consumption-liter-per-kilometer:
|
101
|
+
:few: "{0} літры на кіламетр"
|
102
|
+
:many: "{0} літраў на кіламетр"
|
103
|
+
:one: "{0} літр на кіламетр"
|
104
|
+
:other: "{0} літра на кіламетр"
|
105
|
+
:consumption-mile-per-gallon:
|
106
|
+
:few: "{0} мілі на галон"
|
107
|
+
:many: "{0} міль на галон"
|
108
|
+
:one: "{0} міля на галон"
|
109
|
+
:other: "{0} мілі на галон"
|
110
|
+
:digital-bit:
|
111
|
+
:few: "{0} біты"
|
112
|
+
:many: "{0} біт"
|
113
|
+
:one: "{0} біт"
|
114
|
+
:other: "{0} біта"
|
115
|
+
:digital-byte:
|
116
|
+
:few: "{0} байты"
|
117
|
+
:many: "{0} байт"
|
118
|
+
:one: "{0} байт"
|
119
|
+
:other: "{0} байта"
|
120
|
+
:digital-gigabit:
|
121
|
+
:few: "{0} гігабіты"
|
122
|
+
:many: "{0} гігабіт"
|
123
|
+
:one: "{0} гігабіт"
|
124
|
+
:other: "{0} гігабіта"
|
125
|
+
:digital-gigabyte:
|
126
|
+
:few: "{0} гігабайты"
|
127
|
+
:many: "{0} гігабайт"
|
128
|
+
:one: "{0} гігабайт"
|
129
|
+
:other: "{0} гігабайта"
|
130
|
+
:digital-kilobit:
|
131
|
+
:few: "{0} кілабіты"
|
132
|
+
:many: "{0} кілабіт"
|
133
|
+
:one: "{0} кілабіт"
|
134
|
+
:other: "{0} кілабіта"
|
135
|
+
:digital-kilobyte:
|
136
|
+
:few: "{0} кілабайты"
|
137
|
+
:many: "{0} кілабайт"
|
138
|
+
:one: "{0} кілабайт"
|
139
|
+
:other: "{0} кілабайта"
|
140
|
+
:digital-megabit:
|
141
|
+
:few: "{0} мегабіты"
|
142
|
+
:many: "{0} мегабіт"
|
143
|
+
:one: "{0} мегабіт"
|
144
|
+
:other: "{0} мегабіта"
|
145
|
+
:digital-megabyte:
|
146
|
+
:few: "{0} мегабайты"
|
147
|
+
:many: "{0} мегабайт"
|
148
|
+
:one: "{0} мегабайт"
|
149
|
+
:other: "{0} мегабайта"
|
150
|
+
:digital-terabit:
|
151
|
+
:few: "{0} тэрабіты"
|
152
|
+
:many: "{0} тэрабіт"
|
153
|
+
:one: "{0} тэрабіт"
|
154
|
+
:other: "{0} тэрабіт"
|
155
|
+
:digital-terabyte:
|
156
|
+
:few: "{0} тэрабайты"
|
157
|
+
:many: "{0} тэрабайт"
|
158
|
+
:one: "{0} тэрабайт"
|
159
|
+
:other: "{0} тэрабайта"
|
160
|
+
:duration-century:
|
161
|
+
:few: "{0} стагоддзі"
|
162
|
+
:many: "{0} стагоддзяў"
|
163
|
+
:one: "{0} стагоддзе"
|
164
|
+
:other: "{0} стагоддзя"
|
10
165
|
:duration-day:
|
11
|
-
:few: "{0}
|
12
|
-
:many: "{0}
|
13
|
-
:one: "{0}
|
14
|
-
:other: "{0}
|
166
|
+
:few: "{0} сутак"
|
167
|
+
:many: "{0} сутак"
|
168
|
+
:one: "{0} суткі"
|
169
|
+
:other: "{0} сутак"
|
15
170
|
:duration-hour:
|
16
171
|
:few: "{0} гадзіны"
|
17
172
|
:many: "{0} гадзін"
|
18
173
|
:one: "{0} гадзіна"
|
19
174
|
:other: "{0} гадзіны"
|
175
|
+
:duration-microsecond:
|
176
|
+
:few: "{0} мікрасекунды"
|
177
|
+
:many: "{0} мікрасекунд"
|
178
|
+
:one: "{0} мікрасекунда"
|
179
|
+
:other: "{0} мікрасекунды"
|
180
|
+
:duration-millisecond:
|
181
|
+
:few: "{0} мілісекунды"
|
182
|
+
:many: "{0} мілісекунд"
|
183
|
+
:one: "{0} мілісекунда"
|
184
|
+
:other: "{0} мілісекунды"
|
20
185
|
:duration-minute:
|
21
186
|
:few: "{0} хвіліны"
|
22
187
|
:many: "{0} хвілін"
|
@@ -27,11 +192,16 @@
|
|
27
192
|
:many: "{0} месяцаў"
|
28
193
|
:one: "{0} месяц"
|
29
194
|
:other: "{0} месяца"
|
195
|
+
:duration-nanosecond:
|
196
|
+
:few: "{0} нанасекунды"
|
197
|
+
:many: "{0} нанасекунд"
|
198
|
+
:one: "{0} нанасекунда"
|
199
|
+
:other: "{0} нанасекунды"
|
30
200
|
:duration-second:
|
31
|
-
:few: "{0}
|
32
|
-
:many: "{0}
|
33
|
-
:one: "{0}
|
34
|
-
:other: "{0}
|
201
|
+
:few: "{0} секунды"
|
202
|
+
:many: "{0} секунд"
|
203
|
+
:one: "{0} секунда"
|
204
|
+
:other: "{0} секунды"
|
35
205
|
:duration-week:
|
36
206
|
:few: "{0} тыдні"
|
37
207
|
:many: "{0} тыдняў"
|
@@ -41,248 +211,1163 @@
|
|
41
211
|
:few: "{0} гады"
|
42
212
|
:many: "{0} гадоў"
|
43
213
|
:one: "{0} год"
|
44
|
-
:other: "{0}
|
45
|
-
|
214
|
+
:other: "{0} года"
|
215
|
+
:electric-ampere:
|
216
|
+
:few: "{0} амперы"
|
217
|
+
:many: "{0} ампер"
|
218
|
+
:one: "{0} ампер"
|
219
|
+
:other: "{0} ампера"
|
220
|
+
:electric-milliampere:
|
221
|
+
:few: "{0} міліамперы"
|
222
|
+
:many: "{0} міліампер"
|
223
|
+
:one: "{0} міліампер"
|
224
|
+
:other: "{0} міліампера"
|
225
|
+
:electric-ohm:
|
226
|
+
:few: "{0} Ом"
|
227
|
+
:many: "{0} Ом"
|
228
|
+
:one: "{0} Ом"
|
229
|
+
:other: "{0} Ом"
|
230
|
+
:electric-volt:
|
231
|
+
:few: "{0} вольты"
|
232
|
+
:many: "{0} вольт"
|
233
|
+
:one: "{0} вольт"
|
234
|
+
:other: "{0} вольта"
|
235
|
+
:energy-calorie:
|
236
|
+
:few: "{0} калорыі"
|
237
|
+
:many: "{0} калорый"
|
238
|
+
:one: "{0} калорыя"
|
239
|
+
:other: "{0} калорыі"
|
240
|
+
:energy-foodcalorie:
|
241
|
+
:few: "{0} калорыі"
|
242
|
+
:many: "{0} калорый"
|
243
|
+
:one: "{0} калорыя"
|
244
|
+
:other: "{0} калорыі"
|
245
|
+
:energy-joule:
|
246
|
+
:few: "{0} джоўлі"
|
247
|
+
:many: "{0} джоўляў"
|
248
|
+
:one: "{0} джоўль"
|
249
|
+
:other: "{0} джоўля"
|
250
|
+
:energy-kilocalorie:
|
251
|
+
:few: "{0} кілакалорыі"
|
252
|
+
:many: "{0} кілакалорый"
|
253
|
+
:one: "{0} кілакалорыя"
|
254
|
+
:other: "{0} кілакалорыі"
|
255
|
+
:energy-kilojoule:
|
256
|
+
:few: "{0} кіладжоўлі"
|
257
|
+
:many: "{0} кіладжоўляў"
|
258
|
+
:one: "{0} кіладжоўль"
|
259
|
+
:other: "{0} кіладжоўля"
|
260
|
+
:energy-kilowatt-hour:
|
261
|
+
:few: "{0} кілават-гадзіны"
|
262
|
+
:many: "{0} кілават-гадзін"
|
263
|
+
:one: "{0} кілават-гадзіна"
|
264
|
+
:other: "{0} кілават-гадзіны"
|
265
|
+
:frequency-gigahertz:
|
266
|
+
:few: "{0} гігагерцы"
|
267
|
+
:many: "{0} гігагерц"
|
268
|
+
:one: "{0} гігагерц"
|
269
|
+
:other: "{0} гігагерца"
|
270
|
+
:frequency-hertz:
|
271
|
+
:few: "{0} герцы"
|
272
|
+
:many: "{0} герц"
|
273
|
+
:one: "{0} герц"
|
274
|
+
:other: "{0} герца"
|
275
|
+
:frequency-kilohertz:
|
276
|
+
:few: "{0} кілагерцы"
|
277
|
+
:many: "{0} кілагерц"
|
278
|
+
:one: "{0} кілагерц"
|
279
|
+
:other: "{0} кілагерца"
|
280
|
+
:frequency-megahertz:
|
281
|
+
:few: "{0} мегагерцы"
|
282
|
+
:many: "{0} мегагерц"
|
283
|
+
:one: "{0} мегагерц"
|
284
|
+
:other: "{0} мегагерца"
|
285
|
+
:length-astronomical-unit:
|
286
|
+
:few: "{0} астранамічныя адзінкі"
|
287
|
+
:many: "{0} астранамічных адзінак"
|
288
|
+
:one: "{0} астранамічная адзінка"
|
289
|
+
:other: "{0} астранамічнай адзінкі"
|
290
|
+
:length-centimeter:
|
291
|
+
:few: "{0} сантыметры"
|
292
|
+
:many: "{0} сантыметраў"
|
293
|
+
:one: "{0} сантыметр"
|
294
|
+
:other: "{0} сантыметра"
|
295
|
+
:length-decimeter:
|
296
|
+
:few: "{0} дэцыметры"
|
297
|
+
:many: "{0} дэцыметраў"
|
298
|
+
:one: "{0} дэцыметр"
|
299
|
+
:other: "{0} дэцыметра"
|
300
|
+
:length-foot:
|
301
|
+
:few: "{0} футы"
|
302
|
+
:many: "{0} футаў"
|
303
|
+
:one: "{0} фут"
|
304
|
+
:other: "{0} фута"
|
305
|
+
:length-inch:
|
306
|
+
:few: "{0} цалі"
|
307
|
+
:many: "{0} цаляў"
|
308
|
+
:one: "{0} цаля"
|
309
|
+
:other: "{0} цалі"
|
310
|
+
:length-kilometer:
|
311
|
+
:few: "{0} кіламетры"
|
312
|
+
:many: "{0} кіламетраў"
|
313
|
+
:one: "{0} кіламетр"
|
314
|
+
:other: "{0} кіламетра"
|
315
|
+
:length-light-year:
|
316
|
+
:few: "{0} светлавыя гады"
|
317
|
+
:many: "{0} светлавых гадоў"
|
318
|
+
:one: "{0} светлавы год"
|
319
|
+
:other: "{0} светлавога года"
|
320
|
+
:length-meter:
|
321
|
+
:few: "{0} метры"
|
322
|
+
:many: "{0} метраў"
|
323
|
+
:one: "{0} метр"
|
324
|
+
:other: "{0} метра"
|
325
|
+
:length-micrometer:
|
326
|
+
:few: "{0} мікраметры"
|
327
|
+
:many: "{0} мікраметраў"
|
328
|
+
:one: "{0} мікраметр"
|
329
|
+
:other: "{0} мікраметра"
|
330
|
+
:length-mile:
|
331
|
+
:few: "{0} мілі"
|
332
|
+
:many: "{0} міль"
|
333
|
+
:one: "{0} міля"
|
334
|
+
:other: "{0} мілі"
|
335
|
+
:length-mile-scandinavian:
|
336
|
+
:few: "{0} скандынаўскія мілі"
|
337
|
+
:many: "{0} скандынаўскіх міль"
|
338
|
+
:one: "{0} скандынаўская міля"
|
339
|
+
:other: "{0} скандынаўскай мілі"
|
340
|
+
:length-millimeter:
|
341
|
+
:few: "{0} міліметры"
|
342
|
+
:many: "{0} міліметраў"
|
343
|
+
:one: "{0} міліметр"
|
344
|
+
:other: "{0} міліметра"
|
345
|
+
:length-nanometer:
|
346
|
+
:few: "{0} нанаметры"
|
347
|
+
:many: "{0} нанаметраў"
|
348
|
+
:one: "{0} нанаметр"
|
349
|
+
:other: "{0} нанаметра"
|
350
|
+
:length-nautical-mile:
|
351
|
+
:few: "{0} марскія мілі"
|
352
|
+
:many: "{0} марскіх міль"
|
353
|
+
:one: "{0} марская міля"
|
354
|
+
:other: "{0} марской мілі"
|
355
|
+
:length-parsec:
|
356
|
+
:few: "{0} парсекі"
|
357
|
+
:many: "{0} парсекаў"
|
358
|
+
:one: "{0} парсек"
|
359
|
+
:other: "{0} парсека"
|
360
|
+
:length-picometer:
|
361
|
+
:few: "{0} пікаметры"
|
362
|
+
:many: "{0} пікаметраў"
|
363
|
+
:one: "{0} пікаметр"
|
364
|
+
:other: "{0} пікаметра"
|
365
|
+
:length-yard:
|
366
|
+
:few: "{0} ярды"
|
367
|
+
:many: "{0} ярдаў"
|
368
|
+
:one: "{0} ярд"
|
369
|
+
:other: "{0} ярда"
|
370
|
+
:light-lux:
|
371
|
+
:few: "{0} люксы"
|
372
|
+
:many: "{0} люксаў"
|
373
|
+
:one: "{0} люкс"
|
374
|
+
:other: "{0} люкса"
|
375
|
+
:mass-carat:
|
376
|
+
:few: "{0} караты"
|
377
|
+
:many: "{0} каратаў"
|
378
|
+
:one: "{0} карат"
|
379
|
+
:other: "{0} карата"
|
380
|
+
:mass-gram:
|
381
|
+
:few: "{0} грамы"
|
382
|
+
:many: "{0} грамаў"
|
383
|
+
:one: "{0} грам"
|
384
|
+
:other: "{0} грама"
|
385
|
+
:mass-kilogram:
|
386
|
+
:few: "{0} кілаграмы"
|
387
|
+
:many: "{0} кілаграм"
|
388
|
+
:one: "{0} кілаграмаў"
|
389
|
+
:other: "{0} кілаграма"
|
390
|
+
:mass-metric-ton:
|
391
|
+
:few: "{0} метрычныя тоны"
|
392
|
+
:many: "{0} метрычных тон"
|
393
|
+
:one: "{0} метрычная тона"
|
394
|
+
:other: "{0} метрычнай тоны"
|
395
|
+
:mass-microgram:
|
396
|
+
:few: "{0} мікраграмы"
|
397
|
+
:many: "{0} мікраграмаў"
|
398
|
+
:one: "{0} мікраграм"
|
399
|
+
:other: "{0} мікраграма"
|
400
|
+
:mass-milligram:
|
401
|
+
:few: "{0} міліграмы"
|
402
|
+
:many: "{0} міліграмаў"
|
403
|
+
:one: "{0} міліграм"
|
404
|
+
:other: "{0} міліграма"
|
405
|
+
:mass-ounce:
|
406
|
+
:few: "{0} унцыі"
|
407
|
+
:many: "{0} унцый"
|
408
|
+
:one: "{0} унцыя"
|
409
|
+
:other: "{0} унцыі"
|
410
|
+
:mass-ounce-troy:
|
411
|
+
:few: "{0} тройскія ўнцыі"
|
412
|
+
:many: "{0} тройскіх унцый"
|
413
|
+
:one: "{0} тройская ўнцыя"
|
414
|
+
:other: "{0} тройскай унцыі"
|
415
|
+
:mass-pound:
|
416
|
+
:few: "{0} фунты"
|
417
|
+
:many: "{0} фунтаў"
|
418
|
+
:one: "{0} фунт"
|
419
|
+
:other: "{0} фунта"
|
420
|
+
:mass-ton:
|
421
|
+
:few: "{0} тоны"
|
422
|
+
:many: "{0} тон"
|
423
|
+
:one: "{0} тона"
|
424
|
+
:other: "{0} тоны"
|
425
|
+
:power-gigawatt:
|
426
|
+
:few: "{0} гігаваты"
|
427
|
+
:many: "{0} гігават"
|
428
|
+
:one: "{0} гігават"
|
429
|
+
:other: "{0} гігавата"
|
430
|
+
:power-horsepower:
|
431
|
+
:few: "{0} конскія сілы"
|
432
|
+
:many: "{0} конскіх сіл"
|
433
|
+
:one: "{0} конская сіла"
|
434
|
+
:other: "{0} конскай сілы"
|
435
|
+
:power-kilowatt:
|
436
|
+
:few: "{0} кілаваты"
|
437
|
+
:many: "{0} кілават"
|
438
|
+
:one: "{0} кілават"
|
439
|
+
:other: "{0} кілавата"
|
440
|
+
:power-megawatt:
|
441
|
+
:few: "{0} мегаваты"
|
442
|
+
:many: "{0} мегават"
|
443
|
+
:one: "{0} мегават"
|
444
|
+
:other: "{0} мегавата"
|
445
|
+
:power-milliwatt:
|
446
|
+
:few: "{0} міліваты"
|
447
|
+
:many: "{0} міліват"
|
448
|
+
:one: "{0} міліват"
|
449
|
+
:other: "{0} мілівата"
|
450
|
+
:power-watt:
|
451
|
+
:few: "{0} ваты"
|
452
|
+
:many: "{0} ват"
|
453
|
+
:one: "{0} ват"
|
454
|
+
:other: "{0} вата"
|
455
|
+
:pressure-hectopascal:
|
456
|
+
:few: "{0} гектапаскалі"
|
457
|
+
:many: "{0} гектапаскаль"
|
458
|
+
:one: "{0} гектапаскаль"
|
459
|
+
:other: "{0} гектапаскаля"
|
460
|
+
:pressure-inch-hg:
|
461
|
+
:few: "{0} цалі ртутнага слупа"
|
462
|
+
:many: "{0} цаляў ртутнага слупа"
|
463
|
+
:one: "{0} цаля ртутнага слупа"
|
464
|
+
:other: "{0} цалі ртутнага слупа"
|
465
|
+
:pressure-millibar:
|
466
|
+
:few: "{0} мілібары"
|
467
|
+
:many: "{0} мілібар"
|
468
|
+
:one: "{0} мілібар"
|
469
|
+
:other: "{0} мілібара"
|
470
|
+
:pressure-millimeter-of-mercury:
|
471
|
+
:few: "{0} міліметры ртутнага слупа"
|
472
|
+
:many: "{0} міліметраў ртутнага слупа"
|
473
|
+
:one: "{0} міліметр ртутнага слупа"
|
474
|
+
:other: "{0} міліметра ртутнага слупа"
|
475
|
+
:pressure-pound-per-square-inch:
|
476
|
+
:few: "{0} фунты на квадратную цалю"
|
477
|
+
:many: "{0} фунтаў на квадратную цалю"
|
478
|
+
:one: "{0} фунт на квадратную цалю"
|
479
|
+
:other: "{0} фунта на квадратную цалю"
|
480
|
+
:speed-kilometer-per-hour:
|
481
|
+
:few: "{0} кіламетры ў гадзіну"
|
482
|
+
:many: "{0} кіламетраў у гадзіну"
|
483
|
+
:one: "{0} кіламетр у гадзіну"
|
484
|
+
:other: "{0} кіламетра ў гадзіну"
|
485
|
+
:speed-knot:
|
486
|
+
:few: "{0} вузлы"
|
487
|
+
:many: "{0} вузлоў"
|
488
|
+
:one: "{0} вузел"
|
489
|
+
:other: "{0} вузла"
|
490
|
+
:speed-meter-per-second:
|
491
|
+
:few: "{0} метры ў секунду"
|
492
|
+
:many: "{0} метраў у секунду"
|
493
|
+
:one: "{0} метр у секунду"
|
494
|
+
:other: "{0} метра ў секунду"
|
495
|
+
:speed-mile-per-hour:
|
496
|
+
:few: "{0} мілі ў гадзіну"
|
497
|
+
:many: "{0} міль у гадзіну"
|
498
|
+
:one: "{0} міля ў гадзіну"
|
499
|
+
:other: "{0} мілі ў гадзіну"
|
500
|
+
:temperature-celsius:
|
501
|
+
:few: "{0} градусы Цэльсія"
|
502
|
+
:many: "{0} градусаў Цэльсія"
|
503
|
+
:one: "{0} градус Цэльсія"
|
504
|
+
:other: "{0} градуса Цэльсія"
|
505
|
+
:temperature-fahrenheit:
|
506
|
+
:few: "{0} градусы Фарэнгейта"
|
507
|
+
:many: "{0} градусаў Фарэнгейта"
|
508
|
+
:one: "{0} градус Фарэнгейта"
|
509
|
+
:other: "{0} градуса Фарэнгейта"
|
510
|
+
:temperature-generic:
|
511
|
+
:few: "{0}°"
|
512
|
+
:many: "{0}°"
|
513
|
+
:one: "{0}°"
|
514
|
+
:other: "{0}°"
|
515
|
+
:temperature-kelvin:
|
516
|
+
:few: "{0} кельвіны"
|
517
|
+
:many: "{0} кельвінаў"
|
518
|
+
:one: "{0} кельвін"
|
519
|
+
:other: "{0} кельвіна"
|
520
|
+
:volume-acre-foot:
|
521
|
+
:few: "{0} акр-футы"
|
522
|
+
:many: "{0} акр-футаў"
|
523
|
+
:one: "{0} акр-фут"
|
524
|
+
:other: "{0} акр-фута"
|
525
|
+
:volume-centiliter:
|
526
|
+
:few: "{0} сантылітры"
|
527
|
+
:many: "{0} сантылітраў"
|
528
|
+
:one: "{0} сантылітр"
|
529
|
+
:other: "{0} сантылітра"
|
530
|
+
:volume-cubic-centimeter:
|
531
|
+
:few: "{0} кубічныя сантыметры"
|
532
|
+
:many: "{0} кубічных сантыметраў"
|
533
|
+
:one: "{0} кубічны сантыметр"
|
534
|
+
:other: "{0} кубічнага сантыметра"
|
535
|
+
:volume-cubic-foot:
|
536
|
+
:few: "{0} кубічныя футы"
|
537
|
+
:many: "{0} кубічных футаў"
|
538
|
+
:one: "{0} кубічны фут"
|
539
|
+
:other: "{0} кубічнага фута"
|
540
|
+
:volume-cubic-inch:
|
541
|
+
:few: "{0} кубічныя цалі"
|
542
|
+
:many: "{0} кубічных цаляў"
|
543
|
+
:one: "{0} кубічная цаля"
|
544
|
+
:other: "{0} кубічнай цалі"
|
545
|
+
:volume-cubic-kilometer:
|
546
|
+
:few: "{0} кубічныя кіламетры"
|
547
|
+
:many: "{0} кубічных кіламетраў"
|
548
|
+
:one: "{0} кубічны кіламетр"
|
549
|
+
:other: "{0} кубічнага кіламетра"
|
550
|
+
:volume-cubic-meter:
|
551
|
+
:few: "{0} кубічныя метры"
|
552
|
+
:many: "{0} кубічных метраў"
|
553
|
+
:one: "{0} кубічны метр"
|
554
|
+
:other: "{0} кубічнага метра"
|
555
|
+
:volume-cubic-mile:
|
556
|
+
:few: "{0} кубічныя мілі"
|
557
|
+
:many: "{0} кубічных міль"
|
558
|
+
:one: "{0} кубічная міля"
|
559
|
+
:other: "{0} кубічнай мілі"
|
560
|
+
:volume-cubic-yard:
|
561
|
+
:few: "{0} кубічныя ярды"
|
562
|
+
:many: "{0} кубічных ярдаў"
|
563
|
+
:one: "{0} кубічны ярд"
|
564
|
+
:other: "{0} кубічнага ярда"
|
565
|
+
:volume-cup:
|
566
|
+
:few: "{0} кубкі"
|
567
|
+
:many: "{0} кубкаў"
|
568
|
+
:one: "{0} кубак"
|
569
|
+
:other: "{0} кубка"
|
570
|
+
:volume-cup-metric:
|
571
|
+
:few: "{0} метрычныя кубкі"
|
572
|
+
:many: "{0} метрычных кубкаў"
|
573
|
+
:one: "{0} метрычны кубак"
|
574
|
+
:other: "{0} метрычнага кубка"
|
575
|
+
:volume-deciliter:
|
576
|
+
:few: "{0} дэцылітры"
|
577
|
+
:many: "{0} дэцылітраў"
|
578
|
+
:one: "{0} дэцылітр"
|
579
|
+
:other: "{0} дэцылітра"
|
580
|
+
:volume-fluid-ounce:
|
581
|
+
:few: "{0} вадкія ўнцыі"
|
582
|
+
:many: "{0} вадкіх унцый"
|
583
|
+
:one: "{0} вадкая ўнцыя"
|
584
|
+
:other: "{0} вадкай унцыі"
|
585
|
+
:volume-gallon:
|
586
|
+
:few: "{0} галоны"
|
587
|
+
:many: "{0} галонаў"
|
588
|
+
:one: "{0} галон"
|
589
|
+
:other: "{0} галона"
|
590
|
+
:volume-hectoliter:
|
591
|
+
:few: "{0} гекталітры"
|
592
|
+
:many: "{0} гекталітраў"
|
593
|
+
:one: "{0} гекталітр"
|
594
|
+
:other: "{0} гекталітра"
|
595
|
+
:volume-liter:
|
596
|
+
:few: "{0} літры"
|
597
|
+
:many: "{0} літраў"
|
598
|
+
:one: "{0} літр"
|
599
|
+
:other: "{0} літра"
|
600
|
+
:volume-megaliter:
|
601
|
+
:few: "{0} мегалітры"
|
602
|
+
:many: "{0} мегалітраў"
|
603
|
+
:one: "{0} мегалітр"
|
604
|
+
:other: "{0} мегалітра"
|
605
|
+
:volume-milliliter:
|
606
|
+
:few: "{0} мілілітры"
|
607
|
+
:many: "{0} мілілітраў"
|
608
|
+
:one: "{0} мілілітр"
|
609
|
+
:other: "{0} мілілітра"
|
610
|
+
:volume-pint:
|
611
|
+
:few: "{0} пінты"
|
612
|
+
:many: "{0} пінтаў"
|
613
|
+
:one: "{0} пінта"
|
614
|
+
:other: "{0} пінты"
|
615
|
+
:volume-pint-metric:
|
616
|
+
:few: "{0} метрычныя пінты"
|
617
|
+
:many: "{0} метрычных пінтаў"
|
618
|
+
:one: "{0} метрычная пінта"
|
619
|
+
:other: "{0} метрычнай пінты"
|
620
|
+
:volume-quart:
|
621
|
+
:few: "{0} кварты"
|
622
|
+
:many: "{0} кварт"
|
623
|
+
:one: "{0} кварта"
|
624
|
+
:other: "{0} кварты"
|
625
|
+
:volume-tablespoon:
|
626
|
+
:few: "{0} сталовыя лыжкі"
|
627
|
+
:many: "{0} сталовых лыжак"
|
628
|
+
:one: "{0} сталовая лыжка"
|
629
|
+
:other: "{0} сталовай лыжкі"
|
630
|
+
:volume-teaspoon:
|
631
|
+
:few: "{0} чайныя лыжкі"
|
632
|
+
:many: "{0} чайных лыжак"
|
633
|
+
:one: "{0} чайная лыжка"
|
634
|
+
:other: "{0} чайнай лыжкі"
|
635
|
+
:narrow:
|
636
|
+
:consumption-liter-per-100kilometers:
|
637
|
+
:few: "{0}л/100км"
|
638
|
+
:many: "{0}л/100км"
|
639
|
+
:one: "{0}л/100км"
|
640
|
+
:other: "{0}л/100км"
|
641
|
+
:duration-day:
|
642
|
+
:few: "{0}сут."
|
643
|
+
:many: "{0}сут."
|
644
|
+
:one: "{0}сут."
|
645
|
+
:other: "{0}сут."
|
646
|
+
:duration-hour:
|
647
|
+
:few: "{0}гадз."
|
648
|
+
:many: "{0}гадз."
|
649
|
+
:one: "{0}гадз."
|
650
|
+
:other: "{0}гадз."
|
651
|
+
:duration-millisecond:
|
652
|
+
:few: "{0}мс"
|
653
|
+
:many: "{0}мс"
|
654
|
+
:one: "{0}мс"
|
655
|
+
:other: "{0}мс"
|
656
|
+
:duration-minute:
|
657
|
+
:few: "{0}хв."
|
658
|
+
:many: "{0}хв."
|
659
|
+
:one: "{0}хв."
|
660
|
+
:other: "{0}хв."
|
661
|
+
:duration-month:
|
662
|
+
:few: "{0}мес."
|
663
|
+
:many: "{0}мес."
|
664
|
+
:one: "{0}мес."
|
665
|
+
:other: "{0}мес."
|
666
|
+
:duration-second:
|
667
|
+
:few: "{0}с"
|
668
|
+
:many: "{0}с"
|
669
|
+
:one: "{0}с"
|
670
|
+
:other: "{0}с"
|
671
|
+
:duration-week:
|
672
|
+
:few: "{0}тыдз."
|
673
|
+
:many: "{0}тыдз."
|
674
|
+
:one: "{0}тыдз."
|
675
|
+
:other: "{0}тыдз."
|
676
|
+
:duration-year:
|
677
|
+
:few: "{0}г."
|
678
|
+
:many: "{0}г."
|
679
|
+
:one: "{0}г."
|
680
|
+
:other: "{0}г."
|
681
|
+
:length-centimeter:
|
682
|
+
:few: "{0}см"
|
683
|
+
:many: "{0}см"
|
684
|
+
:one: "{0}см"
|
685
|
+
:other: "{0}см"
|
686
|
+
:length-kilometer:
|
687
|
+
:few: "{0}км"
|
688
|
+
:many: "{0}км"
|
689
|
+
:one: "{0}км"
|
690
|
+
:other: "{0}км"
|
691
|
+
:length-meter:
|
692
|
+
:few: "{0}м"
|
693
|
+
:many: "{0}м"
|
694
|
+
:one: "{0}м"
|
695
|
+
:other: "{0}м"
|
696
|
+
:length-millimeter:
|
697
|
+
:few: "{0}мм"
|
698
|
+
:many: "{0}мм"
|
699
|
+
:one: "{0}мм"
|
700
|
+
:other: "{0}мм"
|
701
|
+
:mass-gram:
|
702
|
+
:few: "{0}г"
|
703
|
+
:many: "{0}г"
|
704
|
+
:one: "{0}г"
|
705
|
+
:other: "{0}г"
|
706
|
+
:mass-kilogram:
|
707
|
+
:few: "{0}кг"
|
708
|
+
:many: "{0}кг"
|
709
|
+
:one: "{0}кг"
|
710
|
+
:other: "{0}кг"
|
711
|
+
:speed-kilometer-per-hour:
|
712
|
+
:few: "{0}км/г"
|
713
|
+
:many: "{0}км/г"
|
714
|
+
:one: "{0}км/г"
|
715
|
+
:other: "{0}км/г"
|
716
|
+
:temperature-celsius:
|
717
|
+
:few: "{0}°C"
|
718
|
+
:many: "{0}°C"
|
719
|
+
:one: "{0}°C"
|
720
|
+
:other: "{0}°C"
|
721
|
+
:volume-liter:
|
722
|
+
:few: "{0}л"
|
723
|
+
:many: "{0}л"
|
724
|
+
:one: "{0}л"
|
725
|
+
:other: "{0}л"
|
46
726
|
:short:
|
47
727
|
:acceleration-g-force:
|
48
|
-
:
|
728
|
+
:few: "{0} g"
|
729
|
+
:many: "{0} g"
|
730
|
+
:one: "{0} g"
|
731
|
+
:other: "{0} g"
|
49
732
|
:acceleration-meter-per-second-squared:
|
50
|
-
:
|
733
|
+
:few: "{0} м/с²"
|
734
|
+
:many: "{0} м/с²"
|
735
|
+
:one: "{0} м/с²"
|
736
|
+
:other: "{0} м/с²"
|
51
737
|
:angle-arc-minute:
|
738
|
+
:few: "{0}′"
|
739
|
+
:many: "{0}′"
|
740
|
+
:one: "{0}′"
|
52
741
|
:other: "{0}′"
|
53
742
|
:angle-arc-second:
|
743
|
+
:few: "{0}″"
|
744
|
+
:many: "{0}″"
|
745
|
+
:one: "{0}″"
|
54
746
|
:other: "{0}″"
|
55
747
|
:angle-degree:
|
748
|
+
:few: "{0}°"
|
749
|
+
:many: "{0}°"
|
750
|
+
:one: "{0}°"
|
56
751
|
:other: "{0}°"
|
57
752
|
:angle-radian:
|
58
|
-
:
|
753
|
+
:few: "{0} рад"
|
754
|
+
:many: "{0} рад"
|
755
|
+
:one: "{0} рад"
|
756
|
+
:other: "{0} рад"
|
757
|
+
:angle-revolution:
|
758
|
+
:few: "{0} аб"
|
759
|
+
:many: "{0} аб"
|
760
|
+
:one: "{0} аб"
|
761
|
+
:other: "{0} аб"
|
59
762
|
:area-acre:
|
60
|
-
:
|
763
|
+
:few: "{0} акры"
|
764
|
+
:many: "{0} акраў"
|
765
|
+
:one: "{0} акр"
|
766
|
+
:other: "{0} акра"
|
61
767
|
:area-hectare:
|
62
|
-
:
|
768
|
+
:few: "{0} га"
|
769
|
+
:many: "{0} га"
|
770
|
+
:one: "{0} га"
|
771
|
+
:other: "{0} га"
|
63
772
|
:area-square-centimeter:
|
64
|
-
:
|
773
|
+
:few: "{0} см²"
|
774
|
+
:many: "{0} см²"
|
775
|
+
:one: "{0} см²"
|
776
|
+
:other: "{0} см²"
|
65
777
|
:area-square-foot:
|
66
|
-
:
|
778
|
+
:few: "{0} кв. футы"
|
779
|
+
:many: "{0} кв. футаў"
|
780
|
+
:one: "{0} кв. фут"
|
781
|
+
:other: "{0} кв. фута"
|
67
782
|
:area-square-inch:
|
68
|
-
:
|
783
|
+
:few: "{0} кв. цалі"
|
784
|
+
:many: "{0} кв. цаляў"
|
785
|
+
:one: "{0} кв. цаля"
|
786
|
+
:other: "{0} кв. цалі"
|
69
787
|
:area-square-kilometer:
|
70
|
-
:
|
788
|
+
:few: "{0} км²"
|
789
|
+
:many: "{0} км²"
|
790
|
+
:one: "{0} км²"
|
791
|
+
:other: "{0} км²"
|
71
792
|
:area-square-meter:
|
72
|
-
:
|
793
|
+
:few: "{0} м²"
|
794
|
+
:many: "{0} м²"
|
795
|
+
:one: "{0} м²"
|
796
|
+
:other: "{0} м²"
|
73
797
|
:area-square-mile:
|
74
|
-
:
|
798
|
+
:few: "{0} кв. мілі"
|
799
|
+
:many: "{0} кв. міль"
|
800
|
+
:one: "{0} кв. міля"
|
801
|
+
:other: "{0} кв. мілі"
|
75
802
|
:area-square-yard:
|
76
|
-
:
|
803
|
+
:few: "{0} кв. ярды"
|
804
|
+
:many: "{0} кв. ярдаў"
|
805
|
+
:one: "{0} кв. ярд"
|
806
|
+
:other: "{0} кв. ярда"
|
807
|
+
:concentr-karat:
|
808
|
+
:few: "{0} кар зол"
|
809
|
+
:many: "{0} кар зол"
|
810
|
+
:one: "{0} кар зол"
|
811
|
+
:other: "{0} кар зол"
|
812
|
+
:concentr-milligram-per-deciliter:
|
813
|
+
:other: "{0} mg/dL"
|
814
|
+
:concentr-millimole-per-liter:
|
815
|
+
:other: "{0} mmol/L"
|
816
|
+
:concentr-part-per-million:
|
817
|
+
:other: "{0} ppm"
|
818
|
+
:consumption-liter-per-100kilometers:
|
819
|
+
:few: "{0} л/100 км"
|
820
|
+
:many: "{0} л/100 км"
|
821
|
+
:one: "{0} л/100 км"
|
822
|
+
:other: "{0} л/100 км"
|
77
823
|
:consumption-liter-per-kilometer:
|
78
|
-
:
|
824
|
+
:few: "{0} л/км"
|
825
|
+
:many: "{0} л/км"
|
826
|
+
:one: "{0} л/км"
|
827
|
+
:other: "{0} л/км"
|
79
828
|
:consumption-mile-per-gallon:
|
80
|
-
:
|
829
|
+
:few: "{0} міля/гал"
|
830
|
+
:many: "{0} міль/гал"
|
831
|
+
:one: "{0} міля/гал"
|
832
|
+
:other: "{0} мілі/гал"
|
833
|
+
:consumption-mile-per-gallon-imperial:
|
834
|
+
:other: "{0} mpg Imp."
|
81
835
|
:digital-bit:
|
82
|
-
:
|
836
|
+
:few: "{0} біты"
|
837
|
+
:many: "{0} біт"
|
838
|
+
:one: "{0} біт"
|
839
|
+
:other: "{0} біта"
|
83
840
|
:digital-byte:
|
84
|
-
:
|
841
|
+
:few: "{0} байты"
|
842
|
+
:many: "{0} байт"
|
843
|
+
:one: "{0} байт"
|
844
|
+
:other: "{0} байта"
|
85
845
|
:digital-gigabit:
|
86
|
-
:
|
846
|
+
:few: "{0} Гбіт"
|
847
|
+
:many: "{0} Гбіт"
|
848
|
+
:one: "{0} Гбіт"
|
849
|
+
:other: "{0} Гбіт"
|
87
850
|
:digital-gigabyte:
|
88
|
-
:
|
851
|
+
:few: "{0} Гб"
|
852
|
+
:many: "{0} Гб"
|
853
|
+
:one: "{0} Гб"
|
854
|
+
:other: "{0} Гб"
|
89
855
|
:digital-kilobit:
|
90
|
-
:
|
856
|
+
:few: "{0} кбіт"
|
857
|
+
:many: "{0} кбіт"
|
858
|
+
:one: "{0} кбіт"
|
859
|
+
:other: "{0} кбіт"
|
91
860
|
:digital-kilobyte:
|
92
|
-
:
|
861
|
+
:few: "{0} Кб"
|
862
|
+
:many: "{0} Кб"
|
863
|
+
:one: "{0} Кб"
|
864
|
+
:other: "{0} Кб"
|
93
865
|
:digital-megabit:
|
94
|
-
:
|
866
|
+
:few: "{0} Мбіт"
|
867
|
+
:many: "{0} Мбіт"
|
868
|
+
:one: "{0} Мбіт"
|
869
|
+
:other: "{0} Мбіт"
|
95
870
|
:digital-megabyte:
|
96
|
-
:
|
871
|
+
:few: "{0} Мб"
|
872
|
+
:many: "{0} Мб"
|
873
|
+
:one: "{0} Мб"
|
874
|
+
:other: "{0} Мб"
|
97
875
|
:digital-terabit:
|
98
|
-
:
|
876
|
+
:few: "{0} Тбіт"
|
877
|
+
:many: "{0} Тбіт"
|
878
|
+
:one: "{0} Тбіт"
|
879
|
+
:other: "{0} Тбіт"
|
99
880
|
:digital-terabyte:
|
100
|
-
:
|
881
|
+
:few: "{0} Тб"
|
882
|
+
:many: "{0} Тб"
|
883
|
+
:one: "{0} Тб"
|
884
|
+
:other: "{0} Тб"
|
885
|
+
:duration-century:
|
886
|
+
:few: "{0} ст."
|
887
|
+
:many: "{0} ст."
|
888
|
+
:one: "{0} ст."
|
889
|
+
:other: "{0} ст."
|
101
890
|
:duration-day:
|
102
|
-
:
|
891
|
+
:few: "{0} сут."
|
892
|
+
:many: "{0} сут."
|
893
|
+
:one: "{0} сут."
|
894
|
+
:other: "{0} сут."
|
895
|
+
:duration-day-person: {}
|
103
896
|
:duration-hour:
|
104
|
-
:
|
897
|
+
:few: "{0} гадз."
|
898
|
+
:many: "{0} гадз."
|
899
|
+
:one: "{0} гадз."
|
900
|
+
:other: "{0} гадз."
|
105
901
|
:duration-microsecond:
|
106
|
-
:
|
902
|
+
:few: "{0} мкс"
|
903
|
+
:many: "{0} мкс"
|
904
|
+
:one: "{0} мкс"
|
905
|
+
:other: "{0} мкс"
|
107
906
|
:duration-millisecond:
|
108
|
-
:
|
907
|
+
:few: "{0} мс"
|
908
|
+
:many: "{0} мс"
|
909
|
+
:one: "{0} мс"
|
910
|
+
:other: "{0} мс"
|
109
911
|
:duration-minute:
|
110
|
-
:
|
912
|
+
:few: "{0} хв."
|
913
|
+
:many: "{0} хв."
|
914
|
+
:one: "{0} хв."
|
915
|
+
:other: "{0} хв."
|
111
916
|
:duration-month:
|
112
|
-
:
|
917
|
+
:few: "{0} мес."
|
918
|
+
:many: "{0} мес."
|
919
|
+
:one: "{0} мес."
|
920
|
+
:other: "{0} мес."
|
921
|
+
:duration-month-person: {}
|
113
922
|
:duration-nanosecond:
|
114
|
-
:
|
923
|
+
:few: "{0} нс"
|
924
|
+
:many: "{0} нс"
|
925
|
+
:one: "{0} нс"
|
926
|
+
:other: "{0} нс"
|
115
927
|
:duration-second:
|
116
|
-
:
|
928
|
+
:few: "{0} с"
|
929
|
+
:many: "{0} с"
|
930
|
+
:one: "{0} с"
|
931
|
+
:other: "{0} с"
|
117
932
|
:duration-week:
|
118
|
-
:
|
933
|
+
:few: "{0} тыдз."
|
934
|
+
:many: "{0} тыдз."
|
935
|
+
:one: "{0} тыдз."
|
936
|
+
:other: "{0} тыдз."
|
937
|
+
:duration-week-person: {}
|
119
938
|
:duration-year:
|
120
|
-
:
|
939
|
+
:few: "{0} г."
|
940
|
+
:many: "{0} г."
|
941
|
+
:one: "{0} г."
|
942
|
+
:other: "{0} г."
|
943
|
+
:duration-year-person: {}
|
121
944
|
:electric-ampere:
|
945
|
+
:few: "{0} A"
|
946
|
+
:many: "{0} A"
|
947
|
+
:one: "{0} A"
|
122
948
|
:other: "{0} A"
|
123
949
|
:electric-milliampere:
|
124
|
-
:
|
950
|
+
:few: "{0} мА"
|
951
|
+
:many: "{0} мА"
|
952
|
+
:one: "{0} мА"
|
953
|
+
:other: "{0} мА"
|
125
954
|
:electric-ohm:
|
126
|
-
:
|
955
|
+
:few: "{0} Ом"
|
956
|
+
:many: "{0} Ом"
|
957
|
+
:one: "{0} Ом"
|
958
|
+
:other: "{0} Ом"
|
127
959
|
:electric-volt:
|
128
|
-
:
|
960
|
+
:few: "{0} В"
|
961
|
+
:many: "{0} В"
|
962
|
+
:one: "{0} В"
|
963
|
+
:other: "{0} В"
|
129
964
|
:energy-calorie:
|
130
|
-
:
|
965
|
+
:few: "{0} кал"
|
966
|
+
:many: "{0} кал"
|
967
|
+
:one: "{0} кал"
|
968
|
+
:other: "{0} кал"
|
131
969
|
:energy-foodcalorie:
|
132
|
-
:
|
970
|
+
:few: "{0} кал"
|
971
|
+
:many: "{0} кал"
|
972
|
+
:one: "{0} кал"
|
973
|
+
:other: "{0} кал"
|
133
974
|
:energy-joule:
|
134
|
-
:
|
975
|
+
:few: "{0} Дж"
|
976
|
+
:many: "{0} Дж"
|
977
|
+
:one: "{0} Дж"
|
978
|
+
:other: "{0} Дж"
|
135
979
|
:energy-kilocalorie:
|
136
|
-
:
|
980
|
+
:few: "{0} ккал"
|
981
|
+
:many: "{0} ккал"
|
982
|
+
:one: "{0} ккал"
|
983
|
+
:other: "{0} ккал"
|
137
984
|
:energy-kilojoule:
|
138
|
-
:
|
985
|
+
:few: "{0} кДж"
|
986
|
+
:many: "{0} кДж"
|
987
|
+
:one: "{0} кДж"
|
988
|
+
:other: "{0} кДж"
|
139
989
|
:energy-kilowatt-hour:
|
140
|
-
:
|
990
|
+
:few: "{0} кВт·г"
|
991
|
+
:many: "{0} кВт·г"
|
992
|
+
:one: "{0} кВт·г"
|
993
|
+
:other: "{0} кВт·г"
|
141
994
|
:frequency-gigahertz:
|
142
|
-
:
|
995
|
+
:few: "{0} ГГц"
|
996
|
+
:many: "{0} ГГц"
|
997
|
+
:one: "{0} ГГц"
|
998
|
+
:other: "{0} ГГц"
|
143
999
|
:frequency-hertz:
|
144
|
-
:
|
1000
|
+
:few: "{0} Гц"
|
1001
|
+
:many: "{0} Гц"
|
1002
|
+
:one: "{0} Гц"
|
1003
|
+
:other: "{0} Гц"
|
145
1004
|
:frequency-kilohertz:
|
146
|
-
:
|
1005
|
+
:few: "{0} кГц"
|
1006
|
+
:many: "{0} кГц"
|
1007
|
+
:one: "{0} кГц"
|
1008
|
+
:other: "{0} кГц"
|
147
1009
|
:frequency-megahertz:
|
148
|
-
:
|
1010
|
+
:few: "{0} МГц"
|
1011
|
+
:many: "{0} МГц"
|
1012
|
+
:one: "{0} МГц"
|
1013
|
+
:other: "{0} МГц"
|
149
1014
|
:length-astronomical-unit:
|
150
|
-
:
|
1015
|
+
:few: "{0} а. а."
|
1016
|
+
:many: "{0} а. а."
|
1017
|
+
:one: "{0} а. а."
|
1018
|
+
:other: "{0} а. а."
|
151
1019
|
:length-centimeter:
|
152
|
-
:
|
1020
|
+
:few: "{0} см"
|
1021
|
+
:many: "{0} см"
|
1022
|
+
:one: "{0} см"
|
1023
|
+
:other: "{0} см"
|
153
1024
|
:length-decimeter:
|
154
|
-
:
|
1025
|
+
:few: "{0} дм"
|
1026
|
+
:many: "{0} дм"
|
1027
|
+
:one: "{0} дм"
|
1028
|
+
:other: "{0} дм"
|
155
1029
|
:length-fathom:
|
156
1030
|
:other: "{0} fm"
|
157
1031
|
:length-foot:
|
158
|
-
:
|
1032
|
+
:few: "{0} футы"
|
1033
|
+
:many: "{0} футаў"
|
1034
|
+
:one: "{0} фут"
|
1035
|
+
:other: "{0} фута"
|
159
1036
|
:length-furlong:
|
160
1037
|
:other: "{0} fur"
|
161
1038
|
:length-inch:
|
162
|
-
:
|
1039
|
+
:few: "{0} цалі"
|
1040
|
+
:many: "{0} цаляў"
|
1041
|
+
:one: "{0} цаля"
|
1042
|
+
:other: "{0} цалі"
|
163
1043
|
:length-kilometer:
|
164
|
-
:
|
1044
|
+
:few: "{0} км"
|
1045
|
+
:many: "{0} км"
|
1046
|
+
:one: "{0} км"
|
1047
|
+
:other: "{0} км"
|
165
1048
|
:length-light-year:
|
166
|
-
:
|
1049
|
+
:few: "{0} св. г."
|
1050
|
+
:many: "{0} св. г."
|
1051
|
+
:one: "{0} св. г."
|
1052
|
+
:other: "{0} св. г."
|
167
1053
|
:length-meter:
|
168
|
-
:
|
1054
|
+
:few: "{0} м"
|
1055
|
+
:many: "{0} м"
|
1056
|
+
:one: "{0} м"
|
1057
|
+
:other: "{0} м"
|
169
1058
|
:length-micrometer:
|
170
|
-
:
|
1059
|
+
:few: "{0} мкм"
|
1060
|
+
:many: "{0} мкм"
|
1061
|
+
:one: "{0} мкм"
|
1062
|
+
:other: "{0} мкм"
|
171
1063
|
:length-mile:
|
172
|
-
:
|
1064
|
+
:few: "{0} мілі"
|
1065
|
+
:many: "{0} міль"
|
1066
|
+
:one: "{0} міля"
|
1067
|
+
:other: "{0} мілі"
|
1068
|
+
:length-mile-scandinavian:
|
1069
|
+
:few: "{0} скан. мілі"
|
1070
|
+
:many: "{0} скан. міль"
|
1071
|
+
:one: "{0} скан. мілі"
|
1072
|
+
:other: "{0} скан. мілі"
|
173
1073
|
:length-millimeter:
|
174
|
-
:
|
1074
|
+
:few: "{0} мм"
|
1075
|
+
:many: "{0} мм"
|
1076
|
+
:one: "{0} мм"
|
1077
|
+
:other: "{0} мм"
|
175
1078
|
:length-nanometer:
|
176
|
-
:
|
1079
|
+
:few: "{0} нм"
|
1080
|
+
:many: "{0} нм"
|
1081
|
+
:one: "{0} нм"
|
1082
|
+
:other: "{0} нм"
|
177
1083
|
:length-nautical-mile:
|
178
|
-
:
|
1084
|
+
:few: "{0} мар. мілі"
|
1085
|
+
:many: "{0} мар. міль"
|
1086
|
+
:one: "{0} мар. міля"
|
1087
|
+
:other: "{0} мар. міль"
|
179
1088
|
:length-parsec:
|
180
|
-
:
|
1089
|
+
:few: "{0} пс"
|
1090
|
+
:many: "{0} пс"
|
1091
|
+
:one: "{0} пс"
|
1092
|
+
:other: "{0} пс"
|
181
1093
|
:length-picometer:
|
182
|
-
:
|
1094
|
+
:few: "{0} пм"
|
1095
|
+
:many: "{0} пм"
|
1096
|
+
:one: "{0} пм"
|
1097
|
+
:other: "{0} пм"
|
183
1098
|
:length-yard:
|
184
|
-
:
|
1099
|
+
:few: "{0} ярды"
|
1100
|
+
:many: "{0} ярдаў"
|
1101
|
+
:one: "{0} ярд"
|
1102
|
+
:other: "{0} ярда"
|
185
1103
|
:light-lux:
|
186
|
-
:
|
1104
|
+
:few: "{0} лк"
|
1105
|
+
:many: "{0} лк"
|
1106
|
+
:one: "{0} лк"
|
1107
|
+
:other: "{0} лк"
|
187
1108
|
:mass-carat:
|
188
|
-
:
|
1109
|
+
:few: "{0} кар"
|
1110
|
+
:many: "{0} кар"
|
1111
|
+
:one: "{0} кар"
|
1112
|
+
:other: "{0} кар"
|
189
1113
|
:mass-gram:
|
190
|
-
:
|
1114
|
+
:few: "{0} г"
|
1115
|
+
:many: "{0} г"
|
1116
|
+
:one: "{0} г"
|
1117
|
+
:other: "{0} г"
|
191
1118
|
:mass-kilogram:
|
192
|
-
:
|
1119
|
+
:few: "{0} кг"
|
1120
|
+
:many: "{0} кг"
|
1121
|
+
:one: "{0} кг"
|
1122
|
+
:other: "{0} кг"
|
193
1123
|
:mass-metric-ton:
|
194
|
-
:
|
1124
|
+
:few: "{0} мет. тоны"
|
1125
|
+
:many: "{0} мет. тон"
|
1126
|
+
:one: "{0} мет. тона"
|
1127
|
+
:other: "{0} мет. тоны"
|
195
1128
|
:mass-microgram:
|
196
|
-
:
|
1129
|
+
:few: "{0} мкг"
|
1130
|
+
:many: "{0} мкг"
|
1131
|
+
:one: "{0} мкг"
|
1132
|
+
:other: "{0} мкг"
|
197
1133
|
:mass-milligram:
|
198
|
-
:
|
1134
|
+
:few: "{0} мг"
|
1135
|
+
:many: "{0} мг"
|
1136
|
+
:one: "{0} мг"
|
1137
|
+
:other: "{0} мг"
|
199
1138
|
:mass-ounce:
|
200
|
-
:
|
1139
|
+
:few: "{0} унц."
|
1140
|
+
:many: "{0} унц."
|
1141
|
+
:one: "{0} унц."
|
1142
|
+
:other: "{0} унц."
|
201
1143
|
:mass-ounce-troy:
|
202
|
-
:
|
1144
|
+
:few: "{0} тр. унц."
|
1145
|
+
:many: "{0} тр. унц."
|
1146
|
+
:one: "{0} тр. унц."
|
1147
|
+
:other: "{0} тр. унц."
|
203
1148
|
:mass-pound:
|
204
|
-
:
|
1149
|
+
:few: "{0} фунты"
|
1150
|
+
:many: "{0} фунтаў"
|
1151
|
+
:one: "{0} фунт"
|
1152
|
+
:other: "{0} фунта"
|
205
1153
|
:mass-stone:
|
206
1154
|
:other: "{0} st"
|
207
1155
|
:mass-ton:
|
208
|
-
:
|
1156
|
+
:few: "{0} т"
|
1157
|
+
:many: "{0} т"
|
1158
|
+
:one: "{0} т"
|
1159
|
+
:other: "{0} т"
|
209
1160
|
:power-gigawatt:
|
210
|
-
:
|
1161
|
+
:few: "{0} ГВт"
|
1162
|
+
:many: "{0} ГВт"
|
1163
|
+
:one: "{0} ГВт"
|
1164
|
+
:other: "{0} ГВт"
|
211
1165
|
:power-horsepower:
|
212
|
-
:
|
1166
|
+
:few: "{0} к. с."
|
1167
|
+
:many: "{0} к. с."
|
1168
|
+
:one: "{0} к. с."
|
1169
|
+
:other: "{0} к. с."
|
213
1170
|
:power-kilowatt:
|
214
|
-
:
|
1171
|
+
:few: "{0} кВт"
|
1172
|
+
:many: "{0} кВт"
|
1173
|
+
:one: "{0} кВт"
|
1174
|
+
:other: "{0} кВт"
|
215
1175
|
:power-megawatt:
|
216
|
-
:
|
1176
|
+
:few: "{0} МВт"
|
1177
|
+
:many: "{0} МВт"
|
1178
|
+
:one: "{0} МВт"
|
1179
|
+
:other: "{0} МВт"
|
217
1180
|
:power-milliwatt:
|
218
|
-
:
|
1181
|
+
:few: "{0} мВт"
|
1182
|
+
:many: "{0} мВт"
|
1183
|
+
:one: "{0} мВт"
|
1184
|
+
:other: "{0} мВт"
|
219
1185
|
:power-watt:
|
220
|
-
:
|
1186
|
+
:few: "{0} Вт"
|
1187
|
+
:many: "{0} Вт"
|
1188
|
+
:one: "{0} Вт"
|
1189
|
+
:other: "{0} Вт"
|
221
1190
|
:pressure-hectopascal:
|
222
|
-
:
|
1191
|
+
:few: "{0} гПа"
|
1192
|
+
:many: "{0} гПа"
|
1193
|
+
:one: "{0} гПа"
|
1194
|
+
:other: "{0} гПа"
|
223
1195
|
:pressure-inch-hg:
|
224
|
-
:
|
1196
|
+
:few: "{0} цалі рт. сл."
|
1197
|
+
:many: "{0} цаляў рт. сл."
|
1198
|
+
:one: "{0} цаля рт. сл."
|
1199
|
+
:other: "{0} цалі рт. сл."
|
225
1200
|
:pressure-millibar:
|
226
|
-
:
|
1201
|
+
:few: "{0} мбар"
|
1202
|
+
:many: "{0} мбар"
|
1203
|
+
:one: "{0} мбар"
|
1204
|
+
:other: "{0} мбар"
|
227
1205
|
:pressure-millimeter-of-mercury:
|
228
|
-
:
|
1206
|
+
:few: "{0} мм рт. сл."
|
1207
|
+
:many: "{0} мм рт. сл."
|
1208
|
+
:one: "{0} мм рт. сл."
|
1209
|
+
:other: "{0} мм рт. сл."
|
229
1210
|
:pressure-pound-per-square-inch:
|
230
|
-
:
|
231
|
-
|
232
|
-
:
|
1211
|
+
:few: "{0} фунты на кв. цалю"
|
1212
|
+
:many: "{0} фунтаў на кв. цалю"
|
1213
|
+
:one: "{0} фунт на кв. цалю"
|
1214
|
+
:other: "{0} фунта на кв. цалю"
|
233
1215
|
:speed-kilometer-per-hour:
|
234
|
-
:
|
1216
|
+
:few: "{0} км/г"
|
1217
|
+
:many: "{0} км/г"
|
1218
|
+
:one: "{0} км/г"
|
1219
|
+
:other: "{0} км/г"
|
1220
|
+
:speed-knot:
|
1221
|
+
:few: "{0} вуз"
|
1222
|
+
:many: "{0} вуз"
|
1223
|
+
:one: "{0} вуз"
|
1224
|
+
:other: "{0} вуз"
|
235
1225
|
:speed-meter-per-second:
|
236
|
-
:
|
1226
|
+
:few: "{0} м/с"
|
1227
|
+
:many: "{0} м/с"
|
1228
|
+
:one: "{0} м/с"
|
1229
|
+
:other: "{0} м/с"
|
237
1230
|
:speed-mile-per-hour:
|
238
|
-
:
|
1231
|
+
:few: "{0} мілі/г"
|
1232
|
+
:many: "{0} міль/г"
|
1233
|
+
:one: "{0} міля/г"
|
1234
|
+
:other: "{0} мілі/г"
|
239
1235
|
:temperature-celsius:
|
240
|
-
:
|
1236
|
+
:few: "{0} °C"
|
1237
|
+
:many: "{0} °C"
|
1238
|
+
:one: "{0} °C"
|
1239
|
+
:other: "{0} °C"
|
241
1240
|
:temperature-fahrenheit:
|
242
|
-
:
|
1241
|
+
:few: "{0} °F"
|
1242
|
+
:many: "{0} °F"
|
1243
|
+
:one: "{0} °F"
|
1244
|
+
:other: "{0} °F"
|
1245
|
+
:temperature-generic:
|
1246
|
+
:few: "{0}°"
|
1247
|
+
:many: "{0}°"
|
1248
|
+
:one: "{0}°"
|
1249
|
+
:other: "{0}°"
|
243
1250
|
:temperature-kelvin:
|
244
|
-
:
|
1251
|
+
:few: "{0} К"
|
1252
|
+
:many: "{0} К"
|
1253
|
+
:one: "{0} К"
|
1254
|
+
:other: "{0} К"
|
245
1255
|
:volume-acre-foot:
|
246
|
-
:
|
1256
|
+
:few: "{0} акр-футы"
|
1257
|
+
:many: "{0} акр-футаў"
|
1258
|
+
:one: "{0} акр-фут"
|
1259
|
+
:other: "{0} акр-фута"
|
247
1260
|
:volume-bushel:
|
248
1261
|
:other: "{0} bu"
|
249
1262
|
:volume-centiliter:
|
250
|
-
:
|
1263
|
+
:few: "{0} сл"
|
1264
|
+
:many: "{0} сл"
|
1265
|
+
:one: "{0} сл"
|
1266
|
+
:other: "{0} сл"
|
251
1267
|
:volume-cubic-centimeter:
|
252
|
-
:
|
1268
|
+
:few: "{0} см³"
|
1269
|
+
:many: "{0} см³"
|
1270
|
+
:one: "{0} см³"
|
1271
|
+
:other: "{0} см³"
|
253
1272
|
:volume-cubic-foot:
|
254
|
-
:
|
1273
|
+
:few: "{0} куб. футы"
|
1274
|
+
:many: "{0} куб. футаў"
|
1275
|
+
:one: "{0} куб. фут"
|
1276
|
+
:other: "{0} куб. фута"
|
255
1277
|
:volume-cubic-inch:
|
256
|
-
:
|
1278
|
+
:few: "{0} куб. цалі"
|
1279
|
+
:many: "{0} куб. цаляў"
|
1280
|
+
:one: "{0} куб. цаля"
|
1281
|
+
:other: "{0} куб. цалі"
|
257
1282
|
:volume-cubic-kilometer:
|
258
|
-
:
|
1283
|
+
:few: "{0} км³"
|
1284
|
+
:many: "{0} км³"
|
1285
|
+
:one: "{0} км³"
|
1286
|
+
:other: "{0} км³"
|
259
1287
|
:volume-cubic-meter:
|
260
|
-
:
|
1288
|
+
:few: "{0} м³"
|
1289
|
+
:many: "{0} м³"
|
1290
|
+
:one: "{0} м³"
|
1291
|
+
:other: "{0} м³"
|
261
1292
|
:volume-cubic-mile:
|
262
|
-
:
|
1293
|
+
:few: "{0} куб. мілі"
|
1294
|
+
:many: "{0} куб. міль"
|
1295
|
+
:one: "{0} куб. міля"
|
1296
|
+
:other: "{0} куб. мілі"
|
263
1297
|
:volume-cubic-yard:
|
264
|
-
:
|
1298
|
+
:few: "{0} куб. ярды"
|
1299
|
+
:many: "{0} куб. ярдаў"
|
1300
|
+
:one: "{0} куб. ярд"
|
1301
|
+
:other: "{0} куб. ярда"
|
265
1302
|
:volume-cup:
|
266
|
-
:
|
1303
|
+
:few: "{0} кубкі"
|
1304
|
+
:many: "{0} кубкаў"
|
1305
|
+
:one: "{0} кубак"
|
1306
|
+
:other: "{0} кубка"
|
1307
|
+
:volume-cup-metric:
|
1308
|
+
:few: "{0} мет. кубкі"
|
1309
|
+
:many: "{0} мет. кубкаў"
|
1310
|
+
:one: "{0} мет. кубак"
|
1311
|
+
:other: "{0} мет. кубка"
|
267
1312
|
:volume-deciliter:
|
268
|
-
:
|
1313
|
+
:few: "{0} дл"
|
1314
|
+
:many: "{0} дл"
|
1315
|
+
:one: "{0} дл"
|
1316
|
+
:other: "{0} дл"
|
269
1317
|
:volume-fluid-ounce:
|
270
|
-
:
|
1318
|
+
:few: "{0} вадк. унц."
|
1319
|
+
:many: "{0} вадк. унц."
|
1320
|
+
:one: "{0} вадк. унц."
|
1321
|
+
:other: "{0} вадк. унц."
|
271
1322
|
:volume-gallon:
|
272
|
-
:
|
1323
|
+
:few: "{0} гал"
|
1324
|
+
:many: "{0} гал"
|
1325
|
+
:one: "{0} гал"
|
1326
|
+
:other: "{0} гал"
|
1327
|
+
:volume-gallon-imperial:
|
1328
|
+
:other: "{0} gal Imp."
|
273
1329
|
:volume-hectoliter:
|
274
|
-
:
|
1330
|
+
:few: "{0} гл"
|
1331
|
+
:many: "{0} гл"
|
1332
|
+
:one: "{0} гл"
|
1333
|
+
:other: "{0} гл"
|
275
1334
|
:volume-liter:
|
276
|
-
:
|
1335
|
+
:few: "{0} л"
|
1336
|
+
:many: "{0} л"
|
1337
|
+
:one: "{0} л"
|
1338
|
+
:other: "{0} л"
|
277
1339
|
:volume-megaliter:
|
278
|
-
:
|
1340
|
+
:few: "{0} Мл"
|
1341
|
+
:many: "{0} Мл"
|
1342
|
+
:one: "{0} Мл"
|
1343
|
+
:other: "{0} Мл"
|
279
1344
|
:volume-milliliter:
|
280
|
-
:
|
1345
|
+
:few: "{0} мл"
|
1346
|
+
:many: "{0} мл"
|
1347
|
+
:one: "{0} мл"
|
1348
|
+
:other: "{0} мл"
|
281
1349
|
:volume-pint:
|
282
|
-
:
|
1350
|
+
:few: "{0} пінты"
|
1351
|
+
:many: "{0} пінтаў"
|
1352
|
+
:one: "{0} пінта"
|
1353
|
+
:other: "{0} пінты"
|
1354
|
+
:volume-pint-metric:
|
1355
|
+
:few: "{0} мет. пінты"
|
1356
|
+
:many: "{0} мет. пінтаў"
|
1357
|
+
:one: "{0} мет. пінта"
|
1358
|
+
:other: "{0} мет. пінты"
|
283
1359
|
:volume-quart:
|
284
|
-
:
|
1360
|
+
:few: "{0} кварты"
|
1361
|
+
:many: "{0} кварт"
|
1362
|
+
:one: "{0} кварта"
|
1363
|
+
:other: "{0} кварты"
|
285
1364
|
:volume-tablespoon:
|
286
|
-
:
|
1365
|
+
:few: "{0} ст. лыжкі"
|
1366
|
+
:many: "{0} ст. лыжак"
|
1367
|
+
:one: "{0} ст. лыжка"
|
1368
|
+
:other: "{0} ст. лыжкі"
|
287
1369
|
:volume-teaspoon:
|
288
|
-
:
|
1370
|
+
:few: "{0} ч. лыжкі"
|
1371
|
+
:many: "{0} ч. лыжак"
|
1372
|
+
:one: "{0} ч. лыжка"
|
1373
|
+
:other: "{0} ч. лыжкі"
|