numbers_and_words 0.11.2 → 0.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +10 -0
  3. data/lib/numbers_and_words/i18n/locales/numbers.cs.yml +37 -26
  4. data/lib/numbers_and_words/i18n/locales/numbers.de.yml +5 -4
  5. data/lib/numbers_and_words/i18n/locales/numbers.en-GB.yml +24 -8
  6. data/lib/numbers_and_words/i18n/locales/numbers.en.yml +10 -6
  7. data/lib/numbers_and_words/i18n/locales/numbers.es.yml +6 -5
  8. data/lib/numbers_and_words/i18n/locales/numbers.et.yml +4 -4
  9. data/lib/numbers_and_words/i18n/locales/numbers.fr.yml +45 -41
  10. data/lib/numbers_and_words/i18n/locales/numbers.hu.yml +11 -7
  11. data/lib/numbers_and_words/i18n/locales/numbers.it.yml +3 -3
  12. data/lib/numbers_and_words/i18n/locales/numbers.ka.yml +6 -14
  13. data/lib/numbers_and_words/i18n/locales/numbers.lt.yml +4 -5
  14. data/lib/numbers_and_words/i18n/locales/numbers.lv.yml +4 -5
  15. data/lib/numbers_and_words/i18n/locales/numbers.nl.yml +4 -3
  16. data/lib/numbers_and_words/i18n/locales/numbers.pt-BR.yml +51 -22
  17. data/lib/numbers_and_words/i18n/locales/numbers.pt.yml +21 -8
  18. data/lib/numbers_and_words/i18n/locales/numbers.ru.yml +39 -27
  19. data/lib/numbers_and_words/i18n/locales/numbers.se.yml +3 -3
  20. data/lib/numbers_and_words/i18n/locales/numbers.tr.yml +3 -3
  21. data/lib/numbers_and_words/i18n/locales/numbers.ua.yml +39 -15
  22. data/lib/numbers_and_words/i18n/locales/numbers.vi.yml +13 -0
  23. data/lib/numbers_and_words/strategies/array_joiner/languages.rb +1 -0
  24. data/lib/numbers_and_words/strategies/array_joiner/languages/en-GB.rb +1 -1
  25. data/lib/numbers_and_words/strategies/array_joiner/languages/families/base.rb +3 -3
  26. data/lib/numbers_and_words/strategies/array_joiner/languages/vi.rb +10 -0
  27. data/lib/numbers_and_words/strategies/figures_converter/decorators.rb +1 -0
  28. data/lib/numbers_and_words/strategies/figures_converter/decorators/hu/fractional.rb +1 -1
  29. data/lib/numbers_and_words/strategies/figures_converter/decorators/vi.rb +3 -0
  30. data/lib/numbers_and_words/strategies/figures_converter/{languages/families/latin.rb → decorators/vi/base.rb} +3 -4
  31. data/lib/numbers_and_words/strategies/figures_converter/decorators/vi/fractional.rb +12 -0
  32. data/lib/numbers_and_words/strategies/figures_converter/decorators/vi/integral.rb +12 -0
  33. data/lib/numbers_and_words/strategies/figures_converter/languages.rb +11 -15
  34. data/lib/numbers_and_words/strategies/figures_converter/languages/base.rb +2 -2
  35. data/lib/numbers_and_words/strategies/figures_converter/languages/cs.rb +2 -4
  36. data/lib/numbers_and_words/strategies/figures_converter/languages/de.rb +5 -7
  37. data/lib/numbers_and_words/strategies/figures_converter/languages/en.rb +0 -2
  38. data/lib/numbers_and_words/strategies/figures_converter/languages/es.rb +0 -2
  39. data/lib/numbers_and_words/strategies/figures_converter/languages/et.rb +0 -2
  40. data/lib/numbers_and_words/strategies/figures_converter/languages/fr.rb +10 -12
  41. data/lib/numbers_and_words/strategies/figures_converter/languages/hu.rb +0 -2
  42. data/lib/numbers_and_words/strategies/figures_converter/languages/it.rb +0 -1
  43. data/lib/numbers_and_words/strategies/figures_converter/languages/ka.rb +10 -12
  44. data/lib/numbers_and_words/strategies/figures_converter/languages/lt.rb +6 -12
  45. data/lib/numbers_and_words/strategies/figures_converter/languages/lv.rb +2 -14
  46. data/lib/numbers_and_words/strategies/figures_converter/languages/nl.rb +0 -2
  47. data/lib/numbers_and_words/strategies/figures_converter/languages/pt-BR.rb +1 -3
  48. data/lib/numbers_and_words/strategies/figures_converter/languages/pt.rb +1 -3
  49. data/lib/numbers_and_words/strategies/figures_converter/languages/se.rb +0 -1
  50. data/lib/numbers_and_words/strategies/figures_converter/languages/tr.rb +2 -4
  51. data/lib/numbers_and_words/strategies/figures_converter/languages/vi.rb +96 -0
  52. data/lib/numbers_and_words/translations.rb +1 -0
  53. data/lib/numbers_and_words/translations/cs.rb +4 -31
  54. data/lib/numbers_and_words/translations/de.rb +3 -3
  55. data/lib/numbers_and_words/translations/en-GB.rb +3 -1
  56. data/lib/numbers_and_words/translations/es.rb +5 -20
  57. data/lib/numbers_and_words/translations/et.rb +2 -7
  58. data/lib/numbers_and_words/translations/extensions/fraction_significance.rb +4 -4
  59. data/lib/numbers_and_words/translations/families/base.rb +3 -3
  60. data/lib/numbers_and_words/translations/families/cyrillic.rb +4 -8
  61. data/lib/numbers_and_words/translations/fr.rb +9 -14
  62. data/lib/numbers_and_words/translations/hu.rb +2 -7
  63. data/lib/numbers_and_words/translations/ka.rb +3 -13
  64. data/lib/numbers_and_words/translations/lt.rb +2 -11
  65. data/lib/numbers_and_words/translations/lv.rb +2 -11
  66. data/lib/numbers_and_words/translations/nl.rb +3 -2
  67. data/lib/numbers_and_words/translations/pt-BR.rb +14 -21
  68. data/lib/numbers_and_words/translations/pt.rb +3 -12
  69. data/lib/numbers_and_words/translations/ru.rb +0 -17
  70. data/lib/numbers_and_words/translations/tr.rb +0 -4
  71. data/lib/numbers_and_words/translations/ua.rb +0 -13
  72. data/lib/numbers_and_words/translations/vi.rb +21 -0
  73. data/lib/numbers_and_words/version.rb +1 -1
  74. metadata +11 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 99432fdd87f3645a56d6ce0aa7167af06e8b429c
4
- data.tar.gz: b909e6a544bb97055e37ad5206ab7cc6c37dcea9
3
+ metadata.gz: 61c568842b41f624cae36c4bdb5648667bd03fb4
4
+ data.tar.gz: 9e5179969bd71542b5049171eff600ca785013dd
5
5
  SHA512:
6
- metadata.gz: a3c3e5476646cf106cb9f1785afd1eae53719d635ed658d01332d26ec587d5738df28d816708c57b46eb7a875f4292bfaa1c1474ae80584183ede89ca8f41945
7
- data.tar.gz: 9c3ba5f8931deee4e0a1324d438cc7f1d2f74aa3839eec2ee743a34afa28a9fd4d4de3c5590f2726c45c83ff7d81e264f2bbb78c11f2074afdc39c4fb497f004
6
+ metadata.gz: 2d94f84e06d4f34094f0d1d034bfac68bce598f60c1fa0b7613eef49ead313d401e3a124e3e3bc1a4680aed936270dba1316bb9e3cfdf5849251b8562646b34a
7
+ data.tar.gz: 58cce919fac2b0f9a2efcabec8d35a6bd6ebf1f19503aeba6781bddb25ab90704438064150f604d9bfcd8665a981cfeec81d1e31ee89c54bdb6e1d585c134632
@@ -82,6 +82,9 @@ Converte números em letras utilizando a biblioteca I18n.
82
82
  I18n.with_locale(:cs) { 42.to_words }
83
83
  => "čtyřicetdva"
84
84
 
85
+ I18n.with_locale(:vi) { 42.to_words }
86
+ => "bốn mươi hai"
87
+
85
88
  21.to_words
86
89
  => "twenty-one"
87
90
  => "veintiuno"
@@ -100,6 +103,7 @@ Converte números em letras utilizando a biblioteca I18n.
100
103
  => "tjugo-en"
101
104
  => "dvacetjedna"
102
105
  => "vinte e um"
106
+ => "hai mươi mốt"
103
107
 
104
108
  231.to_words
105
109
  => "two hundred thirty-one"
@@ -119,6 +123,7 @@ Converte números em letras utilizando a biblioteca I18n.
119
123
  => "två hundra trettio-en"
120
124
  => "dvě stě třicetjedna"
121
125
  => "duzentos e trinta e um"
126
+ => "hai trăm ba mươi mốt"
122
127
 
123
128
  4030.to_words
124
129
  => "four thousand thirty"
@@ -137,6 +142,7 @@ Converte números em letras utilizando a biblioteca I18n.
137
142
  => "vierthousanddertig"
138
143
  => "fyra tusen trettio"
139
144
  => "čtyři tisíce třicet"
145
+ => "bốn nghìn không trăm ba mươi"
140
146
 
141
147
  1000100.to_words
142
148
  => "one million one hundred"
@@ -155,6 +161,7 @@ Converte números em letras utilizando a biblioteca I18n.
155
161
  => "één miljoen honderd"
156
162
  => "en miljoner en hundra"
157
163
  => "jeden milión jedno sto"
164
+ => "một triệu một trăm"
158
165
 
159
166
  1000000000000000000000000000000000.to_words
160
167
  => "one decillion"
@@ -184,6 +191,7 @@ Converte números em letras utilizando a biblioteca I18n.
184
191
  => ["üks", "kaks", "kolm"]
185
192
  => ["ერთი", "ორი", "სამი"]
186
193
  => ["jedna", "dva", "tři"]
194
+ => ["một", "hai", "ba"]
187
195
 
188
196
  [11, 22, 133].to_words
189
197
  => ["eleven", "twenty-two", "one hundred thirty-three"]
@@ -202,6 +210,7 @@ Converte números em letras utilizando a biblioteca I18n.
202
210
  => ["elf", "tweeentwintig", "honderddrieendertig"]
203
211
  => ["elva", "tjugo-två", "en hundra trettio-tre"]
204
212
  => ["jedenáct", "dvacetdva", "jedno sto třicettři"]
213
+ => ["mười một", "hai mươi hai", "một trăm ba mươi ba"]
205
214
 
206
215
  21.77.to_words
207
216
  => "twenty-one and seventy-seven hundredths"
@@ -209,6 +218,7 @@ Converte números em letras utilizando a biblioteca I18n.
209
218
  => "двадцять одна цiла i сiмдесят сiм сотих"
210
219
  => "huszonegy egész hetvenhét század"
211
220
  => "twenty-one point seven seven"
221
+ => "hai mươi mốt phẩy bảy mươi bảy"
212
222
 
213
223
  == Language options / Языковые опции
214
224
 
@@ -1,22 +1,13 @@
1
1
  cs:
2
2
  numbers:
3
- union: ''
4
- union_separator: ''
5
- integral: celých
6
3
  ones:
7
4
  male: [nula, jeden, dva, tři, čtyři, pět, šest, sedm, osm, devět]
8
5
  female: [nula, jedna, dvě, tři, čtyři, pět, šest, sedm, osm, devět]
9
6
  neuter: [nula, jedno, dvě, tři, čtyři, pět, šest, sedm, osm, devět]
10
- teens: [deset, jedenáct, dvanáct, třináct, čtrnáct, patnáct, šestnáct, sedmnáct, osmnáct, devatenáct]
7
+ teens: [_, jedenáct, dvanáct, třináct, čtrnáct, patnáct, šestnáct, sedmnáct, osmnáct, devatenáct]
11
8
  tens: [_, deset, dvacet, třicet, čtyřicet, padesát, šedesát, sedmdesát, osmdesát, devadesát]
12
9
  hundreds: [_, jedno sto, dvě stě, tři sta, čtyři sta, pět set, šest set, sedm set, osm set, devět set]
13
- # gem pouziva se deleni po 10^3, http://www.converter.cz/prevody/velka-cisla.htm
14
- # mega: [ones, thousands, miliony, miliardy, biliony, biliardy, triliony, triliardy, quadriliony, quadriliardy]
15
- micro:
16
- one: [_, desetina, setina, tisícina, milióntina, miliardtina, bilióntina]
17
- few: [_, desetiny, setiny, tisíciny, milióntiny, miliardtiny, bilióntiny]
18
- many: [_, desetin, setin, tisícin, milióntin, miliardtin, bilióntin]
19
- sub_micro: [_, deseti, sto]
10
+ mega: [_, thousands, millions, billions, trillions, quadrillions, quintillions, sextillions, septillions, octillions]
20
11
  thousands:
21
12
  one: tisíc
22
13
  few: tisíce
@@ -53,26 +44,15 @@ cs:
53
44
  one: kvadriliarda
54
45
  few: kvadriliardy
55
46
  many: kvadriliard
56
- mega:
57
- - ones
58
- - thousands
59
- - millions
60
- - billions
61
- - trillions
62
- - quadrillions
63
- - quintillion
64
- - sextillions
65
- - septillions
66
- - octillions
67
47
  ordinal:
68
48
  ones:
69
49
  male: [nultý, první, druhý, třetí, čtvrtý, pátý, šestý, sedmý, osmý, devátý]
70
50
  female: [nultá, první, druhá, třetí, čtvrtá, pátá, šestá, sedmá, osmá, devátá]
71
51
  neuter: [nulté, první, druhé, třetí, čtvrté, páté, šesté, sedmé, osmé, deváté]
72
52
  teens:
73
- male: [desátý, jedenáctý, dvanáctý, třináctý, čtrnáctý, patnáctý, šestnáctý, sedmnáctý, osmnáctý, devatenáctý]
74
- female: [desátá, jedenáctá, dvanáctá, třináctá, čtrnáctá, patnáctá, šestnáctá, sedmnáctá, osmnáctá, devatenáctá]
75
- neuter: [desáté, jedenácté, dvanácté, třinácté, čtrnácté, patnácté, šestnácté, sedmnácté, osmnácté, devatenácté]
53
+ male: [_, jedenáctý, dvanáctý, třináctý, čtrnáctý, patnáctý, šestnáctý, sedmnáctý, osmnáctý, devatenáctý]
54
+ female: [_, jedenáctá, dvanáctá, třináctá, čtrnáctá, patnáctá, šestnáctá, sedmnáctá, osmnáctá, devatenáctá]
55
+ neuter: [_, jedenácté, dvanácté, třinácté, čtrnácté, patnácté, šestnácté, sedmnácté, osmnácté, devatenácté]
76
56
  tens:
77
57
  male: [_, desátý, dvacátý, třicátý, čtyřicátý, padesátý, šedesátý, sedmdesátý, osmdesátý, devadesátý]
78
58
  female: [_, desátá, dvacátá, třicátá, čtyřicátá, padesátá, šedesátá, sedmdesátá, osmdesátá, devadesátá]
@@ -81,4 +61,35 @@ cs:
81
61
  male: [_, stý, dvoustý, třístý, čtyřstý, pětistý, šestistý, sedmistý, osmistý, devítistý]
82
62
  female: [_, stá, dvoustá, třístá, čtyřstá, pětistá, šestistá, sedmistá, osmistá, devítistá]
83
63
  neuter: [_, sté, dvousté, třísté, čtyřsté, pětisté, šestisté, sedmisté, osmisté, devítisté]
84
-
64
+ integral: celých
65
+ micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths]
66
+ tenths:
67
+ one: desetina
68
+ few: desetiny
69
+ many: desetin
70
+ hundredths:
71
+ one: setina
72
+ few: setiny
73
+ many: setin
74
+ thousandths:
75
+ one: tisícina
76
+ few: tisíciny
77
+ many: tisícin
78
+ millionths:
79
+ one: milióntina
80
+ few: milióntiny
81
+ many: milióntin
82
+ billionths:
83
+ one: miliardtina
84
+ few: miliardtiny
85
+ many: miliardtin
86
+ trillionths:
87
+ one: bilióntina
88
+ few: bilióntiny
89
+ many: bilióntin
90
+ micro_separator: ''
91
+ micro_prefix:
92
+ tens: deseti
93
+ hundreds: sto
94
+ union: ''
95
+ union: ''
@@ -4,10 +4,10 @@ de:
4
4
  default: ['null', eins, zwei, drei, vier, fünf, sechs, sieben, acht, neun]
5
5
  combine: ['null', ein, zwei, drei, vier, fünf, sechs, sieben, acht, neun]
6
6
  gender: ['null', eine, zwei, drei, vier, fünf, sechs, sieben, acht, neun]
7
- teens: [zehn, elf, zwölf, dreizehn, vierzehn, fünfzehn, sechzehn, siebzehn, achtzehn, neunzehn]
8
- tens: [null, zehn, zwanzig, dreißig, vierzig, fünfzig, sechzig, siebzig, achtzig, neunzig]
9
- mega: [ones, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
7
+ teens: [_, elf, zwölf, dreizehn, vierzehn, fünfzehn, sechzehn, siebzehn, achtzehn, neunzehn]
8
+ tens: [_, zehn, zwanzig, dreißig, vierzig, fünfzig, sechzig, siebzig, achtzig, neunzig]
10
9
  hundreds: hundert
10
+ mega: [_, thousands, millions, billions, trillions, quadrillions, quintillion, sextillions, septillions, octillions, nonillions, decillions]
11
11
  thousands:
12
12
  one: tausend
13
13
  other: tausend
@@ -40,4 +40,5 @@ de:
40
40
  other: Quintillionen
41
41
  decillions:
42
42
  one: Quintilliarde
43
- other: Quintilliarden
43
+ other: Quintilliarden
44
+ union: und
@@ -1,18 +1,17 @@
1
1
  en-GB:
2
2
  numbers:
3
3
  ones: [zero, one, two, three, four, five, six, seven, eight, nine]
4
- teens: [ten, eleven, twelve, thirteen, fourteen, fifteen, sixteen, seventeen, eighteen, nineteen]
5
- tens: [zero, ten, twenty, thirty, forty, fifty, sixty, seventy, eighty, ninety]
4
+ teens: [_, eleven, twelve, thirteen, fourteen, fifteen, sixteen, seventeen, eighteen, nineteen]
5
+ tens: [_, ten, twenty, thirty, forty, fifty, sixty, seventy, eighty, ninety]
6
6
  hundreds: hundred
7
- mega: [ones, thousand, million, billion, trillion, quadrillion, quintillion, sextillion, septillion, octillion, nonillion, decillion]
7
+ mega: [_, thousand, million, billion, trillion, quadrillion, quintillion, sextillion, septillion, octillion, nonillion, decillion, undecillion, duodecillion, tredecillion, quattuordecillion]
8
8
  ordinal:
9
9
  ones: [zeroth, first, second, third, fourth, fifth, sixth, seventh, eighth, ninth]
10
10
  teens: [tenth, eleventh, twelfth, thirteenth, fourteenth, fifteenth, sixteenth, seventeenth, eighteenth, nineteenth]
11
- tens: [zeroth, tenth, twentieth, thirtieth, fortieth, fiftieth, sixtieth, seventieth, eightieth, ninetieth]
11
+ tens: [_, tenth, twentieth, thirtieth, fortieth, fiftieth, sixtieth, seventieth, eightieth, ninetieth]
12
12
  hundreds: hundredth
13
- mega: [zeroth, thousandth, millionth, billionth, trillionth, quadrillionth, quintillionth, sextillionth, septillionth, octillionth, nonillionth, decillionth]
14
- union_separator: point
15
- micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths, quadrillionths, quintillionths, sextillionths, septillionths, octillionths, nonillionths, decillionths]
13
+ mega: [_, thousandth, millionth, billionth, trillionth, quadrillionth, quintillionth, sextillionth, septillionth, octillionth, nonillionth, decillionth, undecillionth, duodecillionth, tredecillionth, quattuordecillionth]
14
+ micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths, quadrillionths, quintillionths, sextillionths, septillionths, octillionths, nonillionths, decillionths, undecillionths, duodecillionths, tredecillionths, quattuordecillionths]
16
15
  tenths:
17
16
  one: tenth
18
17
  other: tenths
@@ -52,4 +51,21 @@ en-GB:
52
51
  decillionths:
53
52
  one: decillionth
54
53
  other: decillionths
55
- union: and
54
+ undecillionths:
55
+ one: undecillionth
56
+ other: undecillionths
57
+ duodecillionths:
58
+ one: duodecillionth
59
+ other: duodecillionths
60
+ tredecillionths:
61
+ one: tredecillionth
62
+ other: tredecillionths
63
+ quattuordecillionths:
64
+ one: quattuordecillionth
65
+ other: quattuordecillionths
66
+ micro_separator: point
67
+ micro_prefix:
68
+ tens: ten
69
+ hundreds: hundred
70
+ union: '-'
71
+ union: and
@@ -1,17 +1,16 @@
1
1
  en:
2
2
  numbers:
3
3
  ones: [zero, one, two, three, four, five, six, seven, eight, nine]
4
- teens: [ten, eleven, twelve, thirteen, fourteen, fifteen, sixteen, seventeen, eighteen, nineteen]
5
- tens: [zero, ten, twenty, thirty, forty, fifty, sixty, seventy, eighty, ninety]
4
+ teens: [_, eleven, twelve, thirteen, fourteen, fifteen, sixteen, seventeen, eighteen, nineteen]
5
+ tens: [_, ten, twenty, thirty, forty, fifty, sixty, seventy, eighty, ninety]
6
6
  hundreds: hundred
7
- mega: [ones, thousand, million, billion, trillion, quadrillion, quintillion, sextillion, septillion, octillion, nonillion, decillion, undecillion, duodecillion, tredecillion, quattuordecillion]
7
+ mega: [_, thousand, million, billion, trillion, quadrillion, quintillion, sextillion, septillion, octillion, nonillion, decillion, undecillion, duodecillion, tredecillion, quattuordecillion]
8
8
  ordinal:
9
9
  ones: [zeroth, first, second, third, fourth, fifth, sixth, seventh, eighth, ninth]
10
10
  teens: [tenth, eleventh, twelfth, thirteenth, fourteenth, fifteenth, sixteenth, seventeenth, eighteenth, nineteenth]
11
- tens: [zeroth, tenth, twentieth, thirtieth, fortieth, fiftieth, sixtieth, seventieth, eightieth, ninetieth]
11
+ tens: [_, tenth, twentieth, thirtieth, fortieth, fiftieth, sixtieth, seventieth, eightieth, ninetieth]
12
12
  hundreds: hundredth
13
- mega: [zeroth, thousandth, millionth, billionth, trillionth, quadrillionth, quintillionth, sextillionth, septillionth, octillionth, nonillionth, decillionth, undecillionth, duodecillionth, tredecillionth, quattuordecillionth]
14
- union_separator: and
13
+ mega: [_, thousandth, millionth, billionth, trillionth, quadrillionth, quintillionth, sextillionth, septillionth, octillionth, nonillionth, decillionth, undecillionth, duodecillionth, tredecillionth, quattuordecillionth]
15
14
  micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths, quadrillionths, quintillionths, sextillionths, septillionths, octillionths, nonillionths, decillionths, undecillionths, duodecillionths, tredecillionths, quattuordecillionths]
16
15
  tenths:
17
16
  one: tenth
@@ -64,4 +63,9 @@ en:
64
63
  quattuordecillionths:
65
64
  one: quattuordecillionth
66
65
  other: quattuordecillionths
66
+ micro_separator: and
67
+ micro_prefix:
68
+ tens: ten
69
+ hundreds: hundred
70
+ union: '-'
67
71
  union: and
@@ -44,11 +44,7 @@ es:
44
44
  one: septillón
45
45
  other: septillones
46
46
  quattuordecillions: mil septillones
47
- union: y
48
47
  micro: [_, tenths, hundredths, thousandths, millionths, billionths, trillionths, quadrillionths, quintillionths, sextillionths, septillionths, octillionths, nonillionths, decillionths, undecillionths, duodecillionths, tredecillionths, quattuordecillionths]
49
- micro_prefix:
50
- tens: diez
51
- hundreds: cien
52
48
  tenths:
53
49
  one: décima
54
50
  other: décimas
@@ -100,4 +96,9 @@ es:
100
96
  quattuordecillionths:
101
97
  one: milseptillonésima
102
98
  other: milseptillonésimas
103
- union_separator: con
99
+ micro_separator: con
100
+ micro_prefix:
101
+ tens: diez
102
+ hundreds: cien
103
+ union: ''
104
+ union: y
@@ -1,10 +1,10 @@
1
1
  et:
2
2
  numbers:
3
- ones: ["null", üks, kaks, kolm, neli, viis, kuus, seitse, kaheksa, üheksa]
4
- teens: [kümme, üksteist, kaksteist, kolmteist, neliteist, viisteist, kuusteist, seitseteist, kaheksateist, üheksateist]
5
- tens: ["null", kümme, kakskümmend, kolmkümmend, nelikümmend, viiskümmend, kuuskümmend, seitsekümmend, kaheksakümmend, üheksakümmend]
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: [dix, onze, douze, treize, quatorze, quinze, seize, dix-sept, dix-huit, dix-neuf]
5
- tens: [zéro, dix, vingt, trente, quarante, cinquante, soixante, soixante-dix, quatre-vingt, quatre-vingt-dix]
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
- union_separator: et
9
- union: et
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
- hundreds:
63
- one: cent
64
- other: cents
65
- thousands:
66
- one: mille
67
- other: mille
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: [nulla, egy, kettő, három, négy, öt, hat, hét, nyolc, kilenc]
5
- tens: [nulla, tíz, húsz, harminc, negyven, ötven, hatvan, hetven, nyolcvan, kilencven]
6
- tens_with_ones: [nulla, tizen, huszon, harminc, negyven, ötven, hatvan, hetven, nyolcvan, kilencven]
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: [egy, ezer, millió, milliárd, billió, billiárd, trillió, trilliárd, kvadrillió, kvadrilliárd, kvintillió, kvintilliárd]
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: [nulladik, tizedik, huszadik, harmincadik, negyvenedik, ötvenedik, hatvanadik, hetvenedik, nyolcvanadik, kilencvenedik]
12
+ tens: [_, tizedik, huszadik, harmincadik, negyvenedik, ötvenedik, hatvanadik, hetvenedik, nyolcvanadik, kilencvenedik]
14
13
  hundreds: századik
15
- mega: [nulladik, ezredik, milliomodik, milliárdodik, billiomodik, billiárdodik, trilliomodik, trilliárdodik, kvadrilliomodik, kvadrilliárdodik, kvintilliomodik, kvintilliárdodik]
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: ''
@@ -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: [dieci, undici, dodici, tredici, quattordici, quindici, sedici, diciasette, diciotto, diciannove]
5
- tens: [zero, dieci, venti, trenta, quaranta, cinquanta, sessanta, settanta, ottanta, novanta]
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: [ones, mille, milione, miliardo, triliardo, quadrillion, quintillion, sextillion, septillion, octillion, nonillion, decillion]
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
- twenty: ოცი
7
- forty: ორმოცი
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
- one_hundred: ას
21
- one_thousand: ათას
22
- one_million: მილიონ
23
- one_billion: მილიარდ
14
+ hundreds: ას
15
+ mega: [_, ათას, მილიონ, მილიარდ]