numbers_and_words 0.11.2 → 0.11.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/README.rdoc +23 -5
- data/lib/numbers_and_words.rb +2 -0
- data/lib/numbers_and_words/core_ext.rb +2 -0
- data/lib/numbers_and_words/core_ext/array.rb +2 -0
- data/lib/numbers_and_words/core_ext/float.rb +2 -0
- data/lib/numbers_and_words/core_ext/integer.rb +2 -0
- data/lib/numbers_and_words/helper_classes.rb +2 -0
- data/lib/numbers_and_words/helper_classes/array_extensions/helpers.rb +6 -4
- data/lib/numbers_and_words/helper_classes/figures_array.rb +2 -0
- data/lib/numbers_and_words/helper_classes/words_array.rb +2 -0
- data/lib/numbers_and_words/i18n.rb +2 -0
- data/lib/numbers_and_words/i18n/initialization.rb +2 -0
- data/lib/numbers_and_words/i18n/locales/numbers.cs.yml +37 -26
- data/lib/numbers_and_words/i18n/locales/numbers.de.yml +5 -4
- data/lib/numbers_and_words/i18n/locales/numbers.en-GB.yml +24 -8
- data/lib/numbers_and_words/i18n/locales/numbers.en.yml +10 -6
- data/lib/numbers_and_words/i18n/locales/numbers.es.yml +6 -5
- data/lib/numbers_and_words/i18n/locales/numbers.et.yml +4 -4
- data/lib/numbers_and_words/i18n/locales/numbers.fr.yml +45 -41
- data/lib/numbers_and_words/i18n/locales/numbers.hu.yml +11 -7
- data/lib/numbers_and_words/i18n/locales/numbers.hy.yml +7 -0
- data/lib/numbers_and_words/i18n/locales/numbers.it.yml +3 -3
- data/lib/numbers_and_words/i18n/locales/numbers.ka.yml +6 -14
- data/lib/numbers_and_words/i18n/locales/numbers.lt.yml +4 -5
- data/lib/numbers_and_words/i18n/locales/numbers.lv.yml +4 -5
- data/lib/numbers_and_words/i18n/locales/numbers.nl.yml +4 -3
- data/lib/numbers_and_words/i18n/locales/numbers.pt-BR.yml +51 -22
- data/lib/numbers_and_words/i18n/locales/numbers.pt.yml +21 -8
- data/lib/numbers_and_words/i18n/locales/numbers.ru.yml +39 -27
- data/lib/numbers_and_words/i18n/locales/numbers.se.yml +3 -3
- data/lib/numbers_and_words/i18n/locales/numbers.tr.yml +3 -3
- data/lib/numbers_and_words/i18n/locales/numbers.ua.yml +39 -15
- data/lib/numbers_and_words/i18n/locales/numbers.vi.yml +13 -0
- data/lib/numbers_and_words/i18n/pluralization.rb +3 -1
- data/lib/numbers_and_words/i18n/plurals/cs.rb +15 -10
- data/lib/numbers_and_words/i18n/plurals/fr.rb +5 -3
- data/lib/numbers_and_words/i18n/plurals/lt.rb +10 -7
- data/lib/numbers_and_words/i18n/plurals/lv.rb +5 -3
- data/lib/numbers_and_words/i18n/plurals/plurals.rb +2 -0
- data/lib/numbers_and_words/i18n/plurals/ru.rb +15 -10
- data/lib/numbers_and_words/i18n/plurals/ua.rb +2 -0
- data/lib/numbers_and_words/strategies.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages.rb +3 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/base.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/cs.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/en-GB.rb +3 -1
- data/lib/numbers_and_words/strategies/array_joiner/languages/en.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/es.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/families/base.rb +5 -3
- data/lib/numbers_and_words/strategies/array_joiner/languages/fr.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/hu.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/pt-BR.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/ru.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/ua.rb +2 -0
- data/lib/numbers_and_words/strategies/array_joiner/languages/vi.rb +12 -0
- data/lib/numbers_and_words/strategies/figures_converter.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators.rb +3 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/cs.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/cs/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/cs/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/cs/integral.rb +3 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en-GB.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en-GB/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en-GB/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en-GB/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/en/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/es.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/es/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/es/fractional.rb +3 -1
- data/lib/numbers_and_words/strategies/figures_converter/decorators/es/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/fr.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/fr/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/fr/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/fr/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/hu.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/hu/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/hu/fractional.rb +3 -1
- data/lib/numbers_and_words/strategies/figures_converter/decorators/hu/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/pt-BR.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/pt-BR/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/pt-BR/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/pt-BR/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ru.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ru/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ru/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ru/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ua.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ua/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ua/fractional.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/ua/integral.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/vi.rb +5 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/vi/base.rb +14 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/vi/fractional.rb +14 -0
- data/lib/numbers_and_words/strategies/figures_converter/decorators/vi/integral.rb +14 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages.rb +14 -15
- data/lib/numbers_and_words/strategies/figures_converter/languages/base.rb +4 -2
- data/lib/numbers_and_words/strategies/figures_converter/languages/cs.rb +4 -4
- data/lib/numbers_and_words/strategies/figures_converter/languages/de.rb +7 -7
- data/lib/numbers_and_words/strategies/figures_converter/languages/en-GB.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages/en.rb +3 -9
- data/lib/numbers_and_words/strategies/figures_converter/languages/es.rb +11 -13
- data/lib/numbers_and_words/strategies/figures_converter/languages/et.rb +2 -2
- data/lib/numbers_and_words/strategies/figures_converter/languages/families/base.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages/families/cyrillic.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages/families/helpers.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages/fr.rb +12 -12
- data/lib/numbers_and_words/strategies/figures_converter/languages/hu.rb +2 -2
- data/lib/numbers_and_words/strategies/figures_converter/languages/{families/latin.rb → hy.rb} +3 -4
- data/lib/numbers_and_words/strategies/figures_converter/languages/it.rb +2 -1
- data/lib/numbers_and_words/strategies/figures_converter/languages/ka.rb +13 -15
- data/lib/numbers_and_words/strategies/figures_converter/languages/lt.rb +8 -12
- data/lib/numbers_and_words/strategies/figures_converter/languages/lv.rb +4 -14
- data/lib/numbers_and_words/strategies/figures_converter/languages/nl.rb +3 -5
- data/lib/numbers_and_words/strategies/figures_converter/languages/pt-BR.rb +14 -12
- data/lib/numbers_and_words/strategies/figures_converter/languages/pt.rb +3 -3
- data/lib/numbers_and_words/strategies/figures_converter/languages/ru.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages/se.rb +2 -1
- data/lib/numbers_and_words/strategies/figures_converter/languages/tr.rb +4 -4
- data/lib/numbers_and_words/strategies/figures_converter/languages/ua.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/languages/vi.rb +100 -0
- data/lib/numbers_and_words/strategies/figures_converter/options.rb +15 -2
- data/lib/numbers_and_words/strategies/figures_converter/options/base.rb +5 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/base/gender.rb +30 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/base/ordinal.rb +28 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/base/remove_zero.rb +30 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/cs.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/cs/gender.rb +3 -14
- data/lib/numbers_and_words/strategies/figures_converter/options/cs/ordinal.rb +3 -15
- data/lib/numbers_and_words/strategies/figures_converter/options/cs/remove_zero.rb +3 -17
- data/lib/numbers_and_words/strategies/figures_converter/options/en-GB.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en-GB/hundreds_with_union.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en-GB/ordinal.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en-GB/pronounced.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en-GB/remove_hyphen.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en-GB/remove_zero.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en/hundreds_with_union.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en/ordinal.rb +3 -10
- data/lib/numbers_and_words/strategies/figures_converter/options/en/pronounced.rb +6 -13
- data/lib/numbers_and_words/strategies/figures_converter/options/en/remove_hyphen.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/en/remove_zero.rb +3 -17
- data/lib/numbers_and_words/strategies/figures_converter/options/es.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/es/apocopated.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/es/gender.rb +3 -17
- data/lib/numbers_and_words/strategies/figures_converter/options/es/remove_zero.rb +3 -17
- data/lib/numbers_and_words/strategies/figures_converter/options/hu.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/hu/ordinal.rb +3 -50
- data/lib/numbers_and_words/strategies/figures_converter/options/pt-BR.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/pt-BR/gender.rb +3 -18
- data/lib/numbers_and_words/strategies/figures_converter/options/pt-BR/ordinal.rb +3 -15
- data/lib/numbers_and_words/strategies/figures_converter/options/pt-BR/remove_zero.rb +3 -17
- data/lib/numbers_and_words/strategies/figures_converter/options/ru.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/ru/gender.rb +3 -17
- data/lib/numbers_and_words/strategies/figures_converter/options/ua.rb +2 -0
- data/lib/numbers_and_words/strategies/figures_converter/options/ua/gender.rb +3 -17
- data/lib/numbers_and_words/translations.rb +4 -0
- data/lib/numbers_and_words/translations/base.rb +3 -1
- data/lib/numbers_and_words/translations/cs.rb +6 -31
- data/lib/numbers_and_words/translations/de.rb +5 -3
- data/lib/numbers_and_words/translations/en-GB.rb +5 -1
- data/lib/numbers_and_words/translations/en.rb +2 -0
- data/lib/numbers_and_words/translations/es.rb +15 -25
- data/lib/numbers_and_words/translations/et.rb +4 -7
- data/lib/numbers_and_words/translations/extensions/fraction_significance.rb +6 -4
- data/lib/numbers_and_words/translations/families/base.rb +5 -3
- data/lib/numbers_and_words/translations/families/cyrillic.rb +6 -8
- data/lib/numbers_and_words/translations/families/latin.rb +2 -0
- data/lib/numbers_and_words/translations/fr.rb +15 -18
- data/lib/numbers_and_words/translations/hu.rb +4 -7
- data/lib/numbers_and_words/translations/hy.rb +21 -0
- data/lib/numbers_and_words/translations/it.rb +2 -0
- data/lib/numbers_and_words/translations/ka.rb +6 -14
- data/lib/numbers_and_words/translations/lt.rb +4 -11
- data/lib/numbers_and_words/translations/lv.rb +4 -11
- data/lib/numbers_and_words/translations/nl.rb +6 -2
- data/lib/numbers_and_words/translations/pt-BR.rb +23 -23
- data/lib/numbers_and_words/translations/pt.rb +5 -11
- data/lib/numbers_and_words/translations/ru.rb +2 -17
- data/lib/numbers_and_words/translations/se.rb +2 -0
- data/lib/numbers_and_words/translations/tr.rb +2 -4
- data/lib/numbers_and_words/translations/ua.rb +2 -13
- data/lib/numbers_and_words/translations/vi.rb +24 -0
- data/lib/numbers_and_words/version.rb +3 -1
- data/lib/numbers_and_words/wrappers.rb +2 -0
- data/lib/numbers_and_words/wrappers/float.rb +3 -1
- data/lib/numbers_and_words/wrappers/integer.rb +2 -0
- metadata +33 -20
@@ -1,10 +1,10 @@
|
|
1
1
|
et:
|
2
2
|
numbers:
|
3
|
-
ones: [
|
4
|
-
teens: [
|
5
|
-
tens: [
|
6
|
-
mega: [ones, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
|
3
|
+
ones: ['null', üks, kaks, kolm, neli, viis, kuus, seitse, kaheksa, üheksa]
|
4
|
+
teens: [_, üksteist, kaksteist, kolmteist, neliteist, viisteist, kuusteist, seitseteist, kaheksateist, üheksateist]
|
5
|
+
tens: [_, kümme, kakskümmend, kolmkümmend, nelikümmend, viiskümmend, kuuskümmend, seitsekümmend, kaheksakümmend, üheksakümmend]
|
7
6
|
hundreds: sada
|
7
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
|
8
8
|
thousands: tuhat
|
9
9
|
millions:
|
10
10
|
one: miljon
|
@@ -1,12 +1,46 @@
|
|
1
1
|
fr:
|
2
2
|
numbers:
|
3
3
|
ones: [zéro, un, deux, trois, quatre, cinq, six, sept, huit, neuf]
|
4
|
-
teens: [
|
5
|
-
tens: [
|
6
|
-
mega: [ones, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
|
4
|
+
teens: [_, onze, douze, treize, quatorze, quinze, seize, dix-sept, dix-huit, dix-neuf]
|
5
|
+
tens: [_, dix, vingt, trente, quarante, cinquante, soixante, soixante-dix, quatre-vingt, quatre-vingt-dix]
|
7
6
|
eighty: quatre-vingts
|
8
|
-
|
9
|
-
|
7
|
+
hundreds:
|
8
|
+
one: cent
|
9
|
+
other: cents
|
10
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
|
11
|
+
thousands:
|
12
|
+
one: mille
|
13
|
+
other: mille
|
14
|
+
millions:
|
15
|
+
one: million
|
16
|
+
other: millions
|
17
|
+
billions:
|
18
|
+
one: milliard
|
19
|
+
other: milliards
|
20
|
+
trillions:
|
21
|
+
one: billion
|
22
|
+
other: billions
|
23
|
+
quadrillions:
|
24
|
+
one: billiard
|
25
|
+
other: billiards
|
26
|
+
quintillions:
|
27
|
+
one: trillion
|
28
|
+
other: trillions
|
29
|
+
sextillions:
|
30
|
+
one: trilliard
|
31
|
+
other: trilliards
|
32
|
+
septillions:
|
33
|
+
one: quadrillion
|
34
|
+
other: quadrillions
|
35
|
+
octillions:
|
36
|
+
one: quadrilliard
|
37
|
+
other: quadrilliards
|
38
|
+
nonillions:
|
39
|
+
one: quintillion
|
40
|
+
other: quintillions
|
41
|
+
decillions:
|
42
|
+
one: quintilliard
|
43
|
+
other: quintilliards
|
10
44
|
micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths, quadrillionths, quintillionths, sextillionths, septillionths, octillionths, nonillionths, decillionths, undecillionths, duodecillionths, tredecillionths, quattuordecillionths]
|
11
45
|
tenths:
|
12
46
|
one: dixième
|
@@ -59,39 +93,9 @@ fr:
|
|
59
93
|
quattuordecillionths:
|
60
94
|
one: septilliardième
|
61
95
|
other: septilliardièmes
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
millions:
|
69
|
-
one: million
|
70
|
-
other: millions
|
71
|
-
billions:
|
72
|
-
one: milliard
|
73
|
-
other: milliards
|
74
|
-
trillions:
|
75
|
-
one: billion
|
76
|
-
other: billions
|
77
|
-
quadrillions:
|
78
|
-
one: billiard
|
79
|
-
other: billiards
|
80
|
-
quintillions:
|
81
|
-
one: trillion
|
82
|
-
other: trillions
|
83
|
-
sextillions:
|
84
|
-
one: trilliard
|
85
|
-
other: trilliards
|
86
|
-
septillions:
|
87
|
-
one: quadrillion
|
88
|
-
other: quadrillions
|
89
|
-
octillions:
|
90
|
-
one: quadrilliard
|
91
|
-
other: quadrilliards
|
92
|
-
nonillions:
|
93
|
-
one: quintillion
|
94
|
-
other: quintillions
|
95
|
-
decillions:
|
96
|
-
one: quintilliard
|
97
|
-
other: quintilliards
|
96
|
+
micro_separator: et
|
97
|
+
micro_prefix:
|
98
|
+
tens: dix
|
99
|
+
hundreds: cent
|
100
|
+
union: '-'
|
101
|
+
union: et
|
@@ -1,16 +1,20 @@
|
|
1
1
|
hu:
|
2
2
|
numbers:
|
3
3
|
ones: [nulla, egy, kettő, három, négy, öt, hat, hét, nyolc, kilenc]
|
4
|
-
ones_with_tens: [
|
5
|
-
tens: [
|
6
|
-
tens_with_ones: [
|
4
|
+
ones_with_tens: [_, egy, kettő, három, négy, öt, hat, hét, nyolc, kilenc]
|
5
|
+
tens: [_, tíz, húsz, harminc, negyven, ötven, hatvan, hetven, nyolcvan, kilencven]
|
6
|
+
tens_with_ones: [_, tizen, huszon, harminc, negyven, ötven, hatvan, hetven, nyolcvan, kilencven]
|
7
7
|
hundreds: száz
|
8
|
-
mega: [
|
9
|
-
union_separator: egész
|
8
|
+
mega: [_, ezer, millió, milliárd, billió, billiárd, trillió, trilliárd, kvadrillió, kvadrilliárd, kvintillió, kvintilliárd]
|
10
9
|
ordinal:
|
11
10
|
ones: [nulladik, első, második, harmadik, negyedik, ötödik, hatodik, hetedik, nyolcadik, kilencedik]
|
12
11
|
ones_with_tens: [nulladik, egyedik, kettedik, harmadik, negyedik, ötödik, hatodik, hetedik, nyolcadik, kilencedik]
|
13
|
-
tens: [
|
12
|
+
tens: [_, tizedik, huszadik, harmincadik, negyvenedik, ötvenedik, hatvanadik, hetvenedik, nyolcvanadik, kilencvenedik]
|
14
13
|
hundreds: századik
|
15
|
-
mega: [
|
14
|
+
mega: [_, ezredik, milliomodik, milliárdodik, billiomodik, billiárdodik, trilliomodik, trilliárdodik, kvadrilliomodik, kvadrilliárdodik, kvintilliomodik, kvintilliárdodik]
|
16
15
|
micro: [_, tized, század, ezred, milliomod, milliárdod, billiomod, billiárdod, trilliomod, trilliárdod, kvadrilliomod, kvadrilliárdod, kvintilliomod, kvintilliárdod]
|
16
|
+
micro_separator: egész
|
17
|
+
micro_prefix:
|
18
|
+
tens: tíz
|
19
|
+
hundreds: száz
|
20
|
+
union: ''
|
@@ -0,0 +1,7 @@
|
|
1
|
+
hy:
|
2
|
+
numbers:
|
3
|
+
ones: [զրո, մեկ, երկու, երեք, չորս, հինգ, վեց, յոթ, ութ, ինը]
|
4
|
+
teens: [_, տասնմեկ, տասներկու, տասներեք, տասնչորս, տասնհինգ, տասնվեց, տասնյոթ, տասնութ, տասնինը]
|
5
|
+
tens: [_, տասը, քսան, երեսուն, քառասուն, հիսուն, վաթսուն, յոթանասուն, ութսուն, իննսուն]
|
6
|
+
hundreds: հարյուր
|
7
|
+
mega: [_, հազար, միլիոն, միլիարդ, տրիլիոն, քառակուսի]
|
@@ -1,7 +1,7 @@
|
|
1
1
|
it:
|
2
2
|
numbers:
|
3
3
|
ones: [zero, uno, due, tre, quattro, cinque, sei, sette, otto, nove]
|
4
|
-
teens: [
|
5
|
-
tens: [
|
4
|
+
teens: [_, undici, dodici, tredici, quattordici, quindici, sedici, diciasette, diciotto, diciannove]
|
5
|
+
tens: [_, dieci, venti, trenta, quaranta, cinquanta, sessanta, settanta, ottanta, novanta]
|
6
6
|
hundreds: cento
|
7
|
-
mega: [
|
7
|
+
mega: [_, mille, milione, miliardo, triliardo, quadrillion, quintillion, sextillion, septillion, octillion, nonillion, decillion]
|
@@ -1,23 +1,15 @@
|
|
1
1
|
ka:
|
2
2
|
numbers:
|
3
3
|
ones: [ნული, ერთი, ორი, სამი, ოთხი, ხუთი, ექვსი, შვიდი, რვა, ცხრა]
|
4
|
-
teens: [
|
5
|
-
tens: [
|
6
|
-
|
7
|
-
|
8
|
-
sixty: სამოცი
|
9
|
-
eighty: ოთხმოცი
|
10
|
-
one_hundred: ასი
|
11
|
-
one_thousand: ათასი
|
12
|
-
one_million: მილიონი
|
13
|
-
one_billion: მილიარდი
|
4
|
+
teens: [_, თერთმეტი, თორმეტი, ცამეტი, თოთხმეტი, თხუთმეტი, თექვსმეტი, ჩვიდმეტი, თვრამეტი, ცხრამეტი]
|
5
|
+
tens: [_, ათი, ოცი, ოცდაათი, ორმოცი, ორმოცდაათი, სამოცი, სამოცდაათი, ოთხმოცი, ოთხმოცდაათი]
|
6
|
+
hundreds: ასი
|
7
|
+
mega: [_, ათასი, მილიონი, მილიარდი]
|
14
8
|
partials:
|
15
9
|
ones: [ნული, ერთი, ორ, სამ, ოთხ, ხუთ, ექვს, შვიდ, რვა, ცხრა]
|
16
10
|
twenty: ოცდა
|
17
11
|
forty: ორმოცდა
|
18
12
|
sixty: სამოცდა
|
19
13
|
eighty: ოთხმოცდა
|
20
|
-
|
21
|
-
|
22
|
-
one_million: მილიონ
|
23
|
-
one_billion: მილიარდ
|
14
|
+
hundreds: ას
|
15
|
+
mega: [_, ათას, მილიონ, მილიარდ]
|
@@ -1,11 +1,10 @@
|
|
1
1
|
lt:
|
2
2
|
numbers:
|
3
3
|
ones: [nulis, vienas, du, trys, keturi, penki, šeši, septyni, aštuoni, devyni]
|
4
|
-
teens: [
|
5
|
-
tens: [
|
6
|
-
|
7
|
-
|
8
|
-
one_hundred: šimtas
|
4
|
+
teens: [_, vienuolika, dvylika, trylika, keturiolika, penkiolika, šešiolika, septyniolika, aštuoniolika, devyniolika]
|
5
|
+
tens: [_, dešimt, dvidešimt, trisdešimt, keturiasdešimt, penkiasdešimt, šešiasdešimt, septyniasdešimt, aštuoniasdešimt, devyniasdešimt]
|
6
|
+
hundreds: [_, šimtas, du šimtai, trys šimtai, keturi šimtai, penki šimtai, šeši šimtai, septyni šimtai, aštuoni šimtai, devyni šimtai]
|
7
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
|
9
8
|
thousands:
|
10
9
|
one: tūkstantis
|
11
10
|
ones: tūkstančiai
|
@@ -1,11 +1,10 @@
|
|
1
1
|
lv:
|
2
2
|
numbers:
|
3
3
|
ones: [nulle, viens, divi, trīs, četri, pieci, seši, septiņi, astoņi, deviņi]
|
4
|
-
teens: [
|
5
|
-
tens: [
|
6
|
-
|
7
|
-
|
8
|
-
one_hundred: viens simts
|
4
|
+
teens: [_, vienpadsmit, divpadsmit, trīspadsmit, četrpadsmit, piecpadsmit, sešpadsmit, septiņpadsmit, astoņpadsmit, deviņpadsmit]
|
5
|
+
tens: [_, desmit, divdesmit, trīsdesmit, četrdesmit, piecdesmit, sešdesmit, septiņdesmit, astoņdesmit, deviņdesmit]
|
6
|
+
hundreds: [_, viens simts, divi simti, trīs simti, četri simti, pieci simti, seši simti, septiņi simti, astoņi simti, deviņi simti]
|
7
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
|
9
8
|
thousands:
|
10
9
|
one: tūkstotis
|
11
10
|
other: tūkstoši
|
@@ -1,7 +1,8 @@
|
|
1
1
|
nl:
|
2
2
|
numbers:
|
3
3
|
ones: [nul, één, twee, drie, vier, vijf, zes, zeven, acht, negen]
|
4
|
-
teens: [
|
5
|
-
tens: [
|
4
|
+
teens: [_, elf, twaalf, dertien, veertien, vijftien, zestien, zeventien, achttien, negentien]
|
5
|
+
tens: [_, tien, twintig, dertig, veertig, vijftig, zestig, zeventig, tachtig, negentig]
|
6
6
|
hundreds: honderd
|
7
|
-
mega: [
|
7
|
+
mega: [_, duizend, miljoen, miljard, biljoen, biljard, triljoen, triljard, septiljoen, octillion, noniljoen, decillion]
|
8
|
+
union: en
|
@@ -1,22 +1,46 @@
|
|
1
1
|
pt-BR:
|
2
2
|
numbers:
|
3
|
-
union: e
|
4
|
-
union_separator: e
|
5
|
-
integral:
|
6
|
-
one: inteiro
|
7
|
-
other: inteiros
|
8
3
|
ones:
|
9
4
|
male: [zero, um, dois, três, quatro, cinco, seis, sete, oito, nove]
|
10
5
|
female: [zero, uma, duas, três, quatro, cinco, seis, sete, oito, nove]
|
11
|
-
|
12
|
-
|
13
|
-
tens: [zero, dez, vinte, trinta, quarenta, cinquenta, sessenta, setenta, oitenta, noventa]
|
6
|
+
teens: [_, onze, doze, treze, quatorze, quinze, dezesseis, dezessete, dezoito, dezenove]
|
7
|
+
tens: [_, dez, vinte, trinta, quarenta, cinquenta, sessenta, setenta, oitenta, noventa]
|
14
8
|
hundreds:
|
15
|
-
male: [cento, duzentos, trezentos, quatrocentos, quinhentos, seiscentos, setecentos, oitocentos, novecentos]
|
16
|
-
female: [cento, duzentas, trezentas, quatrocentas, quinhentas, seiscentas, setecentas, oitocentas, novecentas]
|
9
|
+
male: [_, cento, duzentos, trezentos, quatrocentos, quinhentos, seiscentos, setecentos, oitocentos, novecentos]
|
10
|
+
female: [_, cento, duzentas, trezentas, quatrocentas, quinhentas, seiscentas, setecentas, oitocentas, novecentas]
|
17
11
|
one_hundred: cem
|
18
|
-
mega: [_,
|
19
|
-
|
12
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillions, sextillions, septillions, octillions, nonillions, decillions]
|
13
|
+
thousands: mil
|
14
|
+
millions:
|
15
|
+
one: milhão
|
16
|
+
other: milhões
|
17
|
+
billions:
|
18
|
+
one: bilhão
|
19
|
+
other: bilhões
|
20
|
+
trillions:
|
21
|
+
one: trilhão
|
22
|
+
other: trilhões
|
23
|
+
quadrillions:
|
24
|
+
one: quadrilhão
|
25
|
+
other: quadrilhões
|
26
|
+
quintillions:
|
27
|
+
one: quintilhão
|
28
|
+
other: quintilhões
|
29
|
+
sextillions:
|
30
|
+
one: sextilhão
|
31
|
+
other: sextilhões
|
32
|
+
septillions:
|
33
|
+
one: septilhão
|
34
|
+
other: septilhões
|
35
|
+
octillions:
|
36
|
+
one: octilhão
|
37
|
+
other: octilhões
|
38
|
+
nonillions:
|
39
|
+
one: nonilhão
|
40
|
+
other: nonilhões
|
41
|
+
decillions:
|
42
|
+
one: decilhão
|
43
|
+
other: decilhões
|
20
44
|
ordinal:
|
21
45
|
ones:
|
22
46
|
male: [zero, primeiro, segundo, terceiro, quarto, quinto, sexto, sétimo, oitavo, nono]
|
@@ -25,20 +49,15 @@ pt-BR:
|
|
25
49
|
male: [_, décimo, vigésimo, trigésimo, quadragésimo, quinquagésimo, sexagésimo, septuagésimo, octogésimo, nonagésimo]
|
26
50
|
female: [_, décima, vigésima, trigésima, quadragésima, quinquagésima, sexagésima, septuagésima, octogésima, nonagésima]
|
27
51
|
hundreds:
|
28
|
-
male: [centésimo, ducentésimo, trecentésimo, quadringentésimo, quingentésimo, sexcentésimo, septingentésimo, octingentésimo, noningentésimo]
|
29
|
-
female: [centésima, ducentésima, trecentésima, quadringentésima, quingentésima, sexcentésima, septingentésima, octingentésima, noningentésima]
|
52
|
+
male: [_, centésimo, ducentésimo, trecentésimo, quadringentésimo, quingentésimo, sexcentésimo, septingentésimo, octingentésimo, noningentésimo]
|
53
|
+
female: [_, centésima, ducentésima, trecentésima, quadringentésima, quingentésima, sexcentésima, septingentésima, octingentésima, noningentésima]
|
30
54
|
mega:
|
31
55
|
male: [_, milésimo, milionésimo, bilionésimo, trilionésimo, quadrilionésimo, sextilionésimo, septilionésimo, octilionésimo, nonilionésimo]
|
32
56
|
female: [_, milésima, milionésima, bilionésima, trilionésima, quadrilionésima, sextilionésima, septilionésima, octilionésima, nonilionésima]
|
57
|
+
integral:
|
58
|
+
one: inteiro
|
59
|
+
other: inteiros
|
33
60
|
micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths, quadrillionths, quintillionths, sextillionths, septillionths, octillionths, nonillionths, decillionths, undecillionths, duodecillionths, tredecillionths, quattuordecillionths]
|
34
|
-
micro_prefix:
|
35
|
-
tens:
|
36
|
-
one: décimo
|
37
|
-
other: décimos
|
38
|
-
hundreds:
|
39
|
-
one: centésimo
|
40
|
-
other: centésimos
|
41
|
-
separator: de
|
42
61
|
tenths:
|
43
62
|
one: décimo
|
44
63
|
other: décimos
|
@@ -90,3 +109,13 @@ pt-BR:
|
|
90
109
|
quattuordecillionths:
|
91
110
|
one: quadringentilionésimo
|
92
111
|
other: quadringentilionésimos
|
112
|
+
micro_separator: e
|
113
|
+
micro_prefix:
|
114
|
+
tens:
|
115
|
+
one: décimo
|
116
|
+
other: décimos
|
117
|
+
hundreds:
|
118
|
+
one: centésimo
|
119
|
+
other: centésimos
|
120
|
+
union: ' de '
|
121
|
+
union: e
|
@@ -1,12 +1,25 @@
|
|
1
1
|
pt:
|
2
2
|
numbers:
|
3
|
-
union: e
|
4
3
|
ones: [zero, um, dois, três, quatro, cinco, seis, sete, oito, nove]
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
twenty: vinte
|
9
|
-
hundreds: [cento, duzentos, trezentos, quatrocentos, quinhentos, seiscentos, setecentos, oitocentos, novecentos]
|
4
|
+
teens: [_, onze, doze, treze, quatorze, quinze, dezesseis, dezessete, dezoito, dezenove]
|
5
|
+
tens: [_, dez, vinte, trinta, quarenta, cinquenta, sessenta, setenta, oitenta, noventa]
|
6
|
+
hundreds: [_, cento, duzentos, trezentos, quatrocentos, quinhentos, seiscentos, setecentos, oitocentos, novecentos]
|
10
7
|
one_hundred: cem
|
11
|
-
mega: [_,
|
12
|
-
|
8
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillions]
|
9
|
+
thousands: mil
|
10
|
+
millions:
|
11
|
+
one: milhão
|
12
|
+
other: milhões
|
13
|
+
billions:
|
14
|
+
one: bilhão
|
15
|
+
other: bilhões
|
16
|
+
trillions:
|
17
|
+
one: trilhão
|
18
|
+
other: trilhões
|
19
|
+
quadrillions:
|
20
|
+
one: quadrilhão
|
21
|
+
other: quadrilhões
|
22
|
+
quintillions:
|
23
|
+
one: quinquilhão
|
24
|
+
other: quinquilhões
|
25
|
+
union: e
|
@@ -4,20 +4,10 @@ ru:
|
|
4
4
|
male: [ноль, один, два, три, четыре, пять, шесть, семь, восемь, девять]
|
5
5
|
female: [ноль, одна, двe, три, четыре, пять, шесть, семь, восемь, девять]
|
6
6
|
neuter: [ноль, одно, два, три, четыре, пять, шесть, семь, восемь, девять]
|
7
|
-
teens: [
|
8
|
-
tens: [
|
9
|
-
hundreds: [
|
10
|
-
|
11
|
-
union: 'и'
|
12
|
-
micro:
|
13
|
-
one: [_, десятая, сотая, тысячная, миллионная, миллиардная, триллионная]
|
14
|
-
few: [_, десятых, сотых, тысячных, миллионных, миллиардных, триллионных]
|
15
|
-
many: [_, десятых, сотых, тысячных, миллионных, миллиардных, триллионных]
|
16
|
-
sub_micro: [_, десяти, сто]
|
17
|
-
integral:
|
18
|
-
one: целая
|
19
|
-
few: целых
|
20
|
-
many: целых
|
7
|
+
teens: [_, одиннадцать, двенадцать, тринадцать, четырнадцать, пятнадцать, шестнадцать, семнадцать, восемнадцать, девятнадцать]
|
8
|
+
tens: [_, десять, двадцать, тридцать, сорок, пятьдесят, шестьдесят, семьдесят, восемьдесят, девяносто]
|
9
|
+
hundreds: [_, сто, двести, триста, четыреста, пятьсот, шестьсот, семьсот, восемьсот, девятьсот]
|
10
|
+
mega: [_, thousands, millions, billions, trillions, quadrillions, quintillions, sextillions, septillions, octillions, nonillions, decillions]
|
21
11
|
thousands:
|
22
12
|
one: тысяча
|
23
13
|
few: тысячи
|
@@ -62,16 +52,38 @@ ru:
|
|
62
52
|
one: дециллион
|
63
53
|
few: дециллиона
|
64
54
|
many: дециллионов
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
55
|
+
integral:
|
56
|
+
one: целая
|
57
|
+
few: целых
|
58
|
+
many: целых
|
59
|
+
micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths]
|
60
|
+
tenths:
|
61
|
+
one: десятая
|
62
|
+
few: десятых
|
63
|
+
many: десятых
|
64
|
+
hundredths:
|
65
|
+
one: сотая
|
66
|
+
few: сотых
|
67
|
+
many: сотых
|
68
|
+
thousandths:
|
69
|
+
one: тысячная
|
70
|
+
few: тысячных
|
71
|
+
many: тысячных
|
72
|
+
millionths:
|
73
|
+
one: миллионная
|
74
|
+
few: миллионных
|
75
|
+
many: миллионных
|
76
|
+
billionths:
|
77
|
+
one: миллиардная
|
78
|
+
few: миллиардных
|
79
|
+
many: миллиардных
|
80
|
+
trillionths:
|
81
|
+
one: триллионная
|
82
|
+
few: триллионных
|
83
|
+
many: триллионных
|
84
|
+
micro_separator: 'и'
|
85
|
+
micro_prefix:
|
86
|
+
tens: десяти
|
87
|
+
hundreds: сто
|
88
|
+
union: ' '
|
89
|
+
union: 'и'
|