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
@@ -9,7 +9,6 @@
|
|
9
9
|
:ai: Anguilla
|
10
10
|
:al: Albania
|
11
11
|
:am: Armenia
|
12
|
-
:an: "Ynysoedd Caribî yr Iseldiroedd"
|
13
12
|
:ao: Angola
|
14
13
|
:aq: Antarctica
|
15
14
|
:ar: "Yr Ariannin"
|
@@ -46,7 +45,7 @@
|
|
46
45
|
:cf: "Gweriniaeth Canolbarth Affrica"
|
47
46
|
:cg: "Y Congo (Gweriniaeth)"
|
48
47
|
:ch: "Y Swistir"
|
49
|
-
:ci: "
|
48
|
+
:ci: "Arfordir Ifori"
|
50
49
|
:ck: "Ynysoedd Cook"
|
51
50
|
:cl: Chile
|
52
51
|
:cm: Camerŵn
|
@@ -80,7 +79,7 @@
|
|
80
79
|
:fj: Fiji
|
81
80
|
:fk: "Ynysoedd y Falkland (Ynysoedd y Malfinas)"
|
82
81
|
:fm: Micronesia
|
83
|
-
:fo:
|
82
|
+
:fo: "Ynysoedd Ffaro"
|
84
83
|
:fr: Ffrainc
|
85
84
|
:ga: Gabon
|
86
85
|
:gb: DU
|
@@ -185,7 +184,7 @@
|
|
185
184
|
:pe: Periw
|
186
185
|
:pf: "Polynesia Ffrengig"
|
187
186
|
:pg: "Papua Guinea Newydd"
|
188
|
-
:ph:
|
187
|
+
:ph: "Y Philipinau"
|
189
188
|
:pk: Pakistan
|
190
189
|
:pl: "Gwlad Pwyl"
|
191
190
|
:pm: Saint-Pierre-et-Miquelon
|
@@ -214,7 +213,7 @@
|
|
214
213
|
:sk: Slofacia
|
215
214
|
:sl: "Sierra Leone"
|
216
215
|
:sm: "San Marino"
|
217
|
-
:sn:
|
216
|
+
:sn: Senegal
|
218
217
|
:so: Somalia
|
219
218
|
:sr: Suriname
|
220
219
|
:ss: "De Swdan"
|
@@ -2,9 +2,9 @@
|
|
2
2
|
:cy:
|
3
3
|
:units:
|
4
4
|
:durationUnit:
|
5
|
-
:hm: h
|
6
|
-
:hms: h
|
7
|
-
:ms: m
|
5
|
+
:hm: "h:mm"
|
6
|
+
:hms: "h:mm:ss"
|
7
|
+
:ms: "m:ss"
|
8
8
|
:unitLength:
|
9
9
|
:long:
|
10
10
|
:acceleration-g-force:
|
@@ -14,20 +14,27 @@
|
|
14
14
|
:other: "{0} grym disgyrchedd"
|
15
15
|
:two: "{0} rym disgyrchedd"
|
16
16
|
:zero: "{0} grym disgyrchedd"
|
17
|
+
:acceleration-meter-per-second-squared:
|
18
|
+
:few: "{0} metr yr eiliad sgwâr"
|
19
|
+
:many: "{0} metr yr eiliad sgwâr"
|
20
|
+
:one: "{0} metr yr eiliad sgwâr"
|
21
|
+
:other: "{0} metr yr eiliad sgwâr"
|
22
|
+
:two: "{0} fetr yr eiliad sgwâr"
|
23
|
+
:zero: "{0} metr yr eiliad sgwâr"
|
17
24
|
:angle-arc-minute:
|
18
|
-
:few: "{0}
|
19
|
-
:many: "{0}
|
20
|
-
:one: "{0}
|
21
|
-
:other: "{0}
|
22
|
-
:two: "{0}
|
23
|
-
:zero: "{0}
|
25
|
+
:few: "{0} arcfunud"
|
26
|
+
:many: "{0} arcfunud"
|
27
|
+
:one: "{0} arcfunud"
|
28
|
+
:other: "{0} arcfunud"
|
29
|
+
:two: "{0} arcfunud"
|
30
|
+
:zero: "{0} arcfunud"
|
24
31
|
:angle-arc-second:
|
25
|
-
:few: "{0}
|
26
|
-
:many: "{0}
|
27
|
-
:one: "{0}
|
28
|
-
:other: "{0}
|
29
|
-
:two: "{0}
|
30
|
-
:zero: "{0}
|
32
|
+
:few: "{0} arceiliad"
|
33
|
+
:many: "{0} arceiliad"
|
34
|
+
:one: "{0} arceiliad"
|
35
|
+
:other: "{0} arceiliad"
|
36
|
+
:two: "{0} arceiliad"
|
37
|
+
:zero: "{0} arceiliad"
|
31
38
|
:angle-degree:
|
32
39
|
:few: "{0} gradd"
|
33
40
|
:many: "{0} gradd"
|
@@ -35,6 +42,20 @@
|
|
35
42
|
:other: "{0} gradd"
|
36
43
|
:two: "{0} radd"
|
37
44
|
:zero: "{0} gradd"
|
45
|
+
:angle-radian:
|
46
|
+
:few: "{0} radian"
|
47
|
+
:many: "{0} radian"
|
48
|
+
:one: "{0} radian"
|
49
|
+
:other: "{0} radian"
|
50
|
+
:two: "{0} radian"
|
51
|
+
:zero: "{0} radian"
|
52
|
+
:angle-revolution:
|
53
|
+
:few: "{0} cylchdro"
|
54
|
+
:many: "{0} cylchdro"
|
55
|
+
:one: "{0} cylchdro"
|
56
|
+
:other: "{0} cylchdro"
|
57
|
+
:two: "{0} gylchdro"
|
58
|
+
:zero: "{0} cylchdro"
|
38
59
|
:area-acre:
|
39
60
|
:few: "{0} erw"
|
40
61
|
:many: "{0} erw"
|
@@ -49,6 +70,13 @@
|
|
49
70
|
:other: "{0} hectar"
|
50
71
|
:two: "{0} hectar"
|
51
72
|
:zero: "{0} hectar"
|
73
|
+
:area-square-centimeter:
|
74
|
+
:few: "{0} chentimetr sgwâr"
|
75
|
+
:many: "{0} chentimetr sgwâr"
|
76
|
+
:one: "{0} centimetr sgwâr"
|
77
|
+
:other: "{0} centimetr sgwâr"
|
78
|
+
:two: "{0} gentimetr sgwâr"
|
79
|
+
:zero: "{0} centimetr sgwâr"
|
52
80
|
:area-square-foot:
|
53
81
|
:few: "{0} troedfedd sgwâr"
|
54
82
|
:many: "{0} throedfedd sgwâr"
|
@@ -56,6 +84,13 @@
|
|
56
84
|
:other: "{0} troedfedd sgwâr"
|
57
85
|
:two: "{0} droedfedd sgwâr"
|
58
86
|
:zero: "{0} troedfedd sgwâr"
|
87
|
+
:area-square-inch:
|
88
|
+
:few: "{0} modfedd sgwâr"
|
89
|
+
:many: "{0} modfedd sgwâr"
|
90
|
+
:one: "{0} modfedd sgwâr"
|
91
|
+
:other: "{0} modfedd sgwâr"
|
92
|
+
:two: "{0} fodfedd sgwâr"
|
93
|
+
:zero: "{0} modfedd sgwâr"
|
59
94
|
:area-square-kilometer:
|
60
95
|
:few: "{0} chilometr sgwâr"
|
61
96
|
:many: "{0} chilometr sgwâr"
|
@@ -77,6 +112,118 @@
|
|
77
112
|
:other: "{0} milltir sgwâr"
|
78
113
|
:two: "{0} filltir sgwâr"
|
79
114
|
:zero: "{0} milltir sgwâr"
|
115
|
+
:area-square-yard:
|
116
|
+
:few: "{0} llath sgwâr"
|
117
|
+
:many: "{0} llath sgwâr"
|
118
|
+
:one: "{0} llath sgwâr"
|
119
|
+
:other: "{0} llath sgwâr"
|
120
|
+
:two: "{0} lath sgwâr"
|
121
|
+
:zero: "{0} llath sgwâr"
|
122
|
+
:concentr-karat:
|
123
|
+
:few: "{0} karat"
|
124
|
+
:many: "{0} karat"
|
125
|
+
:one: "{0} karat"
|
126
|
+
:other: "{0} karat"
|
127
|
+
:two: "{0} karat"
|
128
|
+
:zero: "{0} karat"
|
129
|
+
:consumption-liter-per-100kilometers:
|
130
|
+
:few: "{0} litr wrth y 100 cilometr"
|
131
|
+
:many: "{0} litr wrth y 100 cilometr"
|
132
|
+
:one: "{0} litr wrth y 100 cilometr"
|
133
|
+
:other: "{0} litr wrth y 100 cilometr"
|
134
|
+
:two: "{0} litr wrth y 100 cilometr"
|
135
|
+
:zero: "{0} litr wrth y 100 cilometr"
|
136
|
+
:consumption-liter-per-kilometer:
|
137
|
+
:few: "{0} litr y cilometr"
|
138
|
+
:many: "{0} litr y cilometr"
|
139
|
+
:one: "{0} litr y cilometr"
|
140
|
+
:other: "{0} litr y cilometr"
|
141
|
+
:two: "{0} litr y cilometr"
|
142
|
+
:zero: "{0} litr y cilometr"
|
143
|
+
:consumption-mile-per-gallon:
|
144
|
+
:few: "{0} milltir y galwyn"
|
145
|
+
:many: "{0} milltir y galwyn"
|
146
|
+
:one: "{0} filltir y galwyn"
|
147
|
+
:other: "{0} milltir y galwyn"
|
148
|
+
:two: "{0} filltir y galwyn"
|
149
|
+
:zero: "{0} milltir y galwyn"
|
150
|
+
:digital-bit:
|
151
|
+
:few: "{0} did"
|
152
|
+
:many: "{0} did"
|
153
|
+
:one: "{0} did"
|
154
|
+
:other: "{0} did"
|
155
|
+
:two: "{0} ddid"
|
156
|
+
:zero: "{0} did"
|
157
|
+
:digital-byte:
|
158
|
+
:few: "{0} beit"
|
159
|
+
:many: "{0} beit"
|
160
|
+
:one: "{0} beit"
|
161
|
+
:other: "{0} beit"
|
162
|
+
:two: "{0} feit"
|
163
|
+
:zero: "{0} beit"
|
164
|
+
:digital-gigabit:
|
165
|
+
:few: "{0} gigadid"
|
166
|
+
:many: "{0} gigadid"
|
167
|
+
:one: "{0} gigadid"
|
168
|
+
:other: "{0} gigadid"
|
169
|
+
:two: "{0} gigadid"
|
170
|
+
:zero: "{0} gigadid"
|
171
|
+
:digital-gigabyte:
|
172
|
+
:few: "{0} gigabeit"
|
173
|
+
:many: "{0} gigabeit"
|
174
|
+
:one: "{0} gigabeit"
|
175
|
+
:other: "{0} gigabeit"
|
176
|
+
:two: "{0} gigabeit"
|
177
|
+
:zero: "{0} gigabeit"
|
178
|
+
:digital-kilobit:
|
179
|
+
:few: "{0} cilodid"
|
180
|
+
:many: "{0} cilodid"
|
181
|
+
:one: "{0} cilodid"
|
182
|
+
:other: "{0} cilodid"
|
183
|
+
:two: "{0} cilodid"
|
184
|
+
:zero: "{0} cilodid"
|
185
|
+
:digital-kilobyte:
|
186
|
+
:few: "{0} cilobeit"
|
187
|
+
:many: "{0} cilobeit"
|
188
|
+
:one: "{0} cilobeit"
|
189
|
+
:other: "{0} cilobeit"
|
190
|
+
:two: "{0} gilobeit"
|
191
|
+
:zero: "{0} cilobeit"
|
192
|
+
:digital-megabit:
|
193
|
+
:few: "{0} megadid"
|
194
|
+
:many: "{0} megadid"
|
195
|
+
:one: "{0} megadid"
|
196
|
+
:other: "{0} megadid"
|
197
|
+
:two: "{0} fegadid"
|
198
|
+
:zero: "{0} megadid"
|
199
|
+
:digital-megabyte:
|
200
|
+
:few: "{0} megabeit"
|
201
|
+
:many: "{0} megabeit"
|
202
|
+
:one: "{0} megabeit"
|
203
|
+
:other: "{0} megabeit"
|
204
|
+
:two: "{0} fegabeit"
|
205
|
+
:zero: "{0} megabeit"
|
206
|
+
:digital-terabit:
|
207
|
+
:few: "{0} teradid"
|
208
|
+
:many: "{0} teradid"
|
209
|
+
:one: "{0} teradid"
|
210
|
+
:other: "{0} teradid"
|
211
|
+
:two: "{0} deradid"
|
212
|
+
:zero: "{0} teradid"
|
213
|
+
:digital-terabyte:
|
214
|
+
:few: "{0} terabeit"
|
215
|
+
:many: "{0} terabeit"
|
216
|
+
:one: "{0} terabeit"
|
217
|
+
:other: "{0} terabeit"
|
218
|
+
:two: "{0} derabeit"
|
219
|
+
:zero: "{0} terabeit"
|
220
|
+
:duration-century:
|
221
|
+
:few: "{0} canrif"
|
222
|
+
:many: "{0} canrif"
|
223
|
+
:one: "{0} canrif"
|
224
|
+
:other: "{0} canrif"
|
225
|
+
:two: "{0} ganrif"
|
226
|
+
:zero: "{0} canrif"
|
80
227
|
:duration-day:
|
81
228
|
:few: "{0} diwrnod"
|
82
229
|
:many: "{0} diwrnod"
|
@@ -91,6 +238,13 @@
|
|
91
238
|
:other: "{0} awr"
|
92
239
|
:two: "{0} awr"
|
93
240
|
:zero: "{0} awr"
|
241
|
+
:duration-microsecond:
|
242
|
+
:few: "{0} microeiliadau"
|
243
|
+
:many: "{0} microeiliadau"
|
244
|
+
:one: "{0} microeiliadau"
|
245
|
+
:other: "{0} microeiliadau"
|
246
|
+
:two: "{0} microeiliadau"
|
247
|
+
:zero: "{0} microeiliadau"
|
94
248
|
:duration-millisecond:
|
95
249
|
:few: "{0} milieiliad"
|
96
250
|
:many: "{0} milieiliad"
|
@@ -112,6 +266,13 @@
|
|
112
266
|
:other: "{0} mis"
|
113
267
|
:two: "{0} fis"
|
114
268
|
:zero: "{0} mis"
|
269
|
+
:duration-nanosecond:
|
270
|
+
:few: "{0} nanoeiliadau"
|
271
|
+
:many: "{0} nanoeiliadau"
|
272
|
+
:one: "{0} nanoeiliadau"
|
273
|
+
:other: "{0} nanoeiliadau"
|
274
|
+
:two: "{0} nanoeiliadau"
|
275
|
+
:zero: "{0} nanoeiliadau"
|
115
276
|
:duration-second:
|
116
277
|
:few: "{0} eiliad"
|
117
278
|
:many: "{0} eiliad"
|
@@ -133,6 +294,111 @@
|
|
133
294
|
:other: "{0} mlynedd"
|
134
295
|
:two: "{0} flynedd"
|
135
296
|
:zero: "{0} mlynedd"
|
297
|
+
:electric-ampere:
|
298
|
+
:few: "{0} amper"
|
299
|
+
:many: "{0} amper"
|
300
|
+
:one: "{0} amper"
|
301
|
+
:other: "{0} amper"
|
302
|
+
:two: "{0} amper"
|
303
|
+
:zero: "{0} amper"
|
304
|
+
:electric-milliampere:
|
305
|
+
:few: "{0} miliamper"
|
306
|
+
:many: "{0} miliamper"
|
307
|
+
:one: "{0} miliamper"
|
308
|
+
:other: "{0} miliamper"
|
309
|
+
:two: "{0} filiamper"
|
310
|
+
:zero: "{0} miliamper"
|
311
|
+
:electric-ohm:
|
312
|
+
:few: "{0} ohm"
|
313
|
+
:many: "{0} ohm"
|
314
|
+
:one: "{0} ohm"
|
315
|
+
:other: "{0} ohm"
|
316
|
+
:two: "{0} ohm"
|
317
|
+
:zero: "{0} ohm"
|
318
|
+
:electric-volt:
|
319
|
+
:few: "{0} folt"
|
320
|
+
:many: "{0} folt"
|
321
|
+
:one: "{0} folt"
|
322
|
+
:other: "{0} folt"
|
323
|
+
:two: "{0} folt"
|
324
|
+
:zero: "{0} folt"
|
325
|
+
:energy-calorie:
|
326
|
+
:few: "{0} chalori"
|
327
|
+
:many: "{0} chalori"
|
328
|
+
:one: "{0} calori"
|
329
|
+
:other: "{0} calori"
|
330
|
+
:two: "{0} galori"
|
331
|
+
:zero: "{0} calori"
|
332
|
+
:energy-foodcalorie:
|
333
|
+
:few: "{0} Chalori"
|
334
|
+
:many: "{0} Chalori"
|
335
|
+
:one: "{0} Calori"
|
336
|
+
:other: "{0} Calori"
|
337
|
+
:two: "{0} Galori"
|
338
|
+
:zero: "{0} Calori"
|
339
|
+
:energy-joule:
|
340
|
+
:few: "{0} joule"
|
341
|
+
:many: "{0} joule"
|
342
|
+
:one: "{0} joule"
|
343
|
+
:other: "{0} joule"
|
344
|
+
:two: "{0} joule"
|
345
|
+
:zero: "{0} joule"
|
346
|
+
:energy-kilocalorie:
|
347
|
+
:few: "{0} chilocalori"
|
348
|
+
:many: "{0} chilocalori"
|
349
|
+
:one: "{0} cilocalori"
|
350
|
+
:other: "{0} cilocalori"
|
351
|
+
:two: "{0} gilocalori"
|
352
|
+
:zero: "{0} cilocalori"
|
353
|
+
:energy-kilojoule:
|
354
|
+
:few: "{0} chilojoule"
|
355
|
+
:many: "{0} chilojoule"
|
356
|
+
:one: "{0} cilojoule"
|
357
|
+
:other: "{0} cilojoule"
|
358
|
+
:two: "{0} gilojoule"
|
359
|
+
:zero: "{0} cilojoule"
|
360
|
+
:energy-kilowatt-hour:
|
361
|
+
:few: "{0} chilowat awr"
|
362
|
+
:many: "{0} chilowat awr"
|
363
|
+
:one: "{0} cilowat awr"
|
364
|
+
:other: "{0} cilowat awr"
|
365
|
+
:two: "{0} gilowat awr"
|
366
|
+
:zero: "{0} cilowat awr"
|
367
|
+
:frequency-gigahertz:
|
368
|
+
:few: "{0} gigaherts"
|
369
|
+
:many: "{0} gigaherts"
|
370
|
+
:one: "{0} gigaherts"
|
371
|
+
:other: "{0} gigaherts"
|
372
|
+
:two: "{0} gigaherts"
|
373
|
+
:zero: "{0} gigaherts"
|
374
|
+
:frequency-hertz:
|
375
|
+
:few: "{0} herts"
|
376
|
+
:many: "{0} herts"
|
377
|
+
:one: "{0} herts"
|
378
|
+
:other: "{0} herts"
|
379
|
+
:two: "{0} herts"
|
380
|
+
:zero: "{0} herts"
|
381
|
+
:frequency-kilohertz:
|
382
|
+
:few: "{0} ciloherts"
|
383
|
+
:many: "{0} ciloherts"
|
384
|
+
:one: "{0} ciloherts"
|
385
|
+
:other: "{0} ciloherts"
|
386
|
+
:two: "{0} ciloherts"
|
387
|
+
:zero: "{0} ciloherts"
|
388
|
+
:frequency-megahertz:
|
389
|
+
:few: "{0} megaherts"
|
390
|
+
:many: "{0} megaherts"
|
391
|
+
:one: "{0} megaherts"
|
392
|
+
:other: "{0} megaherts"
|
393
|
+
:two: "{0} fegaherts"
|
394
|
+
:zero: "{0} megaherts"
|
395
|
+
:length-astronomical-unit:
|
396
|
+
:few: "{0} uned seryddol"
|
397
|
+
:many: "{0} uned seryddol"
|
398
|
+
:one: "{0} uned seryddol"
|
399
|
+
:other: "{0} uned seryddol"
|
400
|
+
:two: "{0} uned seryddol"
|
401
|
+
:zero: "{0} uned seryddol"
|
136
402
|
:length-centimeter:
|
137
403
|
:few: "{0} chentimetr"
|
138
404
|
:many: "{0} chentimetr"
|
@@ -140,6 +406,20 @@
|
|
140
406
|
:other: "{0} centimetr"
|
141
407
|
:two: "{0} gentimetr"
|
142
408
|
:zero: "{0} centimetr"
|
409
|
+
:length-decimeter:
|
410
|
+
:few: "{0} decimetr"
|
411
|
+
:many: "{0} decimetr"
|
412
|
+
:one: "{0} decimetr"
|
413
|
+
:other: "{0} decimetr"
|
414
|
+
:two: "{0} decimetr"
|
415
|
+
:zero: "{0} decimetr"
|
416
|
+
:length-fathom:
|
417
|
+
:few: "{0} gwryd"
|
418
|
+
:many: "{0} gwryd"
|
419
|
+
:one: "{0} gwryd"
|
420
|
+
:other: "{0} gwryd"
|
421
|
+
:two: "{0} wryd"
|
422
|
+
:zero: "{0} gwryd"
|
143
423
|
:length-foot:
|
144
424
|
:few: "{0} troedfedd"
|
145
425
|
:many: "{0} throedfedd"
|
@@ -147,6 +427,13 @@
|
|
147
427
|
:other: "{0} troedfedd"
|
148
428
|
:two: "{0} droedfedd"
|
149
429
|
:zero: "{0} troedfedd"
|
430
|
+
:length-furlong:
|
431
|
+
:few: "{0} ystaden"
|
432
|
+
:many: "{0} ystaden"
|
433
|
+
:one: "{0} ystaden"
|
434
|
+
:other: "{0} ystaden"
|
435
|
+
:two: "{0} ystaden"
|
436
|
+
:zero: "{0} ystaden"
|
150
437
|
:length-inch:
|
151
438
|
:few: "{0} modfedd"
|
152
439
|
:many: "{0} modfedd"
|
@@ -175,6 +462,13 @@
|
|
175
462
|
:other: "{0} metr"
|
176
463
|
:two: "{0} fetr"
|
177
464
|
:zero: "{0} metr"
|
465
|
+
:length-micrometer:
|
466
|
+
:few: "{0} micrometr"
|
467
|
+
:many: "{0} micrometr"
|
468
|
+
:one: "{0} micrometr"
|
469
|
+
:other: "{0} micrometr"
|
470
|
+
:two: "{0} ficrometr"
|
471
|
+
:zero: "{0} micrometr"
|
178
472
|
:length-mile:
|
179
473
|
:few: "{0} milltir"
|
180
474
|
:many: "{0} milltir"
|
@@ -182,6 +476,13 @@
|
|
182
476
|
:other: "{0} milltir"
|
183
477
|
:two: "{0} filltir"
|
184
478
|
:zero: "{0} milltir"
|
479
|
+
:length-mile-scandinavian:
|
480
|
+
:few: "{0} milltir Sgandinafia"
|
481
|
+
:many: "{0} milltir Sgandinafia"
|
482
|
+
:one: "{0} filltir Sgandinafia"
|
483
|
+
:other: "{0} milltir Sgandinafia"
|
484
|
+
:two: "{0} filltir Sgandinafia"
|
485
|
+
:zero: "{0} milltir Sgandinafia"
|
185
486
|
:length-millimeter:
|
186
487
|
:few: "{0} milimetr"
|
187
488
|
:many: "{0} milimetr"
|
@@ -189,6 +490,27 @@
|
|
189
490
|
:other: "{0} milimetr"
|
190
491
|
:two: "{0} filimetr"
|
191
492
|
:zero: "{0} milimetr"
|
493
|
+
:length-nanometer:
|
494
|
+
:few: "{0} nanometr"
|
495
|
+
:many: "{0} nanometr"
|
496
|
+
:one: "{0} nanometr"
|
497
|
+
:other: "{0} nanometr"
|
498
|
+
:two: "{0} nanometr"
|
499
|
+
:zero: "{0} nanometr"
|
500
|
+
:length-nautical-mile:
|
501
|
+
:few: "{0} milltir fôr"
|
502
|
+
:many: "{0} milltir fôr"
|
503
|
+
:one: "{0} filltir fôr"
|
504
|
+
:other: "{0} milltir fôr"
|
505
|
+
:two: "{0} filltir fôr"
|
506
|
+
:zero: "{0} milltir fôr"
|
507
|
+
:length-parsec:
|
508
|
+
:few: "{0} pharsec"
|
509
|
+
:many: "{0} pharsec"
|
510
|
+
:one: "{0} parsec"
|
511
|
+
:other: "{0} parsec"
|
512
|
+
:two: "{0} barsec"
|
513
|
+
:zero: "{0} parsec"
|
192
514
|
:length-picometer:
|
193
515
|
:few: "{0} phicometr"
|
194
516
|
:many: "{0} phicometr"
|
@@ -203,6 +525,20 @@
|
|
203
525
|
:other: "{0} llath"
|
204
526
|
:two: "{0} lath"
|
205
527
|
:zero: "{0} llath"
|
528
|
+
:light-lux:
|
529
|
+
:few: "{0} lwcs"
|
530
|
+
:many: "{0} lwcs"
|
531
|
+
:one: "{0} lwcs"
|
532
|
+
:other: "{0} lwcs"
|
533
|
+
:two: "{0} lwcs"
|
534
|
+
:zero: "{0} lwcs"
|
535
|
+
:mass-carat:
|
536
|
+
:few: "{0} charat"
|
537
|
+
:many: "{0} charat"
|
538
|
+
:one: "{0} carat"
|
539
|
+
:other: "{0} carat"
|
540
|
+
:two: "{0} garat"
|
541
|
+
:zero: "{0} carat"
|
206
542
|
:mass-gram:
|
207
543
|
:few: "{0} gram"
|
208
544
|
:many: "{0} gram"
|
@@ -217,6 +553,27 @@
|
|
217
553
|
:other: "{0} cilogram"
|
218
554
|
:two: "{0} gilogram"
|
219
555
|
:zero: "{0} cilogram"
|
556
|
+
:mass-metric-ton:
|
557
|
+
:few: "{0} tunnell fetrig"
|
558
|
+
:many: "{0} tunnell fetrig"
|
559
|
+
:one: "{0} dunnell fetrig"
|
560
|
+
:other: "{0} tunnell fetrig"
|
561
|
+
:two: "{0} dunnell fetrig"
|
562
|
+
:zero: "{0} tunnell fetrig"
|
563
|
+
:mass-microgram:
|
564
|
+
:few: "{0} microgram"
|
565
|
+
:many: "{0} microgram"
|
566
|
+
:one: "{0} microgram"
|
567
|
+
:other: "{0} microgram"
|
568
|
+
:two: "{0} ficrogram"
|
569
|
+
:zero: "{0} microgram"
|
570
|
+
:mass-milligram:
|
571
|
+
:few: "{0} miligram"
|
572
|
+
:many: "{0} miligram"
|
573
|
+
:one: "{0} miligram"
|
574
|
+
:other: "{0} miligram"
|
575
|
+
:two: "{0} filigram"
|
576
|
+
:zero: "{0} miligram"
|
220
577
|
:mass-ounce:
|
221
578
|
:few: "{0} owns"
|
222
579
|
:many: "{0} owns"
|
@@ -224,6 +581,13 @@
|
|
224
581
|
:other: "{0} owns"
|
225
582
|
:two: "{0} owns"
|
226
583
|
:zero: "{0} owns"
|
584
|
+
:mass-ounce-troy:
|
585
|
+
:few: "{0} owns pwysau aur"
|
586
|
+
:many: "{0} owns pwysau aur"
|
587
|
+
:one: "{0} owns pwysau aur"
|
588
|
+
:other: "{0} owns pwysau aur"
|
589
|
+
:two: "{0} owns pwysau aur"
|
590
|
+
:zero: "{0} owns pwysau aur"
|
227
591
|
:mass-pound:
|
228
592
|
:few: "{0} phwys"
|
229
593
|
:many: "{0} phwys"
|
@@ -231,6 +595,27 @@
|
|
231
595
|
:other: "{0} pwys"
|
232
596
|
:two: "{0} bwys"
|
233
597
|
:zero: "{0} pwys"
|
598
|
+
:mass-stone:
|
599
|
+
:few: "{0} stôn"
|
600
|
+
:many: "{0} stôn"
|
601
|
+
:one: "{0} stôn"
|
602
|
+
:other: "{0} stôn"
|
603
|
+
:two: "{0} stôn"
|
604
|
+
:zero: "{0} stôn"
|
605
|
+
:mass-ton:
|
606
|
+
:few: "{0} tunnell"
|
607
|
+
:many: "{0} tunnell"
|
608
|
+
:one: "{0} dunnell"
|
609
|
+
:other: "{0} tunnell"
|
610
|
+
:two: "{0} dunnell"
|
611
|
+
:zero: "{0} tunnell"
|
612
|
+
:power-gigawatt:
|
613
|
+
:few: "{0} gigawat"
|
614
|
+
:many: "{0} gigawat"
|
615
|
+
:one: "{0} gigawat"
|
616
|
+
:other: "{0} gigawat"
|
617
|
+
:two: "{0} gigawat"
|
618
|
+
:zero: "{0} gigawat"
|
234
619
|
:power-horsepower:
|
235
620
|
:few: "{0} marchnerth"
|
236
621
|
:many: "{0} marchnerth"
|
@@ -245,6 +630,20 @@
|
|
245
630
|
:other: "{0} cilowat"
|
246
631
|
:two: "{0} gilowat"
|
247
632
|
:zero: "{0} cilowat"
|
633
|
+
:power-megawatt:
|
634
|
+
:few: "{0} megawat"
|
635
|
+
:many: "{0} megawat"
|
636
|
+
:one: "{0} megawat"
|
637
|
+
:other: "{0} megawat"
|
638
|
+
:two: "{0} fegawat"
|
639
|
+
:zero: "{0} megawat"
|
640
|
+
:power-milliwatt:
|
641
|
+
:few: "{0} miliwat"
|
642
|
+
:many: "{0} miliwat"
|
643
|
+
:one: "{0} miliwat"
|
644
|
+
:other: "{0} miliwat"
|
645
|
+
:two: "{0} filiwat"
|
646
|
+
:zero: "{0} miliwat"
|
248
647
|
:power-watt:
|
249
648
|
:few: "{0} wat"
|
250
649
|
:many: "{0} wat"
|
@@ -273,6 +672,20 @@
|
|
273
672
|
:other: "{0} milibar"
|
274
673
|
:two: "{0} filibar"
|
275
674
|
:zero: "{0} milibar"
|
675
|
+
:pressure-millimeter-of-mercury:
|
676
|
+
:few: "{0} milimetr o fercwri"
|
677
|
+
:many: "{0} milimetr o fercwri"
|
678
|
+
:one: "{0} milimetr o fercwri"
|
679
|
+
:other: "{0} milimetr o fercwri"
|
680
|
+
:two: "{0} filimetr o fercwri"
|
681
|
+
:zero: "{0} milimetr o fercwri"
|
682
|
+
:pressure-pound-per-square-inch:
|
683
|
+
:few: "{0} pwys y fodfedd sgwar"
|
684
|
+
:many: "{0} pwys y fodfedd sgwar"
|
685
|
+
:one: "{0} pwys y fodfedd sgwar"
|
686
|
+
:other: "{0} pwys y fodfedd sgwar"
|
687
|
+
:two: "{0} bwys y fodfedd sgwar"
|
688
|
+
:zero: "{0} pwys y fodfedd sgwar"
|
276
689
|
:speed-kilometer-per-hour:
|
277
690
|
:few: "{0} chilometr yr awr"
|
278
691
|
:many: "{0} chilometr yr awr"
|
@@ -280,6 +693,13 @@
|
|
280
693
|
:other: "{0} cilometr yr awr"
|
281
694
|
:two: "{0} gilometr yr awr"
|
282
695
|
:zero: "{0} cilometr yr awr"
|
696
|
+
:speed-knot:
|
697
|
+
:few: "{0} not"
|
698
|
+
:many: "{0} not"
|
699
|
+
:one: "{0} not"
|
700
|
+
:other: "{0} not"
|
701
|
+
:two: "{0} not"
|
702
|
+
:zero: "{0} not"
|
283
703
|
:speed-meter-per-second:
|
284
704
|
:few: "{0} metr yr eiliad"
|
285
705
|
:many: "{0} metr yr eiliad"
|
@@ -308,6 +728,62 @@
|
|
308
728
|
:other: "{0} gradd Fahrenheit"
|
309
729
|
:two: "{0} radd Fahrenheit"
|
310
730
|
:zero: "{0} gradd Fahrenheit"
|
731
|
+
:temperature-generic:
|
732
|
+
:few: "{0}°"
|
733
|
+
:many: "{0}°"
|
734
|
+
:one: "{0}°"
|
735
|
+
:other: "{0}°"
|
736
|
+
:two: "{0}°"
|
737
|
+
:zero: "{0}°"
|
738
|
+
:temperature-kelvin:
|
739
|
+
:few: "{0} chelfin"
|
740
|
+
:many: "{0} celfin"
|
741
|
+
:one: "{0} celfin"
|
742
|
+
:other: "{0} celfin"
|
743
|
+
:two: "{0} gelfin"
|
744
|
+
:zero: "{0} celfin"
|
745
|
+
:volume-acre-foot:
|
746
|
+
:few: "{0} erw-droedfedd"
|
747
|
+
:many: "{0} erw-droedfedd"
|
748
|
+
:one: "{0} erw-droedfedd"
|
749
|
+
:other: "{0} erw-droedfedd"
|
750
|
+
:two: "{0} erw-droedfedd"
|
751
|
+
:zero: "{0} erw-droedfedd"
|
752
|
+
:volume-bushel:
|
753
|
+
:few: "{0} bwsiel"
|
754
|
+
:many: "{0} bwsiel"
|
755
|
+
:one: "{0} bwsiel"
|
756
|
+
:other: "{0} bwsiel"
|
757
|
+
:two: "{0} bwsiel"
|
758
|
+
:zero: "{0} bwsiel"
|
759
|
+
:volume-centiliter:
|
760
|
+
:few: "{0} chentilitr"
|
761
|
+
:many: "{0} chentilitr"
|
762
|
+
:one: "{0} centilitr"
|
763
|
+
:other: "{0} centilitr"
|
764
|
+
:two: "{0} gentilitr"
|
765
|
+
:zero: "{0} centilitr"
|
766
|
+
:volume-cubic-centimeter:
|
767
|
+
:few: "{0} chentimetr ciwbig"
|
768
|
+
:many: "{0} centimetr ciwbig"
|
769
|
+
:one: "{0} centimetr ciwbig"
|
770
|
+
:other: "{0} chentimetr ciwbig"
|
771
|
+
:two: "{0} gentimetr ciwbig"
|
772
|
+
:zero: "{0} centimetr ciwbig"
|
773
|
+
:volume-cubic-foot:
|
774
|
+
:few: "{0} troedfedd giwbig"
|
775
|
+
:many: "{0} troedfedd giwbig"
|
776
|
+
:one: "{0} droedfedd giwbig"
|
777
|
+
:other: "{0} troedfedd giwbig"
|
778
|
+
:two: "{0} droedfedd giwbig"
|
779
|
+
:zero: "{0} troedfedd giwbig"
|
780
|
+
:volume-cubic-inch:
|
781
|
+
:few: "{0} modfedd giwbig"
|
782
|
+
:many: "{0} modfedd giwbig"
|
783
|
+
:one: "{0} fodfedd giwbig"
|
784
|
+
:other: "{0} modfedd giwbig"
|
785
|
+
:two: "{0} fodfedd giwbig"
|
786
|
+
:zero: "{0} modfedd giwbig"
|
311
787
|
:volume-cubic-kilometer:
|
312
788
|
:few: "{0} chilometr ciwbig"
|
313
789
|
:many: "{0} chilometr ciwbig"
|
@@ -315,6 +791,13 @@
|
|
315
791
|
:other: "{0} cilometr ciwbig"
|
316
792
|
:two: "{0} gilometr ciwbig"
|
317
793
|
:zero: "{0} cilometr ciwbig"
|
794
|
+
:volume-cubic-meter:
|
795
|
+
:few: "{0} metr ciwbig"
|
796
|
+
:many: "{0} metr ciwbig"
|
797
|
+
:one: "{0} metr ciwbig"
|
798
|
+
:other: "{0} metr ciwbig"
|
799
|
+
:two: "{0} fetr ciwbig"
|
800
|
+
:zero: "{0} metr ciwbig"
|
318
801
|
:volume-cubic-mile:
|
319
802
|
:few: "{0} milltir giwbig"
|
320
803
|
:many: "{0} milltir giwbig"
|
@@ -322,6 +805,55 @@
|
|
322
805
|
:other: "{0} milltir giwbig"
|
323
806
|
:two: "{0} filltir giwbig"
|
324
807
|
:zero: "{0} milltir giwbig"
|
808
|
+
:volume-cubic-yard:
|
809
|
+
:few: "{0} llath giwbig"
|
810
|
+
:many: "{0} llath giwbig"
|
811
|
+
:one: "{0} llathen giwbig"
|
812
|
+
:other: "{0} llath giwbig"
|
813
|
+
:two: "{0} lath giwbig"
|
814
|
+
:zero: "{0} llath giwbig"
|
815
|
+
:volume-cup:
|
816
|
+
:few: "{0} cwpanaid"
|
817
|
+
:many: "{0} cwpanaid"
|
818
|
+
:one: "{0} cwpanaid"
|
819
|
+
:other: "{0} cwpanaid"
|
820
|
+
:two: "{0} gwpanaid"
|
821
|
+
:zero: "{0} cwpanaid"
|
822
|
+
:volume-cup-metric:
|
823
|
+
:few: "{0} cwpanaid metrig"
|
824
|
+
:many: "{0} cwpanaid metrig"
|
825
|
+
:one: "{0} cwpanaid metrig"
|
826
|
+
:other: "{0} cwpanaid metrig"
|
827
|
+
:two: "{0} gwpanaid metrig"
|
828
|
+
:zero: "{0} cwpanaid metrig"
|
829
|
+
:volume-deciliter:
|
830
|
+
:few: "{0} decilitr"
|
831
|
+
:many: "{0} decilitr"
|
832
|
+
:one: "{0} decilitr"
|
833
|
+
:other: "{0} decilitr"
|
834
|
+
:two: "{0} decilitr"
|
835
|
+
:zero: "{0} decilitr"
|
836
|
+
:volume-fluid-ounce:
|
837
|
+
:few: "{0} owns hylifol"
|
838
|
+
:many: "{0} owns hylifol"
|
839
|
+
:one: "{0} owns hylifol"
|
840
|
+
:other: "{0} owns hylifol"
|
841
|
+
:two: "{0} owns hylifol"
|
842
|
+
:zero: "{0} owns hylifol"
|
843
|
+
:volume-gallon:
|
844
|
+
:few: "{0} galwyn"
|
845
|
+
:many: "{0} galwyn"
|
846
|
+
:one: "{0} galwyn"
|
847
|
+
:other: "{0} galwyn"
|
848
|
+
:two: "{0} alwyn"
|
849
|
+
:zero: "{0} galwyn"
|
850
|
+
:volume-hectoliter:
|
851
|
+
:few: "{0} hectolitr"
|
852
|
+
:many: "{0} hectolitr"
|
853
|
+
:one: "{0} hectolitr"
|
854
|
+
:other: "{0} hectolitr"
|
855
|
+
:two: "{0} hectolitr"
|
856
|
+
:zero: "{0} hectolitr"
|
325
857
|
:volume-liter:
|
326
858
|
:few: "{0} litr"
|
327
859
|
:many: "{0} litr"
|
@@ -329,6 +861,55 @@
|
|
329
861
|
:other: "{0} litr"
|
330
862
|
:two: "{0} litr"
|
331
863
|
:zero: "{0} litr"
|
864
|
+
:volume-megaliter:
|
865
|
+
:few: "{0} megalitr"
|
866
|
+
:many: "{0} megalitr"
|
867
|
+
:one: "{0} megalitr"
|
868
|
+
:other: "{0} megalitr"
|
869
|
+
:two: "{0} fegalitr"
|
870
|
+
:zero: "{0} megalitr"
|
871
|
+
:volume-milliliter:
|
872
|
+
:few: "{0} mililitr"
|
873
|
+
:many: "{0} mililitr"
|
874
|
+
:one: "{0} mililitr"
|
875
|
+
:other: "{0} mililitr"
|
876
|
+
:two: "{0} mililitr"
|
877
|
+
:zero: "{0} mililitr"
|
878
|
+
:volume-pint:
|
879
|
+
:few: "{0} pheint"
|
880
|
+
:many: "{0} pheint"
|
881
|
+
:one: "{0} peint"
|
882
|
+
:other: "{0} peint"
|
883
|
+
:two: "{0} beint"
|
884
|
+
:zero: "{0} peint"
|
885
|
+
:volume-pint-metric:
|
886
|
+
:few: "{0} peint metrig"
|
887
|
+
:many: "{0} peint metrig"
|
888
|
+
:one: "{0} peint metrig"
|
889
|
+
:other: "{0} peint metrig"
|
890
|
+
:two: "{0} peint metrig"
|
891
|
+
:zero: "{0} peint metrig"
|
892
|
+
:volume-quart:
|
893
|
+
:few: "{0} chwart"
|
894
|
+
:many: "{0} chwart"
|
895
|
+
:one: "{0} chwart"
|
896
|
+
:other: "{0} chwart"
|
897
|
+
:two: "{0} gwart"
|
898
|
+
:zero: "{0} chwart"
|
899
|
+
:volume-tablespoon:
|
900
|
+
:few: "{0} llond llwy fwrdd"
|
901
|
+
:many: "{0} llond llwy fwrdd"
|
902
|
+
:one: "{0} llond llwy fwrdd"
|
903
|
+
:other: "{0} llond llwy fwrdd"
|
904
|
+
:two: "{0} lond llwy fwrdd"
|
905
|
+
:zero: "{0} llond llwy fwrdd"
|
906
|
+
:volume-teaspoon:
|
907
|
+
:few: "{0} llond llwy de"
|
908
|
+
:many: "{0} llond llwy de"
|
909
|
+
:one: "{0} llond llwy de"
|
910
|
+
:other: "{0} llond llwy de"
|
911
|
+
:two: "{0} lond llwy de"
|
912
|
+
:zero: "{0} llond llwy de"
|
332
913
|
:narrow:
|
333
914
|
:acceleration-g-force:
|
334
915
|
:few: "{0}G"
|
@@ -358,6 +939,13 @@
|
|
358
939
|
:other: "{0}°"
|
359
940
|
:two: "{0}°"
|
360
941
|
:zero: "{0}°"
|
942
|
+
:angle-radian:
|
943
|
+
:few: "{0}rad"
|
944
|
+
:many: "{0}rad"
|
945
|
+
:one: "{0}rad"
|
946
|
+
:other: "{0}rad"
|
947
|
+
:two: "{0}rad"
|
948
|
+
:zero: "{0}rad"
|
361
949
|
:area-acre:
|
362
950
|
:few: "{0}erw"
|
363
951
|
:many: "{0}erw"
|
@@ -372,6 +960,13 @@
|
|
372
960
|
:other: "{0}ha"
|
373
961
|
:two: "{0}ha"
|
374
962
|
:zero: "{0}ha"
|
963
|
+
:area-square-centimeter:
|
964
|
+
:few: "{0}cm²"
|
965
|
+
:many: "{0}cm²"
|
966
|
+
:one: "{0}cm²"
|
967
|
+
:other: "{0}cm²"
|
968
|
+
:two: "{0}cm²"
|
969
|
+
:zero: "{0}cm²"
|
375
970
|
:area-square-foot:
|
376
971
|
:few: "{0}ft²"
|
377
972
|
:many: "{0}ft²"
|
@@ -400,7 +995,76 @@
|
|
400
995
|
:other: "{0}mi²"
|
401
996
|
:two: "{0}mi²"
|
402
997
|
:zero: "{0}mi²"
|
403
|
-
:consumption-liter-per-
|
998
|
+
:consumption-liter-per-100kilometers:
|
999
|
+
:few: "{0}L/100km"
|
1000
|
+
:many: "{0}L/100km"
|
1001
|
+
:one: "{0}L/100km"
|
1002
|
+
:other: "{0}L/100km"
|
1003
|
+
:two: "{0}L/100km"
|
1004
|
+
:zero: "{0}L/100km"
|
1005
|
+
:consumption-liter-per-kilometer:
|
1006
|
+
:few: "{0}L/km"
|
1007
|
+
:many: "{0}L/km"
|
1008
|
+
:one: "{0}L/km"
|
1009
|
+
:other: "{0}L/km"
|
1010
|
+
:two: "{0}L/km"
|
1011
|
+
:zero: "{0}L/km"
|
1012
|
+
:digital-bit:
|
1013
|
+
:few: "{0}did"
|
1014
|
+
:many: "{0}did"
|
1015
|
+
:one: "{0}did"
|
1016
|
+
:other: "{0}did"
|
1017
|
+
:two: "{0}ddid"
|
1018
|
+
:zero: "{0}did"
|
1019
|
+
:digital-byte:
|
1020
|
+
:few: "{0}beit"
|
1021
|
+
:many: "{0}beit"
|
1022
|
+
:one: "{0}beit"
|
1023
|
+
:other: "{0}beit"
|
1024
|
+
:two: "{0}feit"
|
1025
|
+
:zero: "{0}beit"
|
1026
|
+
:digital-gigabit:
|
1027
|
+
:few: "{0}Gb"
|
1028
|
+
:many: "{0}Gb"
|
1029
|
+
:one: "{0}Gb"
|
1030
|
+
:other: "{0}Gb"
|
1031
|
+
:two: "{0}Gb"
|
1032
|
+
:zero: "{0}Gb"
|
1033
|
+
:digital-gigabyte:
|
1034
|
+
:few: "{0}GB"
|
1035
|
+
:many: "{0}GB"
|
1036
|
+
:one: "{0}GB"
|
1037
|
+
:other: "{0}GB"
|
1038
|
+
:two: "{0}GB"
|
1039
|
+
:zero: "{0}GB"
|
1040
|
+
:digital-kilobyte:
|
1041
|
+
:few: "{0}kB"
|
1042
|
+
:many: "{0}kB"
|
1043
|
+
:one: "{0}kB"
|
1044
|
+
:other: "{0}kB"
|
1045
|
+
:two: "{0}kB"
|
1046
|
+
:zero: "{0}kB"
|
1047
|
+
:digital-megabyte:
|
1048
|
+
:few: "{0}MB"
|
1049
|
+
:many: "{0}MB"
|
1050
|
+
:one: "{0}MB"
|
1051
|
+
:other: "{0}MB"
|
1052
|
+
:two: "{0}MB"
|
1053
|
+
:zero: "{0}MB"
|
1054
|
+
:digital-terabyte:
|
1055
|
+
:few: "{0}TB"
|
1056
|
+
:many: "{0}TB"
|
1057
|
+
:one: "{0}TB"
|
1058
|
+
:other: "{0}TB"
|
1059
|
+
:two: "{0}TB"
|
1060
|
+
:zero: "{0}TB"
|
1061
|
+
:duration-century:
|
1062
|
+
:few: "{0}c"
|
1063
|
+
:many: "{0}c"
|
1064
|
+
:one: "{0}c"
|
1065
|
+
:other: "{0}c"
|
1066
|
+
:two: "{0}c"
|
1067
|
+
:zero: "{0}c"
|
404
1068
|
:duration-day:
|
405
1069
|
:few: "{0}d"
|
406
1070
|
:many: "{0}d"
|
@@ -423,12 +1087,12 @@
|
|
423
1087
|
:two: "{0}ms"
|
424
1088
|
:zero: "{0}ms"
|
425
1089
|
:duration-minute:
|
426
|
-
:few: "{0}
|
427
|
-
:many: "{0}
|
428
|
-
:one: "{0}
|
429
|
-
:other: "{0}
|
430
|
-
:two: "{0}
|
431
|
-
:zero: "{0}
|
1090
|
+
:few: "{0}mun"
|
1091
|
+
:many: "{0}mun"
|
1092
|
+
:one: "{0}mun"
|
1093
|
+
:other: "{0}mun"
|
1094
|
+
:two: "{0}mun"
|
1095
|
+
:zero: "{0}mun"
|
432
1096
|
:duration-month:
|
433
1097
|
:few: "{0}m"
|
434
1098
|
:many: "{0}m"
|
@@ -457,6 +1121,104 @@
|
|
457
1121
|
:other: "{0}bl"
|
458
1122
|
:two: "{0}bl"
|
459
1123
|
:zero: "{0}bl"
|
1124
|
+
:electric-ampere:
|
1125
|
+
:few: "{0}A"
|
1126
|
+
:many: "{0}A"
|
1127
|
+
:one: "{0}A"
|
1128
|
+
:other: "{0}A"
|
1129
|
+
:two: "{0}A"
|
1130
|
+
:zero: "{0}A"
|
1131
|
+
:electric-milliampere:
|
1132
|
+
:few: "{0}mA"
|
1133
|
+
:many: "{0}mA"
|
1134
|
+
:one: "{0}mA"
|
1135
|
+
:other: "{0}mA"
|
1136
|
+
:two: "{0}mA"
|
1137
|
+
:zero: "{0}mA"
|
1138
|
+
:electric-ohm:
|
1139
|
+
:few: "{0}Ω"
|
1140
|
+
:many: "{0}Ω"
|
1141
|
+
:one: "{0}Ω"
|
1142
|
+
:other: "{0}Ω"
|
1143
|
+
:two: "{0}Ω"
|
1144
|
+
:zero: "{0}Ω"
|
1145
|
+
:electric-volt:
|
1146
|
+
:few: "{0}V"
|
1147
|
+
:many: "{0}V"
|
1148
|
+
:one: "{0}V"
|
1149
|
+
:other: "{0}V"
|
1150
|
+
:two: "{0}V"
|
1151
|
+
:zero: "{0}V"
|
1152
|
+
:energy-calorie:
|
1153
|
+
:few: "{0}cal"
|
1154
|
+
:many: "{0}cal"
|
1155
|
+
:one: "{0}cal"
|
1156
|
+
:other: "{0}cal"
|
1157
|
+
:two: "{0}cal"
|
1158
|
+
:zero: "{0}cal"
|
1159
|
+
:energy-foodcalorie:
|
1160
|
+
:few: "{0}Cal"
|
1161
|
+
:many: "{0}Cal"
|
1162
|
+
:one: "{0}Cal"
|
1163
|
+
:other: "{0}Cal"
|
1164
|
+
:two: "{0}Cal"
|
1165
|
+
:zero: "{0}Cal"
|
1166
|
+
:energy-joule:
|
1167
|
+
:few: "{0}J"
|
1168
|
+
:many: "{0}J"
|
1169
|
+
:one: "{0}J"
|
1170
|
+
:other: "{0}J"
|
1171
|
+
:two: "{0}J"
|
1172
|
+
:zero: "{0}J"
|
1173
|
+
:energy-kilocalorie:
|
1174
|
+
:few: "{0}kcal"
|
1175
|
+
:many: "{0}kcal"
|
1176
|
+
:one: "{0}kcal"
|
1177
|
+
:other: "{0}kcal"
|
1178
|
+
:two: "{0}kcal"
|
1179
|
+
:zero: "{0}kcal"
|
1180
|
+
:energy-kilojoule:
|
1181
|
+
:few: "{0}kj"
|
1182
|
+
:many: "{0}kj"
|
1183
|
+
:one: "{0}kj"
|
1184
|
+
:other: "{0}kj"
|
1185
|
+
:two: "{0}kj"
|
1186
|
+
:zero: "{0}kj"
|
1187
|
+
:frequency-gigahertz:
|
1188
|
+
:few: "{0}GHz"
|
1189
|
+
:many: "{0}GHz"
|
1190
|
+
:one: "{0}GHz"
|
1191
|
+
:other: "{0}GHz"
|
1192
|
+
:two: "{0}GHz"
|
1193
|
+
:zero: "{0}GHz"
|
1194
|
+
:frequency-hertz:
|
1195
|
+
:few: "{0}Hz"
|
1196
|
+
:many: "{0}Hz"
|
1197
|
+
:one: "{0}Hz"
|
1198
|
+
:other: "{0}Hz"
|
1199
|
+
:two: "{0}Hz"
|
1200
|
+
:zero: "{0}Hz"
|
1201
|
+
:frequency-kilohertz:
|
1202
|
+
:few: "{0}kHz"
|
1203
|
+
:many: "{0}kHz"
|
1204
|
+
:one: "{0}kHz"
|
1205
|
+
:other: "{0}kHz"
|
1206
|
+
:two: "{0}kHz"
|
1207
|
+
:zero: "{0}kHz"
|
1208
|
+
:frequency-megahertz:
|
1209
|
+
:few: "{0}MHz"
|
1210
|
+
:many: "{0}MHz"
|
1211
|
+
:one: "{0}MHz"
|
1212
|
+
:other: "{0}MHz"
|
1213
|
+
:two: "{0}MHz"
|
1214
|
+
:zero: "{0}MHz"
|
1215
|
+
:length-astronomical-unit:
|
1216
|
+
:few: "{0}u.s."
|
1217
|
+
:many: "{0}u.s."
|
1218
|
+
:one: "{0}u.s."
|
1219
|
+
:other: "{0}u.s."
|
1220
|
+
:two: "{0}u.s."
|
1221
|
+
:zero: "{0}u.s."
|
460
1222
|
:length-centimeter:
|
461
1223
|
:few: "{0}cm"
|
462
1224
|
:many: "{0}cm"
|
@@ -464,6 +1226,20 @@
|
|
464
1226
|
:other: "{0}cm"
|
465
1227
|
:two: "{0}cm"
|
466
1228
|
:zero: "{0}cm"
|
1229
|
+
:length-decimeter:
|
1230
|
+
:few: "{0}dm"
|
1231
|
+
:many: "{0}dm"
|
1232
|
+
:one: "{0}dm"
|
1233
|
+
:other: "{0}dm"
|
1234
|
+
:two: "{0}dm"
|
1235
|
+
:zero: "{0}dm"
|
1236
|
+
:length-fathom:
|
1237
|
+
:few: "{0}fm"
|
1238
|
+
:many: "{0}fm"
|
1239
|
+
:one: "{0}fm"
|
1240
|
+
:other: "{0}fm"
|
1241
|
+
:two: "{0}fm"
|
1242
|
+
:zero: "{0}fm"
|
467
1243
|
:length-foot:
|
468
1244
|
:few: "{0}′"
|
469
1245
|
:many: "{0}′"
|
@@ -499,6 +1275,13 @@
|
|
499
1275
|
:other: "{0}m"
|
500
1276
|
:two: "{0}m"
|
501
1277
|
:zero: "{0}m"
|
1278
|
+
:length-micrometer:
|
1279
|
+
:few: "{0}µm"
|
1280
|
+
:many: "{0}µm"
|
1281
|
+
:one: "{0}µm"
|
1282
|
+
:other: "{0}µm"
|
1283
|
+
:two: "{0}µm"
|
1284
|
+
:zero: "{0}µm"
|
502
1285
|
:length-mile:
|
503
1286
|
:few: "{0}mi"
|
504
1287
|
:many: "{0}mi"
|
@@ -513,6 +1296,21 @@
|
|
513
1296
|
:other: "{0}mm"
|
514
1297
|
:two: "{0}mm"
|
515
1298
|
:zero: "{0}mm"
|
1299
|
+
:length-nanometer:
|
1300
|
+
:few: "{0}nm"
|
1301
|
+
:many: "{0}nm"
|
1302
|
+
:one: "{0}nm"
|
1303
|
+
:other: "{0}nm"
|
1304
|
+
:two: "{0}nm"
|
1305
|
+
:zero: "{0}nm"
|
1306
|
+
:length-nautical-mile: {}
|
1307
|
+
:length-parsec:
|
1308
|
+
:few: "{0}pc"
|
1309
|
+
:many: "{0}pc"
|
1310
|
+
:one: "{0}pc"
|
1311
|
+
:other: "{0}pc"
|
1312
|
+
:two: "{0}pc"
|
1313
|
+
:zero: "{0}pc"
|
516
1314
|
:length-picometer:
|
517
1315
|
:few: "{0}pm"
|
518
1316
|
:many: "{0}pm"
|
@@ -527,6 +1325,20 @@
|
|
527
1325
|
:other: "{0}llath"
|
528
1326
|
:two: "{0}lath"
|
529
1327
|
:zero: "{0}llath"
|
1328
|
+
:light-lux:
|
1329
|
+
:few: "{0}lx"
|
1330
|
+
:many: "{0}lx"
|
1331
|
+
:one: "{0}lx"
|
1332
|
+
:other: "{0}lx"
|
1333
|
+
:two: "{0}lx"
|
1334
|
+
:zero: "{0}lx"
|
1335
|
+
:mass-carat:
|
1336
|
+
:few: "{0}CD"
|
1337
|
+
:many: "{0}CD"
|
1338
|
+
:one: "{0}CD"
|
1339
|
+
:other: "{0}CD"
|
1340
|
+
:two: "{0}CD"
|
1341
|
+
:zero: "{0}CD"
|
530
1342
|
:mass-gram:
|
531
1343
|
:few: "{0}g"
|
532
1344
|
:many: "{0}g"
|
@@ -541,6 +1353,27 @@
|
|
541
1353
|
:other: "{0}kg"
|
542
1354
|
:two: "{0}kg"
|
543
1355
|
:zero: "{0}kg"
|
1356
|
+
:mass-metric-ton:
|
1357
|
+
:few: "{0}t"
|
1358
|
+
:many: "{0}t"
|
1359
|
+
:one: "{0}t"
|
1360
|
+
:other: "{0}t"
|
1361
|
+
:two: "{0}t"
|
1362
|
+
:zero: "{0}t"
|
1363
|
+
:mass-microgram:
|
1364
|
+
:few: "{0}µg"
|
1365
|
+
:many: "{0}µg"
|
1366
|
+
:one: "{0}µg"
|
1367
|
+
:other: "{0}µg"
|
1368
|
+
:two: "{0}µg"
|
1369
|
+
:zero: "{0}µg"
|
1370
|
+
:mass-milligram:
|
1371
|
+
:few: "{0}mg"
|
1372
|
+
:many: "{0}mg"
|
1373
|
+
:one: "{0}mg"
|
1374
|
+
:other: "{0}mg"
|
1375
|
+
:two: "{0}mg"
|
1376
|
+
:zero: "{0}mg"
|
544
1377
|
:mass-ounce:
|
545
1378
|
:few: "{0}owns"
|
546
1379
|
:many: "{0}owns"
|
@@ -555,6 +1388,20 @@
|
|
555
1388
|
:other: "{0}pwys"
|
556
1389
|
:two: "{0}bwys"
|
557
1390
|
:zero: "{0}pwys"
|
1391
|
+
:mass-stone:
|
1392
|
+
:few: "{0}st"
|
1393
|
+
:many: "{0}st"
|
1394
|
+
:one: "{0}st"
|
1395
|
+
:other: "{0}st"
|
1396
|
+
:two: "{0}st"
|
1397
|
+
:zero: "{0}st"
|
1398
|
+
:power-gigawatt:
|
1399
|
+
:few: "{0}GW"
|
1400
|
+
:many: "{0}GW"
|
1401
|
+
:one: "{0}GW"
|
1402
|
+
:other: "{0}GW"
|
1403
|
+
:two: "{0}GW"
|
1404
|
+
:zero: "{0}GW"
|
558
1405
|
:power-horsepower:
|
559
1406
|
:few: "{0}hp"
|
560
1407
|
:many: "{0}hp"
|
@@ -569,6 +1416,20 @@
|
|
569
1416
|
:other: "{0}kW"
|
570
1417
|
:two: "{0}kW"
|
571
1418
|
:zero: "{0}kW"
|
1419
|
+
:power-megawatt:
|
1420
|
+
:few: "{0}MW"
|
1421
|
+
:many: "{0}MW"
|
1422
|
+
:one: "{0}MW"
|
1423
|
+
:other: "{0}MW"
|
1424
|
+
:two: "{0}MW"
|
1425
|
+
:zero: "{0}MW"
|
1426
|
+
:power-milliwatt:
|
1427
|
+
:few: "{0}mW"
|
1428
|
+
:many: "{0}mW"
|
1429
|
+
:one: "{0}mW"
|
1430
|
+
:other: "{0}mW"
|
1431
|
+
:two: "{0}mW"
|
1432
|
+
:zero: "{0}mW"
|
572
1433
|
:power-watt:
|
573
1434
|
:few: "{0}W"
|
574
1435
|
:many: "{0}W"
|
@@ -604,7 +1465,13 @@
|
|
604
1465
|
:other: "{0}mm Hg"
|
605
1466
|
:two: "{0}mm Hg"
|
606
1467
|
:zero: "{0}mm Hg"
|
607
|
-
:pressure-pound-per-square-inch:
|
1468
|
+
:pressure-pound-per-square-inch:
|
1469
|
+
:few: "{0}psi"
|
1470
|
+
:many: "{0}psi"
|
1471
|
+
:one: "{0}psi"
|
1472
|
+
:other: "{0}psi"
|
1473
|
+
:two: "{0}psi"
|
1474
|
+
:zero: "{0}psi"
|
608
1475
|
:speed-kilometer-per-hour:
|
609
1476
|
:few: "{0}km/h"
|
610
1477
|
:many: "{0}km/h"
|
@@ -612,6 +1479,13 @@
|
|
612
1479
|
:other: "{0}km/h"
|
613
1480
|
:two: "{0}km/h"
|
614
1481
|
:zero: "{0}km/h"
|
1482
|
+
:speed-knot:
|
1483
|
+
:few: "{0}not"
|
1484
|
+
:many: "{0}not"
|
1485
|
+
:one: "{0}not"
|
1486
|
+
:other: "{0}not"
|
1487
|
+
:two: "{0}not"
|
1488
|
+
:zero: "{0}not"
|
615
1489
|
:speed-meter-per-second:
|
616
1490
|
:few: "{0}m/s"
|
617
1491
|
:many: "{0}m/s"
|
@@ -640,7 +1514,34 @@
|
|
640
1514
|
:other: "{0}°F"
|
641
1515
|
:two: "{0}°F"
|
642
1516
|
:zero: "{0}°F"
|
643
|
-
:temperature-
|
1517
|
+
:temperature-generic:
|
1518
|
+
:few: "{0}°"
|
1519
|
+
:many: "{0}°"
|
1520
|
+
:one: "{0}°"
|
1521
|
+
:other: "{0}°"
|
1522
|
+
:two: "{0}°"
|
1523
|
+
:zero: "{0}°"
|
1524
|
+
:temperature-kelvin:
|
1525
|
+
:few: "{0}K"
|
1526
|
+
:many: "{0}K"
|
1527
|
+
:one: "{0}K"
|
1528
|
+
:other: "{0}K"
|
1529
|
+
:two: "{0}K"
|
1530
|
+
:zero: "{0}K"
|
1531
|
+
:volume-centiliter:
|
1532
|
+
:few: "{0}cL"
|
1533
|
+
:many: "{0}cL"
|
1534
|
+
:one: "{0}cL"
|
1535
|
+
:other: "{0}cL"
|
1536
|
+
:two: "{0}cL"
|
1537
|
+
:zero: "{0}cL"
|
1538
|
+
:volume-cubic-centimeter:
|
1539
|
+
:few: "{0}cm³"
|
1540
|
+
:many: "{0}cm³"
|
1541
|
+
:one: "{0}cm³"
|
1542
|
+
:other: "{0}cm³"
|
1543
|
+
:two: "{0}cm³"
|
1544
|
+
:zero: "{0}cm³"
|
644
1545
|
:volume-cubic-kilometer:
|
645
1546
|
:few: "{0}km³"
|
646
1547
|
:many: "{0}km³"
|
@@ -648,6 +1549,13 @@
|
|
648
1549
|
:other: "{0}km³"
|
649
1550
|
:two: "{0}km³"
|
650
1551
|
:zero: "{0}km³"
|
1552
|
+
:volume-cubic-meter:
|
1553
|
+
:few: "{0}m³"
|
1554
|
+
:many: "{0}m³"
|
1555
|
+
:one: "{0}m³"
|
1556
|
+
:other: "{0}m³"
|
1557
|
+
:two: "{0}m³"
|
1558
|
+
:zero: "{0}m³"
|
651
1559
|
:volume-cubic-mile:
|
652
1560
|
:few: "{0}mi³"
|
653
1561
|
:many: "{0}mi³"
|
@@ -655,13 +1563,55 @@
|
|
655
1563
|
:other: "{0}mi³"
|
656
1564
|
:two: "{0}mi³"
|
657
1565
|
:zero: "{0}mi³"
|
1566
|
+
:volume-deciliter:
|
1567
|
+
:few: "{0}dL"
|
1568
|
+
:many: "{0}dL"
|
1569
|
+
:one: "{0}dL"
|
1570
|
+
:other: "{0}dL"
|
1571
|
+
:two: "{0}dL"
|
1572
|
+
:zero: "{0}dL"
|
1573
|
+
:volume-gallon:
|
1574
|
+
:few: "{0}gal"
|
1575
|
+
:many: "{0}gal"
|
1576
|
+
:one: "{0}gal"
|
1577
|
+
:other: "{0}gal"
|
1578
|
+
:two: "{0}gal"
|
1579
|
+
:zero: "{0}gal"
|
1580
|
+
:volume-hectoliter:
|
1581
|
+
:few: "{0}hL"
|
1582
|
+
:many: "{0}hL"
|
1583
|
+
:one: "{0}hL"
|
1584
|
+
:other: "{0}hL"
|
1585
|
+
:two: "{0}hL"
|
1586
|
+
:zero: "{0}hL"
|
658
1587
|
:volume-liter:
|
659
|
-
:few: "{0}
|
660
|
-
:many: "{0}
|
661
|
-
:one: "{0}
|
662
|
-
:other: "{0}
|
663
|
-
:two: "{0}
|
664
|
-
:zero: "{0}
|
1588
|
+
:few: "{0} L"
|
1589
|
+
:many: "{0} L"
|
1590
|
+
:one: "{0} L"
|
1591
|
+
:other: "{0} L"
|
1592
|
+
:two: "{0} L"
|
1593
|
+
:zero: "{0} L"
|
1594
|
+
:volume-megaliter:
|
1595
|
+
:few: "{0}ML"
|
1596
|
+
:many: "{0}ML"
|
1597
|
+
:one: "{0}ML"
|
1598
|
+
:other: "{0}ML"
|
1599
|
+
:two: "{0}ML"
|
1600
|
+
:zero: "{0}ML"
|
1601
|
+
:volume-milliliter:
|
1602
|
+
:few: "{0}mL"
|
1603
|
+
:many: "{0}mL"
|
1604
|
+
:one: "{0}mL"
|
1605
|
+
:other: "{0}mL"
|
1606
|
+
:two: "{0}mL"
|
1607
|
+
:zero: "{0}mL"
|
1608
|
+
:volume-pint:
|
1609
|
+
:few: "{0}pt"
|
1610
|
+
:many: "{0}pt"
|
1611
|
+
:one: "{0}pt"
|
1612
|
+
:other: "{0}pt"
|
1613
|
+
:two: "{0}pt"
|
1614
|
+
:zero: "{0}pt"
|
665
1615
|
:short:
|
666
1616
|
:acceleration-g-force:
|
667
1617
|
:few: "{0} G"
|
@@ -671,7 +1621,12 @@
|
|
671
1621
|
:two: "{0} G"
|
672
1622
|
:zero: "{0} G"
|
673
1623
|
:acceleration-meter-per-second-squared:
|
674
|
-
:
|
1624
|
+
:few: "{0} m/eil²"
|
1625
|
+
:many: "{0} m/eil²"
|
1626
|
+
:one: "{0} m/eil²"
|
1627
|
+
:other: "{0} m/eil²"
|
1628
|
+
:two: "{0} m/eil²"
|
1629
|
+
:zero: "{0} m/eil²"
|
675
1630
|
:angle-arc-minute:
|
676
1631
|
:few: "{0}′"
|
677
1632
|
:many: "{0}′"
|
@@ -694,7 +1649,19 @@
|
|
694
1649
|
:two: "{0}°"
|
695
1650
|
:zero: "{0}°"
|
696
1651
|
:angle-radian:
|
1652
|
+
:few: "{0} rad"
|
1653
|
+
:many: "{0} rad"
|
1654
|
+
:one: "{0} rad"
|
697
1655
|
:other: "{0} rad"
|
1656
|
+
:two: "{0} rad"
|
1657
|
+
:zero: "{0} rad"
|
1658
|
+
:angle-revolution:
|
1659
|
+
:few: "{0} chylchdro"
|
1660
|
+
:many: "{0} cylchdro"
|
1661
|
+
:one: "{0} cylchdro"
|
1662
|
+
:other: "{0} cylchdro"
|
1663
|
+
:two: "{0} gylchdro"
|
1664
|
+
:zero: "{0} cylchdro"
|
698
1665
|
:area-acre:
|
699
1666
|
:few: "{0} erw"
|
700
1667
|
:many: "{0} erw"
|
@@ -710,16 +1677,26 @@
|
|
710
1677
|
:two: "{0} ha"
|
711
1678
|
:zero: "{0} ha"
|
712
1679
|
:area-square-centimeter:
|
1680
|
+
:few: "{0} cm²"
|
1681
|
+
:many: "{0} cm²"
|
1682
|
+
:one: "{0} cm²"
|
713
1683
|
:other: "{0} cm²"
|
1684
|
+
:two: "{0} cm²"
|
1685
|
+
:zero: "{0} cm²"
|
714
1686
|
:area-square-foot:
|
715
|
-
:few: "{0}
|
716
|
-
:many: "{0}
|
717
|
-
:one: "{0}
|
718
|
-
:other: "{0}
|
719
|
-
:two: "{0}
|
720
|
-
:zero: "{0}
|
1687
|
+
:few: "{0} tr²"
|
1688
|
+
:many: "{0} tr²"
|
1689
|
+
:one: "{0} tr²"
|
1690
|
+
:other: "{0} tr²"
|
1691
|
+
:two: "{0} tr²"
|
1692
|
+
:zero: "{0} tr²"
|
721
1693
|
:area-square-inch:
|
722
|
-
:
|
1694
|
+
:few: "{0} mod²"
|
1695
|
+
:many: "{0} mod²"
|
1696
|
+
:one: "{0} mod²"
|
1697
|
+
:other: "{0} mod²"
|
1698
|
+
:two: "{0} mod²"
|
1699
|
+
:zero: "{0} mod²"
|
723
1700
|
:area-square-kilometer:
|
724
1701
|
:few: "{0} km²"
|
725
1702
|
:many: "{0} km²"
|
@@ -742,7 +1719,32 @@
|
|
742
1719
|
:two: "{0} mi²"
|
743
1720
|
:zero: "{0} mi²"
|
744
1721
|
:area-square-yard:
|
745
|
-
:
|
1722
|
+
:few: "{0} llath²"
|
1723
|
+
:many: "{0} llath²"
|
1724
|
+
:one: "{0} llath²"
|
1725
|
+
:other: "{0} llath²"
|
1726
|
+
:two: "{0} llath²"
|
1727
|
+
:zero: "{0} llath²"
|
1728
|
+
:concentr-karat:
|
1729
|
+
:few: "{0} kt"
|
1730
|
+
:many: "{0} kt"
|
1731
|
+
:one: "{0} kt"
|
1732
|
+
:other: "{0} kt"
|
1733
|
+
:two: "{0} kt"
|
1734
|
+
:zero: "{0} kt"
|
1735
|
+
:concentr-milligram-per-deciliter:
|
1736
|
+
:other: "{0} mg/dL"
|
1737
|
+
:concentr-millimole-per-liter:
|
1738
|
+
:other: "{0} mmol/L"
|
1739
|
+
:concentr-part-per-million:
|
1740
|
+
:other: "{0} ppm"
|
1741
|
+
:consumption-liter-per-100kilometers:
|
1742
|
+
:few: "{0} L/100km"
|
1743
|
+
:many: "{0} L/100km"
|
1744
|
+
:one: "{0} L/100km"
|
1745
|
+
:other: "{0} L/100km"
|
1746
|
+
:two: "{0} L/100km"
|
1747
|
+
:zero: "{0} L/100km"
|
746
1748
|
:consumption-liter-per-kilometer:
|
747
1749
|
:few: "{0} L/km"
|
748
1750
|
:many: "{0} L/km"
|
@@ -751,11 +1753,28 @@
|
|
751
1753
|
:two: "{0} L/km"
|
752
1754
|
:zero: "{0} L/km"
|
753
1755
|
:consumption-mile-per-gallon:
|
1756
|
+
:few: "{0} mpg"
|
1757
|
+
:many: "{0} mpg"
|
1758
|
+
:one: "{0} mpg"
|
754
1759
|
:other: "{0} mpg"
|
1760
|
+
:two: "{0} mpg"
|
1761
|
+
:zero: "{0} mpg"
|
1762
|
+
:consumption-mile-per-gallon-imperial:
|
1763
|
+
:other: "{0} mpg Imp."
|
755
1764
|
:digital-bit:
|
756
|
-
:
|
1765
|
+
:few: "{0} did"
|
1766
|
+
:many: "{0} did"
|
1767
|
+
:one: "{0} did"
|
1768
|
+
:other: "{0} did"
|
1769
|
+
:two: "{0} ddid"
|
1770
|
+
:zero: "{0} did"
|
757
1771
|
:digital-byte:
|
758
|
-
:
|
1772
|
+
:few: "{0} beit"
|
1773
|
+
:many: "{0} beit"
|
1774
|
+
:one: "{0} beit"
|
1775
|
+
:other: "{0} beit"
|
1776
|
+
:two: "{0} feit"
|
1777
|
+
:zero: "{0} beit"
|
759
1778
|
:digital-gigabit:
|
760
1779
|
:few: "{0} Gb"
|
761
1780
|
:many: "{0} Gb"
|
@@ -812,6 +1831,13 @@
|
|
812
1831
|
:other: "{0} TB"
|
813
1832
|
:two: "{0} TB"
|
814
1833
|
:zero: "{0} TB"
|
1834
|
+
:duration-century:
|
1835
|
+
:few: "{0} c"
|
1836
|
+
:many: "{0} c"
|
1837
|
+
:one: "{0} c"
|
1838
|
+
:other: "{0} c"
|
1839
|
+
:two: "{0} c"
|
1840
|
+
:zero: "{0} c"
|
815
1841
|
:duration-day:
|
816
1842
|
:few: "{0} diwrnod"
|
817
1843
|
:many: "{0} diwrnod"
|
@@ -819,6 +1845,7 @@
|
|
819
1845
|
:other: "{0} diwrnod"
|
820
1846
|
:two: "{0} ddiwrnod"
|
821
1847
|
:zero: "{0} diwrnod"
|
1848
|
+
:duration-day-person: {}
|
822
1849
|
:duration-hour:
|
823
1850
|
:few: "{0} awr"
|
824
1851
|
:many: "{0} awr"
|
@@ -827,14 +1854,19 @@
|
|
827
1854
|
:two: "{0} awr"
|
828
1855
|
:zero: "{0} awr"
|
829
1856
|
:duration-microsecond:
|
1857
|
+
:few: "{0} μs"
|
1858
|
+
:many: "{0} μs"
|
1859
|
+
:one: "{0} μs"
|
830
1860
|
:other: "{0} μs"
|
1861
|
+
:two: "{0} μs"
|
1862
|
+
:zero: "{0} μs"
|
831
1863
|
:duration-millisecond:
|
832
1864
|
:few: "{0} ms"
|
833
1865
|
:many: "{0} ms"
|
834
1866
|
:one: "{0} ms"
|
835
1867
|
:other: "{0} ms"
|
836
1868
|
:two: "{0} ms"
|
837
|
-
:zero: "{0}
|
1869
|
+
:zero: "{0} milieil"
|
838
1870
|
:duration-minute:
|
839
1871
|
:few: "{0} mun"
|
840
1872
|
:many: "{0} mun"
|
@@ -849,8 +1881,14 @@
|
|
849
1881
|
:other: "{0} mis"
|
850
1882
|
:two: "{0} fis"
|
851
1883
|
:zero: "{0} mis"
|
1884
|
+
:duration-month-person: {}
|
852
1885
|
:duration-nanosecond:
|
1886
|
+
:few: "{0} ns"
|
1887
|
+
:many: "{0} ns"
|
1888
|
+
:one: "{0} ns"
|
853
1889
|
:other: "{0} ns"
|
1890
|
+
:two: "{0} ns"
|
1891
|
+
:zero: "{0} ns"
|
854
1892
|
:duration-second:
|
855
1893
|
:few: "{0} eil"
|
856
1894
|
:many: "{0} eil"
|
@@ -865,6 +1903,7 @@
|
|
865
1903
|
:other: "{0} wythnos"
|
866
1904
|
:two: "{0} wythnos"
|
867
1905
|
:zero: "{0} wythnos"
|
1906
|
+
:duration-week-person: {}
|
868
1907
|
:duration-year:
|
869
1908
|
:few: "{0} bl"
|
870
1909
|
:many: "{0} bl"
|
@@ -872,36 +1911,112 @@
|
|
872
1911
|
:other: "{0} bl"
|
873
1912
|
:two: "{0} bl"
|
874
1913
|
:zero: "{0} bl"
|
1914
|
+
:duration-year-person: {}
|
875
1915
|
:electric-ampere:
|
1916
|
+
:few: "{0} A"
|
1917
|
+
:many: "{0} A"
|
1918
|
+
:one: "{0} A"
|
876
1919
|
:other: "{0} A"
|
1920
|
+
:two: "{0} A"
|
1921
|
+
:zero: "{0} A"
|
877
1922
|
:electric-milliampere:
|
1923
|
+
:few: "{0} mA"
|
1924
|
+
:many: "{0} mA"
|
1925
|
+
:one: "{0} mA"
|
878
1926
|
:other: "{0} mA"
|
1927
|
+
:two: "{0} mA"
|
1928
|
+
:zero: "{0} mA"
|
879
1929
|
:electric-ohm:
|
1930
|
+
:few: "{0} Ω"
|
1931
|
+
:many: "{0} Ω"
|
1932
|
+
:one: "{0} Ω"
|
880
1933
|
:other: "{0} Ω"
|
1934
|
+
:two: "{0} Ω"
|
1935
|
+
:zero: "{0} Ω"
|
881
1936
|
:electric-volt:
|
1937
|
+
:few: "{0} V"
|
1938
|
+
:many: "{0} V"
|
1939
|
+
:one: "{0} V"
|
882
1940
|
:other: "{0} V"
|
1941
|
+
:two: "{0} V"
|
1942
|
+
:zero: "{0} V"
|
883
1943
|
:energy-calorie:
|
1944
|
+
:few: "{0} cal"
|
1945
|
+
:many: "{0} cal"
|
1946
|
+
:one: "{0} cal"
|
884
1947
|
:other: "{0} cal"
|
1948
|
+
:two: "{0} cal"
|
1949
|
+
:zero: "{0} cal"
|
885
1950
|
:energy-foodcalorie:
|
1951
|
+
:few: "{0} Cal"
|
1952
|
+
:many: "{0} Cal"
|
1953
|
+
:one: "{0} Cal"
|
886
1954
|
:other: "{0} Cal"
|
1955
|
+
:two: "{0} Cal"
|
1956
|
+
:zero: "{0} Cal"
|
887
1957
|
:energy-joule:
|
1958
|
+
:few: "{0} J"
|
1959
|
+
:many: "{0} J"
|
1960
|
+
:one: "{0} J"
|
888
1961
|
:other: "{0} J"
|
1962
|
+
:two: "{0} J"
|
1963
|
+
:zero: "{0} J"
|
889
1964
|
:energy-kilocalorie:
|
1965
|
+
:few: "{0} kcal"
|
1966
|
+
:many: "{0} kcal"
|
1967
|
+
:one: "{0} kcal"
|
890
1968
|
:other: "{0} kcal"
|
1969
|
+
:two: "{0} kcal"
|
1970
|
+
:zero: "{0} kcal"
|
891
1971
|
:energy-kilojoule:
|
1972
|
+
:few: "{0} kJ"
|
1973
|
+
:many: "{0} kJ"
|
1974
|
+
:one: "{0} kJ"
|
892
1975
|
:other: "{0} kJ"
|
1976
|
+
:two: "{0} kJ"
|
1977
|
+
:zero: "{0} kJ"
|
893
1978
|
:energy-kilowatt-hour:
|
894
|
-
:
|
1979
|
+
:few: "{0} kW-awr"
|
1980
|
+
:many: "{0} kW-awr"
|
1981
|
+
:one: "{0} kW-awr"
|
1982
|
+
:other: "{0} kW-awr"
|
1983
|
+
:two: "{0} kW-awr"
|
1984
|
+
:zero: "{0} kW-awr"
|
895
1985
|
:frequency-gigahertz:
|
1986
|
+
:few: "{0} GHz"
|
1987
|
+
:many: "{0} GHz"
|
1988
|
+
:one: "{0} GHz"
|
896
1989
|
:other: "{0} GHz"
|
1990
|
+
:two: "{0} GHz"
|
1991
|
+
:zero: "{0} GHz"
|
897
1992
|
:frequency-hertz:
|
1993
|
+
:few: "{0} Hz"
|
1994
|
+
:many: "{0} Hz"
|
1995
|
+
:one: "{0} Hz"
|
898
1996
|
:other: "{0} Hz"
|
1997
|
+
:two: "{0} Hz"
|
1998
|
+
:zero: "{0} Hz"
|
899
1999
|
:frequency-kilohertz:
|
2000
|
+
:few: "{0} kHz"
|
2001
|
+
:many: "{0} kHz"
|
2002
|
+
:one: "{0} kHz"
|
900
2003
|
:other: "{0} kHz"
|
2004
|
+
:two: "{0} kHz"
|
2005
|
+
:zero: "{0} kHz"
|
901
2006
|
:frequency-megahertz:
|
2007
|
+
:few: "{0} MHz"
|
2008
|
+
:many: "{0} MHz"
|
2009
|
+
:one: "{0} MHz"
|
902
2010
|
:other: "{0} MHz"
|
2011
|
+
:two: "{0} MHz"
|
2012
|
+
:zero: "{0} MHz"
|
903
2013
|
:length-astronomical-unit:
|
904
|
-
:
|
2014
|
+
:few: "{0} u.s."
|
2015
|
+
:many: "{0} u.s."
|
2016
|
+
:one: "{0} u.s."
|
2017
|
+
:other: "{0} u.s."
|
2018
|
+
:two: "{0} u.s."
|
2019
|
+
:zero: "{0} u.s."
|
905
2020
|
:length-centimeter:
|
906
2021
|
:few: "{0} cm"
|
907
2022
|
:many: "{0} cm"
|
@@ -910,9 +2025,19 @@
|
|
910
2025
|
:two: "{0} cm"
|
911
2026
|
:zero: "{0} cm"
|
912
2027
|
:length-decimeter:
|
2028
|
+
:few: "{0} dm"
|
2029
|
+
:many: "{0} dm"
|
2030
|
+
:one: "{0} dm"
|
913
2031
|
:other: "{0} dm"
|
2032
|
+
:two: "{0} dm"
|
2033
|
+
:zero: "{0} dm"
|
914
2034
|
:length-fathom:
|
915
|
-
:
|
2035
|
+
:few: "{0} gwryd"
|
2036
|
+
:many: "{0} gwryd"
|
2037
|
+
:one: "{0} gwryd"
|
2038
|
+
:other: "{0} gwryd"
|
2039
|
+
:two: "{0} wryd"
|
2040
|
+
:zero: "{0} gwryd"
|
916
2041
|
:length-foot:
|
917
2042
|
:few: "{0}′"
|
918
2043
|
:many: "{0}′"
|
@@ -951,14 +2076,26 @@
|
|
951
2076
|
:two: "{0} m"
|
952
2077
|
:zero: "{0} m"
|
953
2078
|
:length-micrometer:
|
2079
|
+
:few: "{0} µm"
|
2080
|
+
:many: "{0} µm"
|
2081
|
+
:one: "{0} µm"
|
954
2082
|
:other: "{0} µm"
|
2083
|
+
:two: "{0} µm"
|
2084
|
+
:zero: "{0} µm"
|
955
2085
|
:length-mile:
|
956
|
-
:few: "{0}
|
957
|
-
:many: "{0}
|
958
|
-
:one: "{0}
|
959
|
-
:other: "{0}
|
960
|
-
:two: "{0}
|
961
|
-
:zero: "{0}
|
2086
|
+
:few: "{0} mi"
|
2087
|
+
:many: "{0} mi"
|
2088
|
+
:one: "{0} mi"
|
2089
|
+
:other: "{0} mi"
|
2090
|
+
:two: "{0} mi"
|
2091
|
+
:zero: "{0} mi"
|
2092
|
+
:length-mile-scandinavian:
|
2093
|
+
:few: "{0} mi Sgand."
|
2094
|
+
:many: "{0} mi Sgand."
|
2095
|
+
:one: "{0} mi Sgand."
|
2096
|
+
:other: "{0} mi Sgand."
|
2097
|
+
:two: "{0} mi Sgand."
|
2098
|
+
:zero: "{0} mi Sgand."
|
962
2099
|
:length-millimeter:
|
963
2100
|
:few: "{0} mm"
|
964
2101
|
:many: "{0} mm"
|
@@ -967,11 +2104,26 @@
|
|
967
2104
|
:two: "{0} mm"
|
968
2105
|
:zero: "{0} mm"
|
969
2106
|
:length-nanometer:
|
2107
|
+
:few: "{0} nm"
|
2108
|
+
:many: "{0} nm"
|
2109
|
+
:one: "{0} nm"
|
970
2110
|
:other: "{0} nm"
|
2111
|
+
:two: "{0} nm"
|
2112
|
+
:zero: "{0} nm"
|
971
2113
|
:length-nautical-mile:
|
972
|
-
:
|
2114
|
+
:few: "{0} mi fôr"
|
2115
|
+
:many: "{0} mi fôr"
|
2116
|
+
:one: "{0} mi fôr"
|
2117
|
+
:other: "{0} mi fôr"
|
2118
|
+
:two: "{0} mi fôr"
|
2119
|
+
:zero: "{0} mi fôr"
|
973
2120
|
:length-parsec:
|
2121
|
+
:few: "{0} pc"
|
2122
|
+
:many: "{0} pc"
|
2123
|
+
:one: "{0} pc"
|
974
2124
|
:other: "{0} pc"
|
2125
|
+
:two: "{0} pc"
|
2126
|
+
:zero: "{0} pc"
|
975
2127
|
:length-picometer:
|
976
2128
|
:few: "{0} pm"
|
977
2129
|
:many: "{0} pm"
|
@@ -987,9 +2139,19 @@
|
|
987
2139
|
:two: "{0} lath"
|
988
2140
|
:zero: "{0} llath"
|
989
2141
|
:light-lux:
|
2142
|
+
:few: "{0} lx"
|
2143
|
+
:many: "{0} lx"
|
2144
|
+
:one: "{0} lx"
|
990
2145
|
:other: "{0} lx"
|
2146
|
+
:two: "{0} lx"
|
2147
|
+
:zero: "{0} lx"
|
991
2148
|
:mass-carat:
|
2149
|
+
:few: "{0} CD"
|
2150
|
+
:many: "{0} CD"
|
2151
|
+
:one: "{0} CD"
|
992
2152
|
:other: "{0} CD"
|
2153
|
+
:two: "{0} CD"
|
2154
|
+
:zero: "{0} CD"
|
993
2155
|
:mass-gram:
|
994
2156
|
:few: "{0} g"
|
995
2157
|
:many: "{0} g"
|
@@ -1005,11 +2167,26 @@
|
|
1005
2167
|
:two: "{0} kg"
|
1006
2168
|
:zero: "{0} kg"
|
1007
2169
|
:mass-metric-ton:
|
2170
|
+
:few: "{0} t"
|
2171
|
+
:many: "{0} t"
|
2172
|
+
:one: "{0} t"
|
1008
2173
|
:other: "{0} t"
|
2174
|
+
:two: "{0} t"
|
2175
|
+
:zero: "{0} t"
|
1009
2176
|
:mass-microgram:
|
2177
|
+
:few: "{0} µg"
|
2178
|
+
:many: "{0} µg"
|
2179
|
+
:one: "{0} µg"
|
1010
2180
|
:other: "{0} µg"
|
2181
|
+
:two: "{0} µg"
|
2182
|
+
:zero: "{0} µg"
|
1011
2183
|
:mass-milligram:
|
2184
|
+
:few: "{0} mg"
|
2185
|
+
:many: "{0} mg"
|
2186
|
+
:one: "{0} mg"
|
1012
2187
|
:other: "{0} mg"
|
2188
|
+
:two: "{0} mg"
|
2189
|
+
:zero: "{0} mg"
|
1013
2190
|
:mass-ounce:
|
1014
2191
|
:few: "{0} owns"
|
1015
2192
|
:many: "{0} owns"
|
@@ -1018,7 +2195,12 @@
|
|
1018
2195
|
:two: "{0} owns"
|
1019
2196
|
:zero: "{0} owns"
|
1020
2197
|
:mass-ounce-troy:
|
2198
|
+
:few: "{0} oz t"
|
2199
|
+
:many: "{0} oz t"
|
2200
|
+
:one: "{0} oz t"
|
1021
2201
|
:other: "{0} oz t"
|
2202
|
+
:two: "{0} oz t"
|
2203
|
+
:zero: "{0} oz t"
|
1022
2204
|
:mass-pound:
|
1023
2205
|
:few: "{0} phwys"
|
1024
2206
|
:many: "{0} phwys"
|
@@ -1027,11 +2209,26 @@
|
|
1027
2209
|
:two: "{0} bwys"
|
1028
2210
|
:zero: "{0} pwys"
|
1029
2211
|
:mass-stone:
|
2212
|
+
:few: "{0} st"
|
2213
|
+
:many: "{0} st"
|
2214
|
+
:one: "{0} st"
|
1030
2215
|
:other: "{0} st"
|
2216
|
+
:two: "{0} st"
|
2217
|
+
:zero: "{0} st"
|
1031
2218
|
:mass-ton:
|
2219
|
+
:few: "{0} tn"
|
2220
|
+
:many: "{0} tn"
|
2221
|
+
:one: "{0} tn"
|
1032
2222
|
:other: "{0} tn"
|
2223
|
+
:two: "{0} tn"
|
2224
|
+
:zero: "{0} tn"
|
1033
2225
|
:power-gigawatt:
|
2226
|
+
:few: "{0} GW"
|
2227
|
+
:many: "{0} GW"
|
2228
|
+
:one: "{0} GW"
|
1034
2229
|
:other: "{0} GW"
|
2230
|
+
:two: "{0} GW"
|
2231
|
+
:zero: "{0} GW"
|
1035
2232
|
:power-horsepower:
|
1036
2233
|
:few: "{0} hp"
|
1037
2234
|
:many: "{0} hp"
|
@@ -1047,9 +2244,19 @@
|
|
1047
2244
|
:two: "{0} kW"
|
1048
2245
|
:zero: "{0} kW"
|
1049
2246
|
:power-megawatt:
|
2247
|
+
:few: "{0} MW"
|
2248
|
+
:many: "{0} MW"
|
2249
|
+
:one: "{0} MW"
|
1050
2250
|
:other: "{0} MW"
|
2251
|
+
:two: "{0} MW"
|
2252
|
+
:zero: "{0} MW"
|
1051
2253
|
:power-milliwatt:
|
2254
|
+
:few: "{0} mW"
|
2255
|
+
:many: "{0} mW"
|
2256
|
+
:one: "{0} mW"
|
1052
2257
|
:other: "{0} mW"
|
2258
|
+
:two: "{0} mW"
|
2259
|
+
:zero: "{0} mW"
|
1053
2260
|
:power-watt:
|
1054
2261
|
:few: "{0} W"
|
1055
2262
|
:many: "{0} W"
|
@@ -1065,12 +2272,12 @@
|
|
1065
2272
|
:two: "{0} hPa"
|
1066
2273
|
:zero: "{0} hPa"
|
1067
2274
|
:pressure-inch-hg:
|
1068
|
-
:few: "{0}
|
1069
|
-
:many: "{0}
|
1070
|
-
:one: "{0}
|
1071
|
-
:other: "{0}
|
1072
|
-
:two: "{0}
|
1073
|
-
:zero: "{0}
|
2275
|
+
:few: "{0} ″ Hg"
|
2276
|
+
:many: "{0} ″ Hg"
|
2277
|
+
:one: "{0} ″ Hg"
|
2278
|
+
:other: "{0} ″ Hg"
|
2279
|
+
:two: "{0} ″ Hg"
|
2280
|
+
:zero: "{0} ″ Hg"
|
1074
2281
|
:pressure-millibar:
|
1075
2282
|
:few: "{0} mbar"
|
1076
2283
|
:many: "{0} mbar"
|
@@ -1092,8 +2299,6 @@
|
|
1092
2299
|
:other: "{0} psi"
|
1093
2300
|
:two: "{0} psi"
|
1094
2301
|
:zero: "{0} psi"
|
1095
|
-
:proportion-karat:
|
1096
|
-
:other: "{0} kt"
|
1097
2302
|
:speed-kilometer-per-hour:
|
1098
2303
|
:few: "{0} km/h"
|
1099
2304
|
:many: "{0} km/h"
|
@@ -1101,6 +2306,13 @@
|
|
1101
2306
|
:other: "{0} km/h"
|
1102
2307
|
:two: "{0} km/h"
|
1103
2308
|
:zero: "{0} km/h"
|
2309
|
+
:speed-knot:
|
2310
|
+
:few: "{0} not"
|
2311
|
+
:many: "{0} not"
|
2312
|
+
:one: "{0} not"
|
2313
|
+
:other: "{0} not"
|
2314
|
+
:two: "{0} not"
|
2315
|
+
:zero: "{0} not"
|
1104
2316
|
:speed-meter-per-second:
|
1105
2317
|
:few: "{0} m/s"
|
1106
2318
|
:many: "{0} m/s"
|
@@ -1129,6 +2341,13 @@
|
|
1129
2341
|
:other: "{0}°F"
|
1130
2342
|
:two: "{0}°F"
|
1131
2343
|
:zero: "{0}°F"
|
2344
|
+
:temperature-generic:
|
2345
|
+
:few: "{0}°"
|
2346
|
+
:many: "{0}°"
|
2347
|
+
:one: "{0}°"
|
2348
|
+
:other: "{0}°"
|
2349
|
+
:two: "{0}°"
|
2350
|
+
:zero: "{0}°"
|
1132
2351
|
:temperature-kelvin:
|
1133
2352
|
:few: "{0} K"
|
1134
2353
|
:many: "{0} K"
|
@@ -1137,17 +2356,47 @@
|
|
1137
2356
|
:two: "{0} K"
|
1138
2357
|
:zero: "{0} K"
|
1139
2358
|
:volume-acre-foot:
|
1140
|
-
:
|
2359
|
+
:few: "{0} erw tr"
|
2360
|
+
:many: "{0} erw tr"
|
2361
|
+
:one: "{0} erw tr"
|
2362
|
+
:other: "{0} erw tr"
|
2363
|
+
:two: "{0} erw tr"
|
2364
|
+
:zero: "{0} erw tr"
|
1141
2365
|
:volume-bushel:
|
1142
|
-
:
|
2366
|
+
:few: "{0} bwsiel"
|
2367
|
+
:many: "{0} bwsiel"
|
2368
|
+
:one: "{0} bwsiel"
|
2369
|
+
:other: "{0} bwsiel"
|
2370
|
+
:two: "{0} bwsiel"
|
2371
|
+
:zero: "{0} bwsiel"
|
1143
2372
|
:volume-centiliter:
|
2373
|
+
:few: "{0} cL"
|
2374
|
+
:many: "{0} cL"
|
2375
|
+
:one: "{0} cL"
|
1144
2376
|
:other: "{0} cL"
|
2377
|
+
:two: "{0} cL"
|
2378
|
+
:zero: "{0} cL"
|
1145
2379
|
:volume-cubic-centimeter:
|
2380
|
+
:few: "{0} cm³"
|
2381
|
+
:many: "{0} cm³"
|
2382
|
+
:one: "{0} cm³"
|
1146
2383
|
:other: "{0} cm³"
|
2384
|
+
:two: "{0} cm³"
|
2385
|
+
:zero: "{0} cm³"
|
1147
2386
|
:volume-cubic-foot:
|
1148
|
-
:
|
2387
|
+
:few: "{0} troedfedd³"
|
2388
|
+
:many: "{0} troedfedd³"
|
2389
|
+
:one: "{0} troedfedd³"
|
2390
|
+
:other: "{0} troedfedd³"
|
2391
|
+
:two: "{0} droedfedd³"
|
2392
|
+
:zero: "{0} troedfedd³"
|
1149
2393
|
:volume-cubic-inch:
|
1150
|
-
:
|
2394
|
+
:few: "{0} modfedd³"
|
2395
|
+
:many: "{0} modfedd³"
|
2396
|
+
:one: "{0} modfedd³"
|
2397
|
+
:other: "{0} modfedd³"
|
2398
|
+
:two: "{0} fodfedd³"
|
2399
|
+
:zero: "{0} modfedd³"
|
1151
2400
|
:volume-cubic-kilometer:
|
1152
2401
|
:few: "{0} km³"
|
1153
2402
|
:many: "{0} km³"
|
@@ -1156,7 +2405,12 @@
|
|
1156
2405
|
:two: "{0} km³"
|
1157
2406
|
:zero: "{0} km³"
|
1158
2407
|
:volume-cubic-meter:
|
2408
|
+
:few: "{0} m³"
|
2409
|
+
:many: "{0} m³"
|
2410
|
+
:one: "{0} m³"
|
1159
2411
|
:other: "{0} m³"
|
2412
|
+
:two: "{0} m³"
|
2413
|
+
:zero: "{0} m³"
|
1160
2414
|
:volume-cubic-mile:
|
1161
2415
|
:few: "{0} mi³"
|
1162
2416
|
:many: "{0} mi³"
|
@@ -1165,33 +2419,109 @@
|
|
1165
2419
|
:two: "{0} mi³"
|
1166
2420
|
:zero: "{0} mi³"
|
1167
2421
|
:volume-cubic-yard:
|
1168
|
-
:
|
2422
|
+
:few: "{0} llath³"
|
2423
|
+
:many: "{0} llath³"
|
2424
|
+
:one: "{0} llathen³"
|
2425
|
+
:other: "{0} llath³"
|
2426
|
+
:two: "{0} lath³"
|
2427
|
+
:zero: "{0} llath³"
|
1169
2428
|
:volume-cup:
|
2429
|
+
:few: "{0} c"
|
2430
|
+
:many: "{0} c"
|
2431
|
+
:one: "{0} c"
|
1170
2432
|
:other: "{0} c"
|
2433
|
+
:two: "{0} c"
|
2434
|
+
:zero: "{0} c"
|
2435
|
+
:volume-cup-metric:
|
2436
|
+
:few: "{0} mc"
|
2437
|
+
:many: "{0} mc"
|
2438
|
+
:one: "{0} mc"
|
2439
|
+
:other: "{0} mc"
|
2440
|
+
:two: "{0} mc"
|
2441
|
+
:zero: "{0} mc"
|
1171
2442
|
:volume-deciliter:
|
2443
|
+
:few: "{0} dL"
|
2444
|
+
:many: "{0} dL"
|
2445
|
+
:one: "{0} dL"
|
1172
2446
|
:other: "{0} dL"
|
2447
|
+
:two: "{0} dL"
|
2448
|
+
:zero: "{0} dL"
|
1173
2449
|
:volume-fluid-ounce:
|
2450
|
+
:few: "{0} fl oz"
|
2451
|
+
:many: "{0} fl oz"
|
2452
|
+
:one: "{0} fl oz"
|
1174
2453
|
:other: "{0} fl oz"
|
2454
|
+
:two: "{0} fl oz"
|
2455
|
+
:zero: "{0} fl oz"
|
1175
2456
|
:volume-gallon:
|
2457
|
+
:few: "{0} gal"
|
2458
|
+
:many: "{0} gal"
|
2459
|
+
:one: "{0} gal"
|
1176
2460
|
:other: "{0} gal"
|
2461
|
+
:two: "{0} gal"
|
2462
|
+
:zero: "{0} gal"
|
2463
|
+
:volume-gallon-imperial:
|
2464
|
+
:other: "{0} gal Imp."
|
1177
2465
|
:volume-hectoliter:
|
2466
|
+
:few: "{0} hL"
|
2467
|
+
:many: "{0} hL"
|
2468
|
+
:one: "{0} hL"
|
1178
2469
|
:other: "{0} hL"
|
2470
|
+
:two: "{0} hL"
|
2471
|
+
:zero: "{0} hL"
|
1179
2472
|
:volume-liter:
|
1180
|
-
:few: "{0}
|
1181
|
-
:many: "{0}
|
1182
|
-
:one: "{0}
|
1183
|
-
:other: "{0}
|
1184
|
-
:two: "{0}
|
1185
|
-
:zero: "{0}
|
2473
|
+
:few: "{0} L"
|
2474
|
+
:many: "{0} L"
|
2475
|
+
:one: "{0} L"
|
2476
|
+
:other: "{0} L"
|
2477
|
+
:two: "{0} L"
|
2478
|
+
:zero: "{0} L"
|
1186
2479
|
:volume-megaliter:
|
2480
|
+
:few: "{0} ML"
|
2481
|
+
:many: "{0} ML"
|
2482
|
+
:one: "{0} ML"
|
1187
2483
|
:other: "{0} ML"
|
2484
|
+
:two: "{0} ML"
|
2485
|
+
:zero: "{0} ML"
|
1188
2486
|
:volume-milliliter:
|
2487
|
+
:few: "{0} mL"
|
2488
|
+
:many: "{0} mL"
|
2489
|
+
:one: "{0} mL"
|
1189
2490
|
:other: "{0} mL"
|
2491
|
+
:two: "{0} mL"
|
2492
|
+
:zero: "{0} mL"
|
1190
2493
|
:volume-pint:
|
2494
|
+
:few: "{0} pt"
|
2495
|
+
:many: "{0} pt"
|
2496
|
+
:one: "{0} pt"
|
1191
2497
|
:other: "{0} pt"
|
2498
|
+
:two: "{0} pt"
|
2499
|
+
:zero: "{0} pt"
|
2500
|
+
:volume-pint-metric:
|
2501
|
+
:few: "{0} mpt"
|
2502
|
+
:many: "{0} mpt"
|
2503
|
+
:one: "{0} mpt"
|
2504
|
+
:other: "{0} mpt"
|
2505
|
+
:two: "{0} mpt"
|
2506
|
+
:zero: "{0} mpt"
|
1192
2507
|
:volume-quart:
|
2508
|
+
:few: "{0} qt"
|
2509
|
+
:many: "{0} qt"
|
2510
|
+
:one: "{0} qt"
|
1193
2511
|
:other: "{0} qt"
|
2512
|
+
:two: "{0} qt"
|
2513
|
+
:zero: "{0} qt"
|
1194
2514
|
:volume-tablespoon:
|
2515
|
+
:few: "{0} tbsp"
|
2516
|
+
:many: "{0} tbsp"
|
2517
|
+
:one: "{0} tbsp"
|
1195
2518
|
:other: "{0} tbsp"
|
2519
|
+
:two: "{0} tbsp"
|
2520
|
+
:zero: "{0} tbsp"
|
1196
2521
|
:volume-teaspoon:
|
2522
|
+
:few: "{0} tsp"
|
2523
|
+
:many: "{0} tsp"
|
2524
|
+
:one: "{0} tsp"
|
1197
2525
|
:other: "{0} tsp"
|
2526
|
+
:two: "{0} tsp"
|
2527
|
+
:zero: "{0} tsp"
|