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
@@ -12,32 +12,40 @@
|
|
12
12
|
:Gy: "y G"
|
13
13
|
:GyMMM: "MMM y G"
|
14
14
|
:GyMMMEd: "E, d MMM y G"
|
15
|
-
:
|
15
|
+
:GyMMMM: "LLLL y G"
|
16
|
+
:GyMMMMEd: "E, d MMMM y G"
|
17
|
+
:GyMMMMd: "d MMMM y G"
|
18
|
+
:GyMMMd: "d.MM.y G"
|
16
19
|
:H: HH
|
17
20
|
:Hm: "HH:mm"
|
18
21
|
:Hms: "HH:mm:ss"
|
22
|
+
:Hmsv: "HH:mm:ss v"
|
23
|
+
:Hmv: "HH:mm v"
|
19
24
|
:M: L
|
20
25
|
:MEd: "E, d.MM"
|
21
26
|
:MMM: LLL
|
22
|
-
:MMMEd: "E, d
|
27
|
+
:MMMEd: "E, d.MM"
|
28
|
+
:MMMMEd: "E, d MMMM"
|
23
29
|
:MMMMd: "d MMMM"
|
24
|
-
:MMMd:
|
25
|
-
:MMdd: d.MM
|
30
|
+
:MMMd: d.MM
|
26
31
|
:Md: d.MM
|
27
32
|
:d: d
|
28
33
|
:h: "h a"
|
29
34
|
:hm: "h:mm a"
|
30
35
|
:hms: "h:mm:ss a"
|
36
|
+
:hmsv: "h:mm:ss a v"
|
37
|
+
:hmv: "h:mm a v"
|
31
38
|
:ms: "mm:ss"
|
32
39
|
? !ruby/symbol "y"
|
33
40
|
: "y"
|
34
41
|
:yM: MM.y
|
35
42
|
:yMEd: "E, d.MM.y"
|
36
|
-
:
|
37
|
-
:
|
38
|
-
:yMMMEd: "E, d MMM y"
|
43
|
+
:yMMM: MM.y
|
44
|
+
:yMMMEd: "E, d.MM.y"
|
39
45
|
:yMMMM: "LLLL y"
|
40
|
-
:
|
46
|
+
:yMMMMEd: "E, d MMMM y"
|
47
|
+
:yMMMMd: "d MMMM y"
|
48
|
+
:yMMMd: d.MM.y
|
41
49
|
:yMd: d.MM.y
|
42
50
|
:yQQQ: "QQQ y"
|
43
51
|
:yQQQQ: "QQQQ y"
|
@@ -60,13 +68,13 @@
|
|
60
68
|
:tue: W
|
61
69
|
:wed: Ś
|
62
70
|
:short:
|
63
|
-
:fri:
|
64
|
-
:mon: pon
|
65
|
-
:sat: sob
|
66
|
-
:sun:
|
67
|
-
:thu: czw
|
68
|
-
:tue:
|
69
|
-
:wed:
|
71
|
+
:fri: pią
|
72
|
+
:mon: pon
|
73
|
+
:sat: sob
|
74
|
+
:sun: nie
|
75
|
+
:thu: czw
|
76
|
+
:tue: wto
|
77
|
+
:wed: śro
|
70
78
|
:wide:
|
71
79
|
:fri: piątek
|
72
80
|
:mon: poniedziałek
|
@@ -93,13 +101,13 @@
|
|
93
101
|
:tue: W
|
94
102
|
:wed: Ś
|
95
103
|
:short:
|
96
|
-
:fri:
|
97
|
-
:mon: pon
|
98
|
-
:sat: sob
|
99
|
-
:sun:
|
100
|
-
:thu: czw
|
101
|
-
:tue:
|
102
|
-
:wed:
|
104
|
+
:fri: pią
|
105
|
+
:mon: pon
|
106
|
+
:sat: sob
|
107
|
+
:sun: nie
|
108
|
+
:thu: czw
|
109
|
+
:tue: wto
|
110
|
+
:wed: śro
|
103
111
|
:wide:
|
104
112
|
:fri: piątek
|
105
113
|
:mon: poniedziałek
|
@@ -153,7 +161,7 @@
|
|
153
161
|
:long:
|
154
162
|
:pattern: "d MMMM y"
|
155
163
|
:medium:
|
156
|
-
:pattern:
|
164
|
+
:pattern: dd.MM.y
|
157
165
|
:short:
|
158
166
|
:pattern: dd.MM.y
|
159
167
|
:datetime:
|
@@ -257,22 +265,53 @@
|
|
257
265
|
9: wrzesień
|
258
266
|
:periods:
|
259
267
|
:format:
|
260
|
-
:abbreviated:
|
268
|
+
:abbreviated:
|
269
|
+
:afternoon1: "po południu"
|
270
|
+
:am: AM
|
271
|
+
:evening1: wieczorem
|
272
|
+
:midnight: "o północy"
|
273
|
+
:morning1: rano
|
274
|
+
:morning2: "przed południem"
|
275
|
+
:night1: "w nocy"
|
276
|
+
:noon: "w południe"
|
277
|
+
:pm: PM
|
261
278
|
:narrow:
|
279
|
+
:afternoon1: "po południu"
|
262
280
|
:am: a
|
281
|
+
:evening1: wieczorem
|
282
|
+
:midnight: "o półn."
|
283
|
+
:morning1: rano
|
284
|
+
:morning2: "przed południem"
|
285
|
+
:night1: "w nocy"
|
263
286
|
:noon: "n"
|
264
287
|
:pm: p
|
265
288
|
:wide:
|
266
|
-
:
|
289
|
+
:afternoon1: "po południu"
|
267
290
|
:am: AM
|
268
|
-
:
|
269
|
-
:
|
270
|
-
:
|
271
|
-
:
|
272
|
-
:
|
291
|
+
:evening1: wieczorem
|
292
|
+
:midnight: "o północy"
|
293
|
+
:morning1: rano
|
294
|
+
:morning2: "przed południem"
|
295
|
+
:night1: "w nocy"
|
273
296
|
:noon: "w południe"
|
274
297
|
:pm: PM
|
275
|
-
:stand-alone:
|
298
|
+
:stand-alone:
|
299
|
+
:abbreviated:
|
300
|
+
:am: AM
|
301
|
+
:pm: PM
|
302
|
+
:narrow:
|
303
|
+
:am: a
|
304
|
+
:pm: p
|
305
|
+
:wide:
|
306
|
+
:afternoon1: popołudnie
|
307
|
+
:am: AM
|
308
|
+
:evening1: wieczór
|
309
|
+
:midnight: północ
|
310
|
+
:morning1: rano
|
311
|
+
:morning2: przedpołudnie
|
312
|
+
:night1: noc
|
313
|
+
:noon: południe
|
314
|
+
:pm: PM
|
276
315
|
:quarters:
|
277
316
|
:format:
|
278
317
|
:abbreviated:
|
@@ -203,6 +203,10 @@
|
|
203
203
|
:other: "{0} mies. temu"
|
204
204
|
:quarter:
|
205
205
|
:display_name: kwartał
|
206
|
+
:relative:
|
207
|
+
-1: "w zeszłym kwartale"
|
208
|
+
0: "w tym kwartale"
|
209
|
+
1: "w przyszłym kwartale"
|
206
210
|
:relative_time:
|
207
211
|
:future:
|
208
212
|
:few: "za {0} kwartały"
|
@@ -216,6 +220,10 @@
|
|
216
220
|
:other: "{0} kwartału temu"
|
217
221
|
:quarter-narrow:
|
218
222
|
:display_name: kw.
|
223
|
+
:relative:
|
224
|
+
-1: "w zeszłym kwartale"
|
225
|
+
0: "w tym kwartale"
|
226
|
+
1: "w przyszłym kwartale"
|
219
227
|
:relative_time:
|
220
228
|
:future:
|
221
229
|
:few: "+{0} kw."
|
@@ -229,6 +237,10 @@
|
|
229
237
|
:other: "–{0} kw."
|
230
238
|
:quarter-short:
|
231
239
|
:display_name: kw.
|
240
|
+
:relative:
|
241
|
+
-1: "w zeszłym kwartale"
|
242
|
+
0: "w tym kwartale"
|
243
|
+
1: "w przyszłym kwartale"
|
232
244
|
:relative_time:
|
233
245
|
:future:
|
234
246
|
:few: "za {0} kw."
|
@@ -42,7 +42,6 @@
|
|
42
42
|
:awa: awadhi
|
43
43
|
:ay: ajmara
|
44
44
|
:az: azerski
|
45
|
-
:azb: południowoazerski
|
46
45
|
:ba: baszkirski
|
47
46
|
:bal: beludżi
|
48
47
|
:ban: balijski
|
@@ -59,6 +58,7 @@
|
|
59
58
|
:bfd: bafut
|
60
59
|
:bfq: badaga
|
61
60
|
:bg: bułgarski
|
61
|
+
:bgn: "beludżi północny"
|
62
62
|
:bho: bhodźpuri
|
63
63
|
:bi: bislama
|
64
64
|
:bik: bikol
|
@@ -318,6 +318,7 @@
|
|
318
318
|
:lo: laotański
|
319
319
|
:lol: mongo
|
320
320
|
:loz: lozi
|
321
|
+
:lrc: "luryjski północny"
|
321
322
|
:lt: litewski
|
322
323
|
:ltg: łatgalski
|
323
324
|
:lu: luba-katanga
|
@@ -378,7 +379,7 @@
|
|
378
379
|
:naq: nama
|
379
380
|
:nb: "norweski (bokmål)"
|
380
381
|
:nd: "ndebele północny"
|
381
|
-
:nds:
|
382
|
+
:nds: dolnoniemiecki
|
382
383
|
:ne: nepalski
|
383
384
|
:new: newarski
|
384
385
|
:ng: ndonga
|
@@ -386,7 +387,7 @@
|
|
386
387
|
:niu: niue
|
387
388
|
:njo: ao
|
388
389
|
:nl: niderlandzki
|
389
|
-
:nl-BE:
|
390
|
+
:nl-BE: flamandzki
|
390
391
|
:nmg: ngumba
|
391
392
|
:nn: "norweski (nynorsk)"
|
392
393
|
:nnh: ngiemboon
|
@@ -473,6 +474,7 @@
|
|
473
474
|
:sco: szkocki
|
474
475
|
:sd: sindhi
|
475
476
|
:sdc: sassarski
|
477
|
+
:sdh: południowokurdyjski
|
476
478
|
:se: "lapoński północny"
|
477
479
|
:see: seneka
|
478
480
|
:seh: sena
|
@@ -515,8 +517,8 @@
|
|
515
517
|
:sux: sumeryjski
|
516
518
|
:sv: szwedzki
|
517
519
|
:sw: suahili
|
520
|
+
:sw-CD: "kongijski suahili"
|
518
521
|
:swb: komoryjski
|
519
|
-
:swc: "kongijski suahili"
|
520
522
|
:syc: syriacki
|
521
523
|
:syr: syryjski
|
522
524
|
:szl: śląski
|
@@ -583,6 +585,7 @@
|
|
583
585
|
:wal: walamo
|
584
586
|
:war: waraj
|
585
587
|
:was: washo
|
588
|
+
:wbp: Warlpiri
|
586
589
|
:wo: wolof
|
587
590
|
:wuu: wu
|
588
591
|
:xal: kałmucki
|
@@ -602,7 +605,7 @@
|
|
602
605
|
:zbl: bliss
|
603
606
|
:zea: zelandzki
|
604
607
|
:zen: zenaga
|
605
|
-
:zgh:
|
608
|
+
:zgh: "standardowy marokański tamazight"
|
606
609
|
:zh: chiński
|
607
610
|
:zh-Hans: "chiński (uproszczony)"
|
608
611
|
:zh-Hant: "chiński (tradycyjny)"
|
@@ -6,6 +6,79 @@
|
|
6
6
|
:number_system: latn
|
7
7
|
:patterns:
|
8
8
|
:default: "#,##0.00 ¤"
|
9
|
+
:short:
|
10
|
+
? !ruby/symbol "1000"
|
11
|
+
:
|
12
|
+
:few: 0 tys'.' ¤
|
13
|
+
:many: 0 tys'.' ¤
|
14
|
+
:one: 0 tys'.' ¤
|
15
|
+
:other: 0 tys'.' ¤
|
16
|
+
? !ruby/symbol "10000"
|
17
|
+
:
|
18
|
+
:few: 00 tys'.' ¤
|
19
|
+
:many: 00 tys'.' ¤
|
20
|
+
:one: 00 tys'.' ¤
|
21
|
+
:other: 00 tys'.' ¤
|
22
|
+
? !ruby/symbol "100000"
|
23
|
+
:
|
24
|
+
:few: 000 tys'.' ¤
|
25
|
+
:many: 000 tys'.' ¤
|
26
|
+
:one: 000 tys'.' ¤
|
27
|
+
:other: 000 tys'.' ¤
|
28
|
+
? !ruby/symbol "1000000"
|
29
|
+
:
|
30
|
+
:few: 0 mln ¤
|
31
|
+
:many: 0 mln ¤
|
32
|
+
:one: 0 mln ¤
|
33
|
+
:other: 0 mln ¤
|
34
|
+
? !ruby/symbol "10000000"
|
35
|
+
:
|
36
|
+
:few: 00 mln ¤
|
37
|
+
:many: 00 mln ¤
|
38
|
+
:one: 00 mln ¤
|
39
|
+
:other: 00 mln ¤
|
40
|
+
? !ruby/symbol "100000000"
|
41
|
+
:
|
42
|
+
:few: 000 mln ¤
|
43
|
+
:many: 000 mln ¤
|
44
|
+
:one: 000 mln ¤
|
45
|
+
:other: 000 mln ¤
|
46
|
+
? !ruby/symbol "1000000000"
|
47
|
+
:
|
48
|
+
:few: 0 mld ¤
|
49
|
+
:many: 0 mld ¤
|
50
|
+
:one: 0 mld ¤
|
51
|
+
:other: 0 mld ¤
|
52
|
+
? !ruby/symbol "10000000000"
|
53
|
+
:
|
54
|
+
:few: 00 mld ¤
|
55
|
+
:many: 00 mld ¤
|
56
|
+
:one: 00 mld ¤
|
57
|
+
:other: 00 mld ¤
|
58
|
+
? !ruby/symbol "100000000000"
|
59
|
+
:
|
60
|
+
:few: 000 mld ¤
|
61
|
+
:many: 000 mld ¤
|
62
|
+
:one: 000 mld ¤
|
63
|
+
:other: 000 mld ¤
|
64
|
+
? !ruby/symbol "1000000000000"
|
65
|
+
:
|
66
|
+
:few: 0 bln ¤
|
67
|
+
:many: 0 bln ¤
|
68
|
+
:one: 0 bln ¤
|
69
|
+
:other: 0 bln ¤
|
70
|
+
? !ruby/symbol "10000000000000"
|
71
|
+
:
|
72
|
+
:few: 00 bln ¤
|
73
|
+
:many: 00 bln ¤
|
74
|
+
:one: 00 bln ¤
|
75
|
+
:other: 00 bln ¤
|
76
|
+
? !ruby/symbol "100000000000000"
|
77
|
+
:
|
78
|
+
:few: 000 bln ¤
|
79
|
+
:many: 000 bln ¤
|
80
|
+
:one: 000 bln ¤
|
81
|
+
:other: 000 bln ¤
|
9
82
|
:unit:
|
10
83
|
:few: "{0} {1}"
|
11
84
|
:many: "{0} {1}"
|
@@ -2,14 +2,10 @@
|
|
2
2
|
:pl:
|
3
3
|
:cardinal:
|
4
4
|
:rule: 'lambda { |num, runtime| n = runtime.n(num); i = runtime.i(num); v = runtime.v(num);
|
5
|
-
w = runtime.w(num); f = runtime.f(num); t = runtime.t(num); (((
|
6
|
-
|
7
|
-
|
8
|
-
? :
|
9
|
-
((i % 10) >= 0) && ((i % 10) <= 1))))) || (((v == 0) && ((((i % 10).floor ==
|
10
|
-
(i % 10)) && ((i % 10) >= 5) && ((i % 10) <= 9))))))) || (((v == 0) && ((((i
|
11
|
-
% 100).floor == (i % 100)) && ((i % 100) >= 12) && ((i % 100) <= 14)))))) ?
|
12
|
-
:many : (((i == 1) && (v == 0)) ? :one : :other))) }'
|
5
|
+
w = runtime.w(num); f = runtime.f(num); t = runtime.t(num); (((v == 0 && (2..4).include?(i
|
6
|
+
% 10)) && !(12..14).include?(i % 100)) ? :few : (((((v == 0 && i != 1) && (0..1).include?(i
|
7
|
+
% 10)) || (v == 0 && (5..9).include?(i % 10))) || (v == 0 && (12..14).include?(i
|
8
|
+
% 100))) ? :many : ((i == 1 && v == 0) ? :one : :other))) }'
|
13
9
|
:names:
|
14
10
|
- :few
|
15
11
|
- :many
|
@@ -25,7 +25,7 @@
|
|
25
25
|
:rule: "minus >>;"
|
26
26
|
:value: "-x"
|
27
27
|
-
|
28
|
-
:rule: "
|
28
|
+
:rule: "<%spellout-cardinal-masculine< przecinek >%%spellout-fraction>;"
|
29
29
|
:value: x.x
|
30
30
|
-
|
31
31
|
:rule: zero;
|
@@ -88,17 +88,8 @@
|
|
88
88
|
:rule: dziewiętnaście;
|
89
89
|
:value: 19
|
90
90
|
-
|
91
|
-
:rule: "
|
91
|
+
:rule: "<%%spellout-cardinal-tens<[ >>];"
|
92
92
|
:value: 20
|
93
|
-
-
|
94
|
-
:rule: "trzydzieści[ >>];"
|
95
|
-
:value: 30
|
96
|
-
-
|
97
|
-
:rule: "czterdzieści[ >>];"
|
98
|
-
:value: 40
|
99
|
-
-
|
100
|
-
:rule: "<<dziesiąt[ >>];"
|
101
|
-
:value: 50
|
102
93
|
-
|
103
94
|
:rule: "sto[ >>];"
|
104
95
|
:value: 100
|
@@ -106,26 +97,41 @@
|
|
106
97
|
:rule: "dwieście[ >>];"
|
107
98
|
:value: 200
|
108
99
|
-
|
109
|
-
:rule: "
|
100
|
+
:rule: "<%spellout-cardinal-feminine<sta[ >>];"
|
110
101
|
:value: 300
|
111
102
|
-
|
112
|
-
:rule: "
|
103
|
+
:rule: "<%spellout-cardinal-feminine<set[ >>];"
|
113
104
|
:value: 500
|
114
105
|
-
|
115
|
-
:rule: "
|
106
|
+
:rule: "tysiąc[ >>];"
|
116
107
|
:value: 1000
|
117
108
|
-
|
118
|
-
:rule: "
|
109
|
+
:rule: "<< $(cardinal,few{tysiące}other{tysięcy})$[ >>];"
|
110
|
+
:value: 2000
|
111
|
+
-
|
112
|
+
:rule: "milion[ >>];"
|
119
113
|
:value: 1000000
|
120
114
|
-
|
121
|
-
:rule: "
|
115
|
+
:rule: "<< $(cardinal,few{miliony}other{milionów})$[ >>];"
|
116
|
+
:value: 2000000
|
117
|
+
-
|
118
|
+
:rule: "miliard[ >>];"
|
122
119
|
:value: 1000000000
|
123
120
|
-
|
124
|
-
:rule: "
|
121
|
+
:rule: "<< $(cardinal,few{miliardy}other{miliardów})$[ >>];"
|
122
|
+
:value: 2000000000
|
123
|
+
-
|
124
|
+
:rule: "bilion[ >>];"
|
125
125
|
:value: 1000000000000
|
126
126
|
-
|
127
|
-
:rule: "
|
127
|
+
:rule: "<< $(cardinal,few{biliony}other{bilionów})$[ >>];"
|
128
|
+
:value: 2000000000000
|
129
|
+
-
|
130
|
+
:rule: "biliard[ >>];"
|
128
131
|
:value: 1000000000000000
|
132
|
+
-
|
133
|
+
:rule: "<< $(cardinal,few{biliardy}other{biliardów})$[ >>];"
|
134
|
+
:value: 2000000000000000
|
129
135
|
-
|
130
136
|
:rule: "=#,##0=;"
|
131
137
|
:value: 1000000000000000000
|
@@ -136,25 +142,67 @@
|
|
136
142
|
:rule: "minus >>;"
|
137
143
|
:value: "-x"
|
138
144
|
-
|
139
|
-
:rule: "
|
145
|
+
:rule: "<%spellout-cardinal-masculine-personal< przecinek >>;"
|
140
146
|
:value: x.x
|
141
147
|
-
|
142
148
|
:rule: zero;
|
143
149
|
:value: 0
|
144
150
|
-
|
145
|
-
:rule:
|
151
|
+
:rule: jeden;
|
146
152
|
:value: 1
|
147
153
|
-
|
148
|
-
:rule:
|
154
|
+
:rule: dwaj;
|
149
155
|
:value: 2
|
150
|
-
|
156
|
+
-
|
157
|
+
:rule: trzej;
|
158
|
+
:value: 3
|
159
|
+
-
|
160
|
+
:rule: czterej;
|
161
|
+
:value: 4
|
162
|
+
-
|
163
|
+
:rule: =%spellout-cardinal-masculine-genitive=;
|
164
|
+
:value: 5
|
165
|
+
-
|
166
|
+
:rule: "tysiąc[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
167
|
+
:value: 1000
|
168
|
+
-
|
169
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{tysiące}other{tysięcy})$[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
170
|
+
:value: 2000
|
171
|
+
-
|
172
|
+
:rule: "milion[ >>];"
|
173
|
+
:value: 1000000
|
174
|
+
-
|
175
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{miliony}other{milionów})$[ >>];"
|
176
|
+
:value: 2000000
|
177
|
+
-
|
178
|
+
:rule: "miliard[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
179
|
+
:value: 1000000000
|
180
|
+
-
|
181
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{miliardy}other{miliardów})$[ >>];"
|
182
|
+
:value: 2000000000
|
183
|
+
-
|
184
|
+
:rule: "bilion[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
185
|
+
:value: 1000000000000
|
186
|
+
-
|
187
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{biliony}other{bilionów})$[ >>];"
|
188
|
+
:value: 2000000000000
|
189
|
+
-
|
190
|
+
:rule: "biliard[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
191
|
+
:value: 1000000000000000
|
192
|
+
-
|
193
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{biliardy}other{biliardów})$[ >>];"
|
194
|
+
:value: 2000000000000000
|
195
|
+
-
|
196
|
+
:rule: "=#,##0=;"
|
197
|
+
:value: 1000000000000000000
|
198
|
+
:type: spellout-cardinal-masculine-personal
|
151
199
|
-
|
152
200
|
:rules:
|
153
201
|
-
|
154
202
|
:rule: "minus >>;"
|
155
203
|
:value: "-x"
|
156
204
|
-
|
157
|
-
:rule: "
|
205
|
+
:rule: "<%spellout-cardinal-feminine< przecinek >%%spellout-fraction>;"
|
158
206
|
:value: x.x
|
159
207
|
-
|
160
208
|
:rule: zero;
|
@@ -163,75 +211,942 @@
|
|
163
211
|
:rule: jedna;
|
164
212
|
:value: 1
|
165
213
|
-
|
166
|
-
:rule:
|
214
|
+
:rule: dwie;
|
167
215
|
:value: 2
|
216
|
+
-
|
217
|
+
:rule: trzy;
|
218
|
+
:value: 3
|
219
|
+
-
|
220
|
+
:rule: cztery;
|
221
|
+
:value: 4
|
222
|
+
-
|
223
|
+
:rule: pięć;
|
224
|
+
:value: 5
|
225
|
+
-
|
226
|
+
:rule: sześć;
|
227
|
+
:value: 6
|
228
|
+
-
|
229
|
+
:rule: siedem;
|
230
|
+
:value: 7
|
231
|
+
-
|
232
|
+
:rule: osiem;
|
233
|
+
:value: 8
|
234
|
+
-
|
235
|
+
:rule: dziewięć;
|
236
|
+
:value: 9
|
237
|
+
-
|
238
|
+
:rule: dziesięć;
|
239
|
+
:value: 10
|
240
|
+
-
|
241
|
+
:rule: jedenaście;
|
242
|
+
:value: 11
|
243
|
+
-
|
244
|
+
:rule: dwanaście;
|
245
|
+
:value: 12
|
246
|
+
-
|
247
|
+
:rule: trzynaście;
|
248
|
+
:value: 13
|
249
|
+
-
|
250
|
+
:rule: czternaście;
|
251
|
+
:value: 14
|
252
|
+
-
|
253
|
+
:rule: piętnaście;
|
254
|
+
:value: 15
|
255
|
+
-
|
256
|
+
:rule: szesnaście;
|
257
|
+
:value: 16
|
258
|
+
-
|
259
|
+
:rule: siedemnaście;
|
260
|
+
:value: 17
|
261
|
+
-
|
262
|
+
:rule: osiemnaście;
|
263
|
+
:value: 18
|
264
|
+
-
|
265
|
+
:rule: dziewiętnaście;
|
266
|
+
:value: 19
|
267
|
+
-
|
268
|
+
:rule: "<%%spellout-cardinal-tens<[ >%%spellout-cardinal-feminine-ones>];"
|
269
|
+
:value: 20
|
270
|
+
-
|
271
|
+
:rule: "sto[ >%%spellout-cardinal-feminine-ones>];"
|
272
|
+
:value: 100
|
273
|
+
-
|
274
|
+
:rule: "dwieście[ >%%spellout-cardinal-feminine-ones>];"
|
275
|
+
:value: 200
|
276
|
+
-
|
277
|
+
:rule: "<%spellout-cardinal-feminine<sta[ >%%spellout-cardinal-feminine-ones>];"
|
278
|
+
:value: 300
|
279
|
+
-
|
280
|
+
:rule: "<%spellout-cardinal-feminine<set[ >%%spellout-cardinal-feminine-ones>];"
|
281
|
+
:value: 500
|
282
|
+
-
|
283
|
+
:rule: "tysiąc[ >%%spellout-cardinal-feminine-ones>];"
|
284
|
+
:value: 1000
|
285
|
+
-
|
286
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{tysiące}other{tysięcy})$[ >%%spellout-cardinal-feminine-ones>];"
|
287
|
+
:value: 2000
|
288
|
+
-
|
289
|
+
:rule: "milion[ >%%spellout-cardinal-feminine-ones>];"
|
290
|
+
:value: 1000000
|
291
|
+
-
|
292
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{miliony}other{milionów})$[ >%%spellout-cardinal-feminine-ones>];"
|
293
|
+
:value: 2000000
|
294
|
+
-
|
295
|
+
:rule: "miliard[ >>];"
|
296
|
+
:value: 1000000000
|
297
|
+
-
|
298
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{miliardy}other{miliardów})$[ >%%spellout-cardinal-feminine-ones>];"
|
299
|
+
:value: 2000000000
|
300
|
+
-
|
301
|
+
:rule: "bilion[ >>];"
|
302
|
+
:value: 1000000000000
|
303
|
+
-
|
304
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{biliony}other{bilionów})$[ >%%spellout-cardinal-feminine-ones>];"
|
305
|
+
:value: 2000000000000
|
306
|
+
-
|
307
|
+
:rule: "biliard[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
308
|
+
:value: 1000000000000000
|
309
|
+
-
|
310
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{biliardy}other{biliardów})$[ >%%spellout-cardinal-feminine-ones>];"
|
311
|
+
:value: 2000000000000000
|
312
|
+
-
|
313
|
+
:rule: "=#,##0=;"
|
314
|
+
:value: 1000000000000000000
|
168
315
|
:type: spellout-cardinal-feminine
|
169
316
|
-
|
170
|
-
:access: private
|
171
317
|
:rules:
|
172
318
|
-
|
173
|
-
:rule:
|
319
|
+
:rule: "minus >>;"
|
320
|
+
:value: "-x"
|
321
|
+
-
|
322
|
+
:rule: "<%spellout-cardinal-neuter< przecinek >%%spellout-fraction>;"
|
323
|
+
:value: x.x
|
324
|
+
-
|
325
|
+
:rule: zero;
|
326
|
+
:value: 0
|
327
|
+
-
|
328
|
+
:rule: jedno;
|
174
329
|
:value: 1
|
175
330
|
-
|
176
|
-
:rule:
|
331
|
+
:rule: =%spellout-cardinal-masculine=;
|
177
332
|
:value: 2
|
333
|
+
:type: spellout-cardinal-neuter
|
334
|
+
-
|
335
|
+
:rules:
|
178
336
|
-
|
179
|
-
:rule:
|
337
|
+
:rule: "minus >>;"
|
338
|
+
:value: "-x"
|
339
|
+
-
|
340
|
+
:rule: "<%spellout-cardinal-masculine-genitive< przecinek >>;"
|
341
|
+
:value: x.x
|
342
|
+
-
|
343
|
+
:rule: zera;
|
344
|
+
:value: 0
|
345
|
+
-
|
346
|
+
:rule: jednego;
|
347
|
+
:value: 1
|
348
|
+
-
|
349
|
+
:rule: dwóch;
|
350
|
+
:value: 2
|
351
|
+
-
|
352
|
+
:rule: trzech;
|
180
353
|
:value: 3
|
181
354
|
-
|
182
|
-
:rule:
|
183
|
-
:value:
|
355
|
+
:rule: czterech;
|
356
|
+
:value: 4
|
184
357
|
-
|
185
|
-
:rule:
|
186
|
-
:value:
|
358
|
+
:rule: pięciu;
|
359
|
+
:value: 5
|
187
360
|
-
|
188
|
-
:rule:
|
189
|
-
:value:
|
361
|
+
:rule: sześciu;
|
362
|
+
:value: 6
|
190
363
|
-
|
191
|
-
:rule:
|
192
|
-
:value:
|
364
|
+
:rule: siedmiu;
|
365
|
+
:value: 7
|
193
366
|
-
|
194
|
-
:rule:
|
367
|
+
:rule: ośmiu;
|
368
|
+
:value: 8
|
369
|
+
-
|
370
|
+
:rule: dziewięciu;
|
371
|
+
:value: 9
|
372
|
+
-
|
373
|
+
:rule: dziesięciu;
|
374
|
+
:value: 10
|
375
|
+
-
|
376
|
+
:rule: jedenastu;
|
377
|
+
:value: 11
|
378
|
+
-
|
379
|
+
:rule: dwunastu;
|
380
|
+
:value: 12
|
381
|
+
-
|
382
|
+
:rule: trzynastu;
|
383
|
+
:value: 13
|
384
|
+
-
|
385
|
+
:rule: czternastu;
|
386
|
+
:value: 14
|
387
|
+
-
|
388
|
+
:rule: piętnastu;
|
389
|
+
:value: 15
|
390
|
+
-
|
391
|
+
:rule: szesnastu;
|
392
|
+
:value: 16
|
393
|
+
-
|
394
|
+
:rule: siedemnastu;
|
395
|
+
:value: 17
|
396
|
+
-
|
397
|
+
:rule: osiemnastu;
|
398
|
+
:value: 18
|
399
|
+
-
|
400
|
+
:rule: dziewiętnastu;
|
401
|
+
:value: 19
|
402
|
+
-
|
403
|
+
:rule: "<%%spellout-cardinal-genitive-tens<[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
404
|
+
:value: 20
|
405
|
+
-
|
406
|
+
:rule: "stu[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
195
407
|
:value: 100
|
196
408
|
-
|
197
|
-
:rule: "
|
409
|
+
:rule: "dwustu[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
198
410
|
:value: 200
|
199
411
|
-
|
200
|
-
:rule: "
|
412
|
+
:rule: "<%spellout-cardinal-feminine<stu[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
201
413
|
:value: 300
|
202
414
|
-
|
203
|
-
:rule: "
|
415
|
+
:rule: "<%spellout-cardinal-feminine-genitive<set[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
204
416
|
:value: 500
|
205
417
|
-
|
206
|
-
:rule: "
|
418
|
+
:rule: "tysiąca[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
207
419
|
:value: 1000
|
208
420
|
-
|
209
|
-
:rule: "
|
421
|
+
:rule: "<< tysięcy[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
422
|
+
:value: 2000
|
423
|
+
-
|
424
|
+
:rule: "miliona[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
210
425
|
:value: 1000000
|
211
426
|
-
|
212
|
-
:rule: "
|
427
|
+
:rule: "<< milionów[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
428
|
+
:value: 2000000
|
429
|
+
-
|
430
|
+
:rule: "miliarda[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
213
431
|
:value: 1000000000
|
214
432
|
-
|
215
|
-
:rule: "
|
433
|
+
:rule: "<< miliardów[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
434
|
+
:value: 2000000000
|
435
|
+
-
|
436
|
+
:rule: "biliona[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
216
437
|
:value: 1000000000000
|
217
438
|
-
|
218
|
-
:rule: "
|
439
|
+
:rule: "<< bilionów[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
440
|
+
:value: 2000000000000
|
441
|
+
-
|
442
|
+
:rule: "biliarda[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
219
443
|
:value: 1000000000000000
|
444
|
+
-
|
445
|
+
:rule: "<< biliardów[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
446
|
+
:value: 2000000000000000
|
220
447
|
-
|
221
448
|
:rule: "=#,##0=;"
|
222
449
|
:value: 1000000000000000000
|
223
|
-
:type: spellout-cardinal-
|
450
|
+
:type: spellout-cardinal-masculine-genitive
|
224
451
|
-
|
225
|
-
:access: private
|
226
452
|
:rules:
|
227
453
|
-
|
228
|
-
:rule:
|
454
|
+
:rule: "minus >>;"
|
455
|
+
:value: "-x"
|
456
|
+
-
|
457
|
+
:rule: "<%spellout-cardinal-feminine-genitive< przecinek >>;"
|
458
|
+
:value: x.x
|
459
|
+
-
|
460
|
+
:rule: zera;
|
461
|
+
:value: 0
|
462
|
+
-
|
463
|
+
:rule: jednej;
|
464
|
+
:value: 1
|
465
|
+
-
|
466
|
+
:rule: =%spellout-cardinal-masculine-genitive=;
|
467
|
+
:value: 2
|
468
|
+
:type: spellout-cardinal-feminine-genitive
|
469
|
+
-
|
470
|
+
:rules:
|
471
|
+
-
|
472
|
+
:rule: =%spellout-cardinal-masculine-genitive=;
|
473
|
+
:value: 0
|
474
|
+
:type: spellout-cardinal-neuter-genitive
|
475
|
+
-
|
476
|
+
:rules:
|
477
|
+
-
|
478
|
+
:rule: "minus >>;"
|
479
|
+
:value: "-x"
|
480
|
+
-
|
481
|
+
:rule: "<%spellout-cardinal-masculine-dative< przecinek >>;"
|
482
|
+
:value: x.x
|
483
|
+
-
|
484
|
+
:rule: zeru;
|
485
|
+
:value: 0
|
486
|
+
-
|
487
|
+
:rule: jednemu;
|
488
|
+
:value: 1
|
489
|
+
-
|
490
|
+
:rule: dwóm;
|
491
|
+
:value: 2
|
492
|
+
-
|
493
|
+
:rule: trzem;
|
494
|
+
:value: 3
|
495
|
+
-
|
496
|
+
:rule: czterem;
|
497
|
+
:value: 4
|
498
|
+
-
|
499
|
+
:rule: pięciu;
|
500
|
+
:value: 5
|
501
|
+
-
|
502
|
+
:rule: sześciu;
|
503
|
+
:value: 6
|
504
|
+
-
|
505
|
+
:rule: siedmiu;
|
506
|
+
:value: 7
|
507
|
+
-
|
508
|
+
:rule: ośmiu;
|
509
|
+
:value: 8
|
510
|
+
-
|
511
|
+
:rule: dziewięciu;
|
512
|
+
:value: 9
|
513
|
+
-
|
514
|
+
:rule: dziesięciu;
|
229
515
|
:value: 10
|
230
516
|
-
|
231
|
-
:rule:
|
517
|
+
:rule: jedenastu;
|
518
|
+
:value: 11
|
519
|
+
-
|
520
|
+
:rule: dwunastu;
|
521
|
+
:value: 12
|
522
|
+
-
|
523
|
+
:rule: trzynastu;
|
524
|
+
:value: 13
|
525
|
+
-
|
526
|
+
:rule: czternastu;
|
527
|
+
:value: 14
|
528
|
+
-
|
529
|
+
:rule: piętnastu;
|
530
|
+
:value: 15
|
531
|
+
-
|
532
|
+
:rule: szesnastu;
|
533
|
+
:value: 16
|
534
|
+
-
|
535
|
+
:rule: siedemnastu;
|
536
|
+
:value: 17
|
537
|
+
-
|
538
|
+
:rule: osiemnastu;
|
539
|
+
:value: 18
|
540
|
+
-
|
541
|
+
:rule: dziewiętnastu;
|
542
|
+
:value: 19
|
543
|
+
-
|
544
|
+
:rule: "<%%spellout-cardinal-genitive-tens<[ >%%spellout-cardinal-masculine-dative-ones>];"
|
545
|
+
:value: 20
|
546
|
+
-
|
547
|
+
:rule: "stu[ >%%spellout-cardinal-masculine-dative-ones>];"
|
232
548
|
:value: 100
|
233
549
|
-
|
234
|
-
:rule:
|
550
|
+
:rule: "dwustu[ >%%spellout-cardinal-masculine-dative-ones>];"
|
551
|
+
:value: 200
|
552
|
+
-
|
553
|
+
:rule: "<%spellout-cardinal-feminine<stu[ >%%spellout-cardinal-masculine-dative-ones>];"
|
554
|
+
:value: 300
|
555
|
+
-
|
556
|
+
:rule: "<%spellout-cardinal-feminine-genitive<set[ >%%spellout-cardinal-masculine-dative-ones>];"
|
557
|
+
:value: 500
|
558
|
+
-
|
559
|
+
:rule: "tysiącowi[ >%%spellout-cardinal-masculine-dative-ones>];"
|
560
|
+
:value: 1000
|
561
|
+
-
|
562
|
+
:rule: "<< tysiącom[ >%%spellout-cardinal-masculine-dative-ones>];"
|
563
|
+
:value: 2000
|
564
|
+
-
|
565
|
+
:rule: "milionowi[ >%%spellout-cardinal-masculine-dative-ones>];"
|
566
|
+
:value: 1000000
|
567
|
+
-
|
568
|
+
:rule: "<< milionom[ >%%spellout-cardinal-masculine-dative-ones>];"
|
569
|
+
:value: 2000000
|
570
|
+
-
|
571
|
+
:rule: "miliardowi[ >%%spellout-cardinal-masculine-dative-ones>];"
|
572
|
+
:value: 1000000000
|
573
|
+
-
|
574
|
+
:rule: "<< miliardom[ >%%spellout-cardinal-masculine-dative-ones>];"
|
575
|
+
:value: 2000000000
|
576
|
+
-
|
577
|
+
:rule: "bilionowi[ >%%spellout-cardinal-masculine-dative-ones>];"
|
578
|
+
:value: 1000000000000
|
579
|
+
-
|
580
|
+
:rule: "<< bilionom[ >%%spellout-cardinal-masculine-dative-ones>];"
|
581
|
+
:value: 2000000000000
|
582
|
+
-
|
583
|
+
:rule: "biliardowi[ >%%spellout-cardinal-masculine-dative-ones>];"
|
584
|
+
:value: 1000000000000000
|
585
|
+
-
|
586
|
+
:rule: "<< biliardom[ >%%spellout-cardinal-masculine-dative-ones>];"
|
587
|
+
:value: 2000000000000000
|
588
|
+
-
|
589
|
+
:rule: "=#,##0=;"
|
590
|
+
:value: 1000000000000000000
|
591
|
+
:type: spellout-cardinal-masculine-dative
|
592
|
+
-
|
593
|
+
:rules:
|
594
|
+
-
|
595
|
+
:rule: "minus >>;"
|
596
|
+
:value: "-x"
|
597
|
+
-
|
598
|
+
:rule: "<%spellout-cardinal-feminine-dative< przecinek >>;"
|
599
|
+
:value: x.x
|
600
|
+
-
|
601
|
+
:rule: zeru;
|
602
|
+
:value: 0
|
603
|
+
-
|
604
|
+
:rule: jednej;
|
605
|
+
:value: 1
|
606
|
+
-
|
607
|
+
:rule: =%spellout-cardinal-masculine-dative=;
|
608
|
+
:value: 2
|
609
|
+
:type: spellout-cardinal-feminine-dative
|
610
|
+
-
|
611
|
+
:rules:
|
612
|
+
-
|
613
|
+
:rule: =%spellout-cardinal-masculine-dative=;
|
614
|
+
:value: 0
|
615
|
+
:type: spellout-cardinal-neuter-dative
|
616
|
+
-
|
617
|
+
:rules:
|
618
|
+
-
|
619
|
+
:rule: =%spellout-cardinal-masculine=;
|
620
|
+
:value: 0
|
621
|
+
:type: spellout-cardinal-masculine-accusative
|
622
|
+
-
|
623
|
+
:rules:
|
624
|
+
-
|
625
|
+
:rule: "minus >%spellout-cardinal-masculine-accusative-animate>;"
|
626
|
+
:value: "-x"
|
627
|
+
-
|
628
|
+
:rule: "<%spellout-cardinal-masculine-accusative-animate< przecinek >>;"
|
629
|
+
:value: x.x
|
630
|
+
-
|
631
|
+
:rule: zero;
|
632
|
+
:value: 0
|
633
|
+
-
|
634
|
+
:rule: jednego;
|
635
|
+
:value: 1
|
636
|
+
-
|
637
|
+
:rule: =%spellout-cardinal-masculine=;
|
638
|
+
:value: 2
|
639
|
+
:type: spellout-cardinal-masculine-accusative-animate
|
640
|
+
-
|
641
|
+
:rules:
|
642
|
+
-
|
643
|
+
:rule: "minus >>;"
|
644
|
+
:value: "-x"
|
645
|
+
-
|
646
|
+
:rule: "<%spellout-cardinal-masculine-accusative-personal< przecinek >>;"
|
647
|
+
:value: x.x
|
648
|
+
-
|
649
|
+
:rule: =%spellout-cardinal-masculine-genitive=;
|
650
|
+
:value: 0
|
651
|
+
-
|
652
|
+
:rule: "tysiąc[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
653
|
+
:value: 1000
|
654
|
+
-
|
655
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{tysiące}other{tysięcy})$[ >%%spellout-cardinal-masculine-genitive-ones>];"
|
656
|
+
:value: 2000
|
657
|
+
-
|
658
|
+
:rule: "milion[ >>];"
|
659
|
+
:value: 1000000
|
660
|
+
-
|
661
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{miliony}other{milionów})$[ >>];"
|
662
|
+
:value: 2000000
|
663
|
+
-
|
664
|
+
:rule: "miliard[ >>];"
|
665
|
+
:value: 1000000000
|
666
|
+
-
|
667
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{miliardy}other{miliardów})$[ >>];"
|
668
|
+
:value: 2000000000
|
669
|
+
-
|
670
|
+
:rule: "bilion[ >>];"
|
671
|
+
:value: 1000000000000
|
672
|
+
-
|
673
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{biliony}other{bilionów})$[ >>];"
|
674
|
+
:value: 2000000000000
|
675
|
+
-
|
676
|
+
:rule: "biliard[ >>];"
|
677
|
+
:value: 1000000000000000
|
678
|
+
-
|
679
|
+
:rule: "<%spellout-cardinal-masculine< $(cardinal,few{biliardy}other{biliardów})$[ >>];"
|
680
|
+
:value: 2000000000000000
|
681
|
+
-
|
682
|
+
:rule: "=#,##0=;"
|
683
|
+
:value: 1000000000000000000
|
684
|
+
:type: spellout-cardinal-masculine-accusative-personal
|
685
|
+
-
|
686
|
+
:rules:
|
687
|
+
-
|
688
|
+
:rule: "minus >>;"
|
689
|
+
:value: "-x"
|
690
|
+
-
|
691
|
+
:rule: "<%spellout-cardinal-feminine-accusative< przecinek >>;"
|
692
|
+
:value: x.x
|
693
|
+
-
|
694
|
+
:rule: zero;
|
695
|
+
:value: 0
|
696
|
+
-
|
697
|
+
:rule: jedną;
|
698
|
+
:value: 1
|
699
|
+
-
|
700
|
+
:rule: =%spellout-cardinal-feminine=;
|
701
|
+
:value: 2
|
702
|
+
:type: spellout-cardinal-feminine-accusative
|
703
|
+
-
|
704
|
+
:rules:
|
705
|
+
-
|
706
|
+
:rule: "minus >>;"
|
707
|
+
:value: "-x"
|
708
|
+
-
|
709
|
+
:rule: "<%spellout-cardinal-neuter-accusative< przecinek >>;"
|
710
|
+
:value: x.x
|
711
|
+
-
|
712
|
+
:rule: zero;
|
713
|
+
:value: 0
|
714
|
+
-
|
715
|
+
:rule: jedno;
|
716
|
+
:value: 1
|
717
|
+
-
|
718
|
+
:rule: =%spellout-cardinal-masculine=;
|
719
|
+
:value: 2
|
720
|
+
:type: spellout-cardinal-neuter-accusative
|
721
|
+
-
|
722
|
+
:rules:
|
723
|
+
-
|
724
|
+
:rule: "minus >>;"
|
725
|
+
:value: "-x"
|
726
|
+
-
|
727
|
+
:rule: "<%spellout-cardinal-masculine-instrumental< przecinek >>;"
|
728
|
+
:value: x.x
|
729
|
+
-
|
730
|
+
:rule: zerem;
|
731
|
+
:value: 0
|
732
|
+
-
|
733
|
+
:rule: jednym;
|
734
|
+
:value: 1
|
735
|
+
-
|
736
|
+
:rule: dwoma;
|
737
|
+
:value: 2
|
738
|
+
-
|
739
|
+
:rule: trzema;
|
740
|
+
:value: 3
|
741
|
+
-
|
742
|
+
:rule: czterema;
|
743
|
+
:value: 4
|
744
|
+
-
|
745
|
+
:rule: pięcioma;
|
746
|
+
:value: 5
|
747
|
+
-
|
748
|
+
:rule: sześcioma;
|
749
|
+
:value: 6
|
750
|
+
-
|
751
|
+
:rule: siedmioma;
|
752
|
+
:value: 7
|
753
|
+
-
|
754
|
+
:rule: ośmioma;
|
755
|
+
:value: 8
|
756
|
+
-
|
757
|
+
:rule: dziewięcioma;
|
758
|
+
:value: 9
|
759
|
+
-
|
760
|
+
:rule: dziesięcioma;
|
761
|
+
:value: 10
|
762
|
+
-
|
763
|
+
:rule: jedenastoma;
|
764
|
+
:value: 11
|
765
|
+
-
|
766
|
+
:rule: dwunastoma;
|
767
|
+
:value: 12
|
768
|
+
-
|
769
|
+
:rule: trzynastoma;
|
770
|
+
:value: 13
|
771
|
+
-
|
772
|
+
:rule: czternastoma;
|
773
|
+
:value: 14
|
774
|
+
-
|
775
|
+
:rule: piętnastoma;
|
776
|
+
:value: 15
|
777
|
+
-
|
778
|
+
:rule: szesnastoma;
|
779
|
+
:value: 16
|
780
|
+
-
|
781
|
+
:rule: siedemnastoma;
|
782
|
+
:value: 17
|
783
|
+
-
|
784
|
+
:rule: osiemnastoma;
|
785
|
+
:value: 18
|
786
|
+
-
|
787
|
+
:rule: dziewiętnastoma;
|
788
|
+
:value: 19
|
789
|
+
-
|
790
|
+
:rule: "dwudziestoma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
791
|
+
:value: 20
|
792
|
+
-
|
793
|
+
:rule: "trzydziestoma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
794
|
+
:value: 30
|
795
|
+
-
|
796
|
+
:rule: "czterdziestoma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
797
|
+
:value: 40
|
798
|
+
-
|
799
|
+
:rule: "pięćdziesięcioma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
800
|
+
:value: 50
|
801
|
+
-
|
802
|
+
:rule: "sześćdziesięcioma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
803
|
+
:value: 60
|
804
|
+
-
|
805
|
+
:rule: "siedemdziesięcioma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
806
|
+
:value: 70
|
807
|
+
-
|
808
|
+
:rule: "osiemdziesięcioma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
809
|
+
:value: 80
|
810
|
+
-
|
811
|
+
:rule: "dziewięćdziesięcioma[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
812
|
+
:value: 90
|
813
|
+
-
|
814
|
+
:rule: "stu[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
815
|
+
:value: 100
|
816
|
+
-
|
817
|
+
:rule: "dwustu[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
818
|
+
:value: 200
|
819
|
+
-
|
820
|
+
:rule: "<%spellout-cardinal-feminine<stu[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
821
|
+
:value: 300
|
822
|
+
-
|
823
|
+
:rule: "<%spellout-cardinal-feminine-genitive<set[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
824
|
+
:value: 500
|
825
|
+
-
|
826
|
+
:rule: "tysiącem[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
827
|
+
:value: 1000
|
828
|
+
-
|
829
|
+
:rule: "<< tysiącami[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
830
|
+
:value: 2000
|
831
|
+
-
|
832
|
+
:rule: "milionem[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
833
|
+
:value: 1000000
|
834
|
+
-
|
835
|
+
:rule: "<< milionami[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
836
|
+
:value: 2000000
|
837
|
+
-
|
838
|
+
:rule: "miliardem[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
839
|
+
:value: 1000000000
|
840
|
+
-
|
841
|
+
:rule: "<< miliardami[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
842
|
+
:value: 2000000000
|
843
|
+
-
|
844
|
+
:rule: "bilionem[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
845
|
+
:value: 1000000000000
|
846
|
+
-
|
847
|
+
:rule: "<< bilionami[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
848
|
+
:value: 2000000000000
|
849
|
+
-
|
850
|
+
:rule: "biliardem[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
851
|
+
:value: 1000000000000000
|
852
|
+
-
|
853
|
+
:rule: "<< biliardami[ >%%spellout-cardinal-masculine-instrumental-ones>];"
|
854
|
+
:value: 2000000000000000
|
855
|
+
-
|
856
|
+
:rule: "=#,##0=;"
|
857
|
+
:value: 1000000000000000000
|
858
|
+
:type: spellout-cardinal-masculine-instrumental
|
859
|
+
-
|
860
|
+
:rules:
|
861
|
+
-
|
862
|
+
:rule: "minus >>;"
|
863
|
+
:value: "-x"
|
864
|
+
-
|
865
|
+
:rule: "<%spellout-cardinal-feminine-instrumental< przecinek >>;"
|
866
|
+
:value: x.x
|
867
|
+
-
|
868
|
+
:rule: zerem;
|
869
|
+
:value: 0
|
870
|
+
-
|
871
|
+
:rule: jedną;
|
872
|
+
:value: 1
|
873
|
+
-
|
874
|
+
:rule: dwiema;
|
875
|
+
:value: 2
|
876
|
+
-
|
877
|
+
:rule: =%spellout-cardinal-masculine-instrumental=;
|
878
|
+
:value: 3
|
879
|
+
:type: spellout-cardinal-feminine-instrumental
|
880
|
+
-
|
881
|
+
:rules:
|
882
|
+
-
|
883
|
+
:rule: =%spellout-cardinal-masculine-instrumental=;
|
884
|
+
:value: 0
|
885
|
+
:type: spellout-cardinal-neuter-instrumental
|
886
|
+
-
|
887
|
+
:rules:
|
888
|
+
-
|
889
|
+
:rule: "minus >%spellout-cardinal-masculine-locative>;"
|
890
|
+
:value: "-x"
|
891
|
+
-
|
892
|
+
:rule: "<%spellout-cardinal-masculine-locative< przecinek >>;"
|
893
|
+
:value: x.x
|
894
|
+
-
|
895
|
+
:rule: zerze;
|
896
|
+
:value: 0
|
897
|
+
-
|
898
|
+
:rule: jednym;
|
899
|
+
:value: 1
|
900
|
+
-
|
901
|
+
:rule: dwóch;
|
902
|
+
:value: 2
|
903
|
+
-
|
904
|
+
:rule: trzech;
|
905
|
+
:value: 3
|
906
|
+
-
|
907
|
+
:rule: czterech;
|
908
|
+
:value: 4
|
909
|
+
-
|
910
|
+
:rule: pięciu;
|
911
|
+
:value: 5
|
912
|
+
-
|
913
|
+
:rule: sześciu;
|
914
|
+
:value: 6
|
915
|
+
-
|
916
|
+
:rule: siedmiu;
|
917
|
+
:value: 7
|
918
|
+
-
|
919
|
+
:rule: ośmiu;
|
920
|
+
:value: 8
|
921
|
+
-
|
922
|
+
:rule: dziewięciu;
|
923
|
+
:value: 9
|
924
|
+
-
|
925
|
+
:rule: dziesięciu;
|
926
|
+
:value: 10
|
927
|
+
-
|
928
|
+
:rule: jedenastu;
|
929
|
+
:value: 11
|
930
|
+
-
|
931
|
+
:rule: dwunastu;
|
932
|
+
:value: 12
|
933
|
+
-
|
934
|
+
:rule: trzynastu;
|
935
|
+
:value: 13
|
936
|
+
-
|
937
|
+
:rule: czternastu;
|
938
|
+
:value: 14
|
939
|
+
-
|
940
|
+
:rule: piętnastu;
|
941
|
+
:value: 15
|
942
|
+
-
|
943
|
+
:rule: szesnastu;
|
944
|
+
:value: 16
|
945
|
+
-
|
946
|
+
:rule: siedemnastu;
|
947
|
+
:value: 17
|
948
|
+
-
|
949
|
+
:rule: osiemnastu;
|
950
|
+
:value: 18
|
951
|
+
-
|
952
|
+
:rule: dziewiętnastu;
|
953
|
+
:value: 19
|
954
|
+
-
|
955
|
+
:rule: "<%%spellout-cardinal-genitive-tens<[ >%%spellout-cardinal-masculine-locative-ones>];"
|
956
|
+
:value: 20
|
957
|
+
-
|
958
|
+
:rule: "stu[ >%%spellout-cardinal-masculine-locative-ones>];"
|
959
|
+
:value: 100
|
960
|
+
-
|
961
|
+
:rule: "dwustu[ >%%spellout-cardinal-masculine-locative-ones>];"
|
962
|
+
:value: 200
|
963
|
+
-
|
964
|
+
:rule: "<%spellout-cardinal-feminine<stu[ >%%spellout-cardinal-masculine-locative-ones>];"
|
965
|
+
:value: 300
|
966
|
+
-
|
967
|
+
:rule: "<%spellout-cardinal-feminine-genitive<set[ >%%spellout-cardinal-masculine-locative-ones>];"
|
968
|
+
:value: 500
|
969
|
+
-
|
970
|
+
:rule: "tysiącu[ >%%spellout-cardinal-masculine-locative-ones>];"
|
971
|
+
:value: 1000
|
972
|
+
-
|
973
|
+
:rule: "<< tysiącach[ >%%spellout-cardinal-masculine-locative-ones>];"
|
974
|
+
:value: 2000
|
975
|
+
-
|
976
|
+
:rule: "milionie[ >%%spellout-cardinal-masculine-locative-ones>];"
|
977
|
+
:value: 1000000
|
978
|
+
-
|
979
|
+
:rule: "<< milionach[ >%%spellout-cardinal-masculine-locative-ones>];"
|
980
|
+
:value: 2000000
|
981
|
+
-
|
982
|
+
:rule: "miliardzie[ >%%spellout-cardinal-masculine-locative-ones>];"
|
983
|
+
:value: 1000000000
|
984
|
+
-
|
985
|
+
:rule: "<< miliardach[ >%%spellout-cardinal-masculine-locative-ones>];"
|
986
|
+
:value: 2000000000
|
987
|
+
-
|
988
|
+
:rule: "bilionie[ >%%spellout-cardinal-masculine-locative-ones>];"
|
989
|
+
:value: 1000000000000
|
990
|
+
-
|
991
|
+
:rule: "<< bilionach[ >%%spellout-cardinal-masculine-locative-ones>];"
|
992
|
+
:value: 2000000000000
|
993
|
+
-
|
994
|
+
:rule: "biliardzie[ >%%spellout-cardinal-masculine-locative-ones>];"
|
995
|
+
:value: 1000000000000000
|
996
|
+
-
|
997
|
+
:rule: "<< biliardach[ >%%spellout-cardinal-masculine-locative-ones>];"
|
998
|
+
:value: 2000000000000000
|
999
|
+
-
|
1000
|
+
:rule: "=#,##0=;"
|
1001
|
+
:value: 1000000000000000000
|
1002
|
+
:type: spellout-cardinal-masculine-locative
|
1003
|
+
-
|
1004
|
+
:rules:
|
1005
|
+
-
|
1006
|
+
:rule: "minus >>;"
|
1007
|
+
:value: "-x"
|
1008
|
+
-
|
1009
|
+
:rule: "<%spellout-cardinal-feminine-locative< przecinek >>;"
|
1010
|
+
:value: x.x
|
1011
|
+
-
|
1012
|
+
:rule: zerze;
|
1013
|
+
:value: 0
|
1014
|
+
-
|
1015
|
+
:rule: jednej;
|
1016
|
+
:value: 1
|
1017
|
+
-
|
1018
|
+
:rule: =%spellout-cardinal-masculine-locative=;
|
1019
|
+
:value: 2
|
1020
|
+
:type: spellout-cardinal-feminine-locative
|
1021
|
+
-
|
1022
|
+
:access: private
|
1023
|
+
:rules:
|
1024
|
+
-
|
1025
|
+
:rule: jeden;
|
1026
|
+
:value: 1
|
1027
|
+
-
|
1028
|
+
:rule: =%spellout-cardinal-masculine-genitive=;
|
1029
|
+
:value: 2
|
1030
|
+
:type: spellout-cardinal-masculine-genitive-ones
|
1031
|
+
-
|
1032
|
+
:access: private
|
1033
|
+
:rules:
|
1034
|
+
-
|
1035
|
+
:rule: jeden;
|
1036
|
+
:value: 1
|
1037
|
+
-
|
1038
|
+
:rule: =%spellout-cardinal-masculine-dative=;
|
1039
|
+
:value: 2
|
1040
|
+
:type: spellout-cardinal-masculine-dative-ones
|
1041
|
+
-
|
1042
|
+
:access: private
|
1043
|
+
:rules:
|
1044
|
+
-
|
1045
|
+
:rule: jeden;
|
1046
|
+
:value: 1
|
1047
|
+
-
|
1048
|
+
:rule: =%spellout-cardinal-masculine-instrumental=;
|
1049
|
+
:value: 2
|
1050
|
+
:type: spellout-cardinal-masculine-instrumental-ones
|
1051
|
+
-
|
1052
|
+
:access: private
|
1053
|
+
:rules:
|
1054
|
+
-
|
1055
|
+
:rule: jeden;
|
1056
|
+
:value: 1
|
1057
|
+
-
|
1058
|
+
:rule: =%spellout-cardinal-masculine-locative=;
|
1059
|
+
:value: 2
|
1060
|
+
:type: spellout-cardinal-masculine-locative-ones
|
1061
|
+
-
|
1062
|
+
:access: private
|
1063
|
+
:rules:
|
1064
|
+
-
|
1065
|
+
:rule: jeden;
|
1066
|
+
:value: 1
|
1067
|
+
-
|
1068
|
+
:rule: =%spellout-cardinal-feminine=;
|
1069
|
+
:value: 2
|
1070
|
+
:type: spellout-cardinal-feminine-ones
|
1071
|
+
-
|
1072
|
+
:rules:
|
1073
|
+
-
|
1074
|
+
:rule: =%spellout-cardinal-masculine-locative=;
|
1075
|
+
:value: 0
|
1076
|
+
:type: spellout-cardinal-neuter-locative
|
1077
|
+
-
|
1078
|
+
:access: private
|
1079
|
+
:rules:
|
1080
|
+
-
|
1081
|
+
:rule: dziesięć;
|
1082
|
+
:value: 1
|
1083
|
+
-
|
1084
|
+
:rule: dwadzieścia;
|
1085
|
+
:value: 2
|
1086
|
+
-
|
1087
|
+
:rule: trzydzieści;
|
1088
|
+
:value: 3
|
1089
|
+
-
|
1090
|
+
:rule: czterdzieści;
|
1091
|
+
:value: 4
|
1092
|
+
-
|
1093
|
+
:rule: pięćdziesiąt;
|
1094
|
+
:value: 5
|
1095
|
+
-
|
1096
|
+
:rule: sześćdziesiąt;
|
1097
|
+
:value: 6
|
1098
|
+
-
|
1099
|
+
:rule: siedemdziesiąt;
|
1100
|
+
:value: 7
|
1101
|
+
-
|
1102
|
+
:rule: osiemdziesiąt;
|
1103
|
+
:value: 8
|
1104
|
+
-
|
1105
|
+
:rule: dziewięćdziesiąt;
|
1106
|
+
:value: 9
|
1107
|
+
:type: spellout-cardinal-tens
|
1108
|
+
-
|
1109
|
+
:access: private
|
1110
|
+
:rules:
|
1111
|
+
-
|
1112
|
+
:rule: dziesięciu;
|
1113
|
+
:value: 1
|
1114
|
+
-
|
1115
|
+
:rule: dwudziestu;
|
1116
|
+
:value: 2
|
1117
|
+
-
|
1118
|
+
:rule: trzydziestu;
|
1119
|
+
:value: 3
|
1120
|
+
-
|
1121
|
+
:rule: czterdziestu;
|
1122
|
+
:value: 4
|
1123
|
+
-
|
1124
|
+
:rule: pięćdziesięciu;
|
1125
|
+
:value: 5
|
1126
|
+
-
|
1127
|
+
:rule: sześćdziesięciu;
|
1128
|
+
:value: 6
|
1129
|
+
-
|
1130
|
+
:rule: siedemdziesięciu;
|
1131
|
+
:value: 7
|
1132
|
+
-
|
1133
|
+
:rule: osiemdziesięciu;
|
1134
|
+
:value: 8
|
1135
|
+
-
|
1136
|
+
:rule: dziewięćdziesięciu;
|
1137
|
+
:value: 9
|
1138
|
+
:type: spellout-cardinal-genitive-tens
|
1139
|
+
-
|
1140
|
+
:access: private
|
1141
|
+
:rules:
|
1142
|
+
-
|
1143
|
+
:rule: <%spellout-cardinal-masculine<<;
|
1144
|
+
:value: 10
|
1145
|
+
-
|
1146
|
+
:rule: <%spellout-cardinal-masculine<<;
|
1147
|
+
:value: 100
|
1148
|
+
-
|
1149
|
+
:rule: <%spellout-cardinal-masculine<<;
|
235
1150
|
:value: 1000
|
236
1151
|
-
|
237
1152
|
:rule: <%%spellout-fraction-digits<<;
|