humanize 1.2.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe554263a220f491a2ec8fcb7eb5c300f8737b04
4
- data.tar.gz: c79fdc8f72f8f3dc49c800763be92569751a0ee0
3
+ metadata.gz: f6359aba6b305d5686ddfaba4a805d70a13b0442
4
+ data.tar.gz: '082f27e4c327fa053f67e4ad301df2b7b2af7639'
5
5
  SHA512:
6
- metadata.gz: c8240d26516dcb13993be3b39a4ffd809365522c3b376ca461afbaba4bfca0d9ba7c1ffcf424d1f546a95df1beb8fa6ca0a753a45d0a5dee7a8f516f18f7f670
7
- data.tar.gz: d644028bd471fa0f54179172e7d667f1a9885701f83e68f3a3de20094093eccf337c33388ce81c40aa8ab575225ebc0c9f921c8c5d6ce05d12d7456e6c1bbf0c
6
+ metadata.gz: a2590ae095ac0b5afc93407a9baaeded5c0c71ef561385f0a338c780c136b00333cb128ff16d0fc5b4ea1dc851e0f94cd51564c7eb0f998be140c45817758a08
7
+ data.tar.gz: b336975b89e6ac13906c18ff67a31f3d13670caea92e16b1eaa38b41594e41be942e0a9efbabf9a45d764b6514b1f8ccc5ff9bb000d2d0847900fea07c95efbd
@@ -27,7 +27,7 @@ If you are dealing with numbers larger than 156 digits, we accept patches. Word
27
27
 
28
28
  ```ruby
29
29
  Humanize.configure do |config|
30
- config.default_locale = :en # [:en, :fr], default: :en
30
+ config.default_locale = :en # [:en, :fr, :tr], default: :en
31
31
  config.decimals_as = :digits # [:digits, :number], default: :digits
32
32
  end
33
33
  ```
@@ -36,6 +36,7 @@ Default values can be overriden:
36
36
 
37
37
  ```ruby
38
38
  42.humanize(locale: :fr) # => "quarante-deux"
39
+ 1666.humanize(locale: :tr) # => "bin altı yüz altmış altı"
39
40
  ```
40
41
 
41
42
  ## Decimals
@@ -49,7 +50,7 @@ You can choose how you want to display decimals:
49
50
 
50
51
  ## I18n
51
52
 
52
- Currently supported locales: `:en` and `:fr`
53
+ Currently supported locales: `:en`,`:fr` and `:tr`
53
54
 
54
55
  ## Benchmarks
55
56
 
@@ -3,7 +3,7 @@
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "humanize"
6
- s.version = "1.2.3"
6
+ s.version = "1.2.4"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib"]
@@ -2,5 +2,6 @@
2
2
 
3
3
  SUB_ONE_THOUSAND = {
4
4
  :en => ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', 'sixteen', 'seventeen', 'eighteen', 'nineteen', 'twenty', 'twenty-one', 'twenty-two', 'twenty-three', 'twenty-four', 'twenty-five', 'twenty-six', 'twenty-seven', 'twenty-eight', 'twenty-nine', 'thirty', 'thirty-one', 'thirty-two', 'thirty-three', 'thirty-four', 'thirty-five', 'thirty-six', 'thirty-seven', 'thirty-eight', 'thirty-nine', 'forty', 'forty-one', 'forty-two', 'forty-three', 'forty-four', 'forty-five', 'forty-six', 'forty-seven', 'forty-eight', 'forty-nine', 'fifty', 'fifty-one', 'fifty-two', 'fifty-three', 'fifty-four', 'fifty-five', 'fifty-six', 'fifty-seven', 'fifty-eight', 'fifty-nine', 'sixty', 'sixty-one', 'sixty-two', 'sixty-three', 'sixty-four', 'sixty-five', 'sixty-six', 'sixty-seven', 'sixty-eight', 'sixty-nine', 'seventy', 'seventy-one', 'seventy-two', 'seventy-three', 'seventy-four', 'seventy-five', 'seventy-six', 'seventy-seven', 'seventy-eight', 'seventy-nine', 'eighty', 'eighty-one', 'eighty-two', 'eighty-three', 'eighty-four', 'eighty-five', 'eighty-six', 'eighty-seven', 'eighty-eight', 'eighty-nine', 'ninety', 'ninety-one', 'ninety-two', 'ninety-three', 'ninety-four', 'ninety-five', 'ninety-six', 'ninety-seven', 'ninety-eight', 'ninety-nine', 'one hundred', 'one hundred and one', 'one hundred and two', 'one hundred and three', 'one hundred and four', 'one hundred and five', 'one hundred and six', 'one hundred and seven', 'one hundred and eight', 'one hundred and nine', 'one hundred and ten', 'one hundred and eleven', 'one hundred and twelve', 'one hundred and thirteen', 'one hundred and fourteen', 'one hundred and fifteen', 'one hundred and sixteen', 'one hundred and seventeen', 'one hundred and eighteen', 'one hundred and nineteen', 'one hundred and twenty', 'one hundred and twenty-one', 'one hundred and twenty-two', 'one hundred and twenty-three', 'one hundred and twenty-four', 'one hundred and twenty-five', 'one hundred and twenty-six', 'one hundred and twenty-seven', 'one hundred and twenty-eight', 'one hundred and twenty-nine', 'one hundred and thirty', 'one hundred and thirty-one', 'one hundred and thirty-two', 'one hundred and thirty-three', 'one hundred and thirty-four', 'one hundred and thirty-five', 'one hundred and thirty-six', 'one hundred and thirty-seven', 'one hundred and thirty-eight', 'one hundred and thirty-nine', 'one hundred and forty', 'one hundred and forty-one', 'one hundred and forty-two', 'one hundred and forty-three', 'one hundred and forty-four', 'one hundred and forty-five', 'one hundred and forty-six', 'one hundred and forty-seven', 'one hundred and forty-eight', 'one hundred and forty-nine', 'one hundred and fifty', 'one hundred and fifty-one', 'one hundred and fifty-two', 'one hundred and fifty-three', 'one hundred and fifty-four', 'one hundred and fifty-five', 'one hundred and fifty-six', 'one hundred and fifty-seven', 'one hundred and fifty-eight', 'one hundred and fifty-nine', 'one hundred and sixty', 'one hundred and sixty-one', 'one hundred and sixty-two', 'one hundred and sixty-three', 'one hundred and sixty-four', 'one hundred and sixty-five', 'one hundred and sixty-six', 'one hundred and sixty-seven', 'one hundred and sixty-eight', 'one hundred and sixty-nine', 'one hundred and seventy', 'one hundred and seventy-one', 'one hundred and seventy-two', 'one hundred and seventy-three', 'one hundred and seventy-four', 'one hundred and seventy-five', 'one hundred and seventy-six', 'one hundred and seventy-seven', 'one hundred and seventy-eight', 'one hundred and seventy-nine', 'one hundred and eighty', 'one hundred and eighty-one', 'one hundred and eighty-two', 'one hundred and eighty-three', 'one hundred and eighty-four', 'one hundred and eighty-five', 'one hundred and eighty-six', 'one hundred and eighty-seven', 'one hundred and eighty-eight', 'one hundred and eighty-nine', 'one hundred and ninety', 'one hundred and ninety-one', 'one hundred and ninety-two', 'one hundred and ninety-three', 'one hundred and ninety-four', 'one hundred and ninety-five', 'one hundred and ninety-six', 'one hundred and ninety-seven', 'one hundred and ninety-eight', 'one hundred and ninety-nine', 'two hundred', 'two hundred and one', 'two hundred and two', 'two hundred and three', 'two hundred and four', 'two hundred and five', 'two hundred and six', 'two hundred and seven', 'two hundred and eight', 'two hundred and nine', 'two hundred and ten', 'two hundred and eleven', 'two hundred and twelve', 'two hundred and thirteen', 'two hundred and fourteen', 'two hundred and fifteen', 'two hundred and sixteen', 'two hundred and seventeen', 'two hundred and eighteen', 'two hundred and nineteen', 'two hundred and twenty', 'two hundred and twenty-one', 'two hundred and twenty-two', 'two hundred and twenty-three', 'two hundred and twenty-four', 'two hundred and twenty-five', 'two hundred and twenty-six', 'two hundred and twenty-seven', 'two hundred and twenty-eight', 'two hundred and twenty-nine', 'two hundred and thirty', 'two hundred and thirty-one', 'two hundred and thirty-two', 'two hundred and thirty-three', 'two hundred and thirty-four', 'two hundred and thirty-five', 'two hundred and thirty-six', 'two hundred and thirty-seven', 'two hundred and thirty-eight', 'two hundred and thirty-nine', 'two hundred and forty', 'two hundred and forty-one', 'two hundred and forty-two', 'two hundred and forty-three', 'two hundred and forty-four', 'two hundred and forty-five', 'two hundred and forty-six', 'two hundred and forty-seven', 'two hundred and forty-eight', 'two hundred and forty-nine', 'two hundred and fifty', 'two hundred and fifty-one', 'two hundred and fifty-two', 'two hundred and fifty-three', 'two hundred and fifty-four', 'two hundred and fifty-five', 'two hundred and fifty-six', 'two hundred and fifty-seven', 'two hundred and fifty-eight', 'two hundred and fifty-nine', 'two hundred and sixty', 'two hundred and sixty-one', 'two hundred and sixty-two', 'two hundred and sixty-three', 'two hundred and sixty-four', 'two hundred and sixty-five', 'two hundred and sixty-six', 'two hundred and sixty-seven', 'two hundred and sixty-eight', 'two hundred and sixty-nine', 'two hundred and seventy', 'two hundred and seventy-one', 'two hundred and seventy-two', 'two hundred and seventy-three', 'two hundred and seventy-four', 'two hundred and seventy-five', 'two hundred and seventy-six', 'two hundred and seventy-seven', 'two hundred and seventy-eight', 'two hundred and seventy-nine', 'two hundred and eighty', 'two hundred and eighty-one', 'two hundred and eighty-two', 'two hundred and eighty-three', 'two hundred and eighty-four', 'two hundred and eighty-five', 'two hundred and eighty-six', 'two hundred and eighty-seven', 'two hundred and eighty-eight', 'two hundred and eighty-nine', 'two hundred and ninety', 'two hundred and ninety-one', 'two hundred and ninety-two', 'two hundred and ninety-three', 'two hundred and ninety-four', 'two hundred and ninety-five', 'two hundred and ninety-six', 'two hundred and ninety-seven', 'two hundred and ninety-eight', 'two hundred and ninety-nine', 'three hundred', 'three hundred and one', 'three hundred and two', 'three hundred and three', 'three hundred and four', 'three hundred and five', 'three hundred and six', 'three hundred and seven', 'three hundred and eight', 'three hundred and nine', 'three hundred and ten', 'three hundred and eleven', 'three hundred and twelve', 'three hundred and thirteen', 'three hundred and fourteen', 'three hundred and fifteen', 'three hundred and sixteen', 'three hundred and seventeen', 'three hundred and eighteen', 'three hundred and nineteen', 'three hundred and twenty', 'three hundred and twenty-one', 'three hundred and twenty-two', 'three hundred and twenty-three', 'three hundred and twenty-four', 'three hundred and twenty-five', 'three hundred and twenty-six', 'three hundred and twenty-seven', 'three hundred and twenty-eight', 'three hundred and twenty-nine', 'three hundred and thirty', 'three hundred and thirty-one', 'three hundred and thirty-two', 'three hundred and thirty-three', 'three hundred and thirty-four', 'three hundred and thirty-five', 'three hundred and thirty-six', 'three hundred and thirty-seven', 'three hundred and thirty-eight', 'three hundred and thirty-nine', 'three hundred and forty', 'three hundred and forty-one', 'three hundred and forty-two', 'three hundred and forty-three', 'three hundred and forty-four', 'three hundred and forty-five', 'three hundred and forty-six', 'three hundred and forty-seven', 'three hundred and forty-eight', 'three hundred and forty-nine', 'three hundred and fifty', 'three hundred and fifty-one', 'three hundred and fifty-two', 'three hundred and fifty-three', 'three hundred and fifty-four', 'three hundred and fifty-five', 'three hundred and fifty-six', 'three hundred and fifty-seven', 'three hundred and fifty-eight', 'three hundred and fifty-nine', 'three hundred and sixty', 'three hundred and sixty-one', 'three hundred and sixty-two', 'three hundred and sixty-three', 'three hundred and sixty-four', 'three hundred and sixty-five', 'three hundred and sixty-six', 'three hundred and sixty-seven', 'three hundred and sixty-eight', 'three hundred and sixty-nine', 'three hundred and seventy', 'three hundred and seventy-one', 'three hundred and seventy-two', 'three hundred and seventy-three', 'three hundred and seventy-four', 'three hundred and seventy-five', 'three hundred and seventy-six', 'three hundred and seventy-seven', 'three hundred and seventy-eight', 'three hundred and seventy-nine', 'three hundred and eighty', 'three hundred and eighty-one', 'three hundred and eighty-two', 'three hundred and eighty-three', 'three hundred and eighty-four', 'three hundred and eighty-five', 'three hundred and eighty-six', 'three hundred and eighty-seven', 'three hundred and eighty-eight', 'three hundred and eighty-nine', 'three hundred and ninety', 'three hundred and ninety-one', 'three hundred and ninety-two', 'three hundred and ninety-three', 'three hundred and ninety-four', 'three hundred and ninety-five', 'three hundred and ninety-six', 'three hundred and ninety-seven', 'three hundred and ninety-eight', 'three hundred and ninety-nine', 'four hundred', 'four hundred and one', 'four hundred and two', 'four hundred and three', 'four hundred and four', 'four hundred and five', 'four hundred and six', 'four hundred and seven', 'four hundred and eight', 'four hundred and nine', 'four hundred and ten', 'four hundred and eleven', 'four hundred and twelve', 'four hundred and thirteen', 'four hundred and fourteen', 'four hundred and fifteen', 'four hundred and sixteen', 'four hundred and seventeen', 'four hundred and eighteen', 'four hundred and nineteen', 'four hundred and twenty', 'four hundred and twenty-one', 'four hundred and twenty-two', 'four hundred and twenty-three', 'four hundred and twenty-four', 'four hundred and twenty-five', 'four hundred and twenty-six', 'four hundred and twenty-seven', 'four hundred and twenty-eight', 'four hundred and twenty-nine', 'four hundred and thirty', 'four hundred and thirty-one', 'four hundred and thirty-two', 'four hundred and thirty-three', 'four hundred and thirty-four', 'four hundred and thirty-five', 'four hundred and thirty-six', 'four hundred and thirty-seven', 'four hundred and thirty-eight', 'four hundred and thirty-nine', 'four hundred and forty', 'four hundred and forty-one', 'four hundred and forty-two', 'four hundred and forty-three', 'four hundred and forty-four', 'four hundred and forty-five', 'four hundred and forty-six', 'four hundred and forty-seven', 'four hundred and forty-eight', 'four hundred and forty-nine', 'four hundred and fifty', 'four hundred and fifty-one', 'four hundred and fifty-two', 'four hundred and fifty-three', 'four hundred and fifty-four', 'four hundred and fifty-five', 'four hundred and fifty-six', 'four hundred and fifty-seven', 'four hundred and fifty-eight', 'four hundred and fifty-nine', 'four hundred and sixty', 'four hundred and sixty-one', 'four hundred and sixty-two', 'four hundred and sixty-three', 'four hundred and sixty-four', 'four hundred and sixty-five', 'four hundred and sixty-six', 'four hundred and sixty-seven', 'four hundred and sixty-eight', 'four hundred and sixty-nine', 'four hundred and seventy', 'four hundred and seventy-one', 'four hundred and seventy-two', 'four hundred and seventy-three', 'four hundred and seventy-four', 'four hundred and seventy-five', 'four hundred and seventy-six', 'four hundred and seventy-seven', 'four hundred and seventy-eight', 'four hundred and seventy-nine', 'four hundred and eighty', 'four hundred and eighty-one', 'four hundred and eighty-two', 'four hundred and eighty-three', 'four hundred and eighty-four', 'four hundred and eighty-five', 'four hundred and eighty-six', 'four hundred and eighty-seven', 'four hundred and eighty-eight', 'four hundred and eighty-nine', 'four hundred and ninety', 'four hundred and ninety-one', 'four hundred and ninety-two', 'four hundred and ninety-three', 'four hundred and ninety-four', 'four hundred and ninety-five', 'four hundred and ninety-six', 'four hundred and ninety-seven', 'four hundred and ninety-eight', 'four hundred and ninety-nine', 'five hundred', 'five hundred and one', 'five hundred and two', 'five hundred and three', 'five hundred and four', 'five hundred and five', 'five hundred and six', 'five hundred and seven', 'five hundred and eight', 'five hundred and nine', 'five hundred and ten', 'five hundred and eleven', 'five hundred and twelve', 'five hundred and thirteen', 'five hundred and fourteen', 'five hundred and fifteen', 'five hundred and sixteen', 'five hundred and seventeen', 'five hundred and eighteen', 'five hundred and nineteen', 'five hundred and twenty', 'five hundred and twenty-one', 'five hundred and twenty-two', 'five hundred and twenty-three', 'five hundred and twenty-four', 'five hundred and twenty-five', 'five hundred and twenty-six', 'five hundred and twenty-seven', 'five hundred and twenty-eight', 'five hundred and twenty-nine', 'five hundred and thirty', 'five hundred and thirty-one', 'five hundred and thirty-two', 'five hundred and thirty-three', 'five hundred and thirty-four', 'five hundred and thirty-five', 'five hundred and thirty-six', 'five hundred and thirty-seven', 'five hundred and thirty-eight', 'five hundred and thirty-nine', 'five hundred and forty', 'five hundred and forty-one', 'five hundred and forty-two', 'five hundred and forty-three', 'five hundred and forty-four', 'five hundred and forty-five', 'five hundred and forty-six', 'five hundred and forty-seven', 'five hundred and forty-eight', 'five hundred and forty-nine', 'five hundred and fifty', 'five hundred and fifty-one', 'five hundred and fifty-two', 'five hundred and fifty-three', 'five hundred and fifty-four', 'five hundred and fifty-five', 'five hundred and fifty-six', 'five hundred and fifty-seven', 'five hundred and fifty-eight', 'five hundred and fifty-nine', 'five hundred and sixty', 'five hundred and sixty-one', 'five hundred and sixty-two', 'five hundred and sixty-three', 'five hundred and sixty-four', 'five hundred and sixty-five', 'five hundred and sixty-six', 'five hundred and sixty-seven', 'five hundred and sixty-eight', 'five hundred and sixty-nine', 'five hundred and seventy', 'five hundred and seventy-one', 'five hundred and seventy-two', 'five hundred and seventy-three', 'five hundred and seventy-four', 'five hundred and seventy-five', 'five hundred and seventy-six', 'five hundred and seventy-seven', 'five hundred and seventy-eight', 'five hundred and seventy-nine', 'five hundred and eighty', 'five hundred and eighty-one', 'five hundred and eighty-two', 'five hundred and eighty-three', 'five hundred and eighty-four', 'five hundred and eighty-five', 'five hundred and eighty-six', 'five hundred and eighty-seven', 'five hundred and eighty-eight', 'five hundred and eighty-nine', 'five hundred and ninety', 'five hundred and ninety-one', 'five hundred and ninety-two', 'five hundred and ninety-three', 'five hundred and ninety-four', 'five hundred and ninety-five', 'five hundred and ninety-six', 'five hundred and ninety-seven', 'five hundred and ninety-eight', 'five hundred and ninety-nine', 'six hundred', 'six hundred and one', 'six hundred and two', 'six hundred and three', 'six hundred and four', 'six hundred and five', 'six hundred and six', 'six hundred and seven', 'six hundred and eight', 'six hundred and nine', 'six hundred and ten', 'six hundred and eleven', 'six hundred and twelve', 'six hundred and thirteen', 'six hundred and fourteen', 'six hundred and fifteen', 'six hundred and sixteen', 'six hundred and seventeen', 'six hundred and eighteen', 'six hundred and nineteen', 'six hundred and twenty', 'six hundred and twenty-one', 'six hundred and twenty-two', 'six hundred and twenty-three', 'six hundred and twenty-four', 'six hundred and twenty-five', 'six hundred and twenty-six', 'six hundred and twenty-seven', 'six hundred and twenty-eight', 'six hundred and twenty-nine', 'six hundred and thirty', 'six hundred and thirty-one', 'six hundred and thirty-two', 'six hundred and thirty-three', 'six hundred and thirty-four', 'six hundred and thirty-five', 'six hundred and thirty-six', 'six hundred and thirty-seven', 'six hundred and thirty-eight', 'six hundred and thirty-nine', 'six hundred and forty', 'six hundred and forty-one', 'six hundred and forty-two', 'six hundred and forty-three', 'six hundred and forty-four', 'six hundred and forty-five', 'six hundred and forty-six', 'six hundred and forty-seven', 'six hundred and forty-eight', 'six hundred and forty-nine', 'six hundred and fifty', 'six hundred and fifty-one', 'six hundred and fifty-two', 'six hundred and fifty-three', 'six hundred and fifty-four', 'six hundred and fifty-five', 'six hundred and fifty-six', 'six hundred and fifty-seven', 'six hundred and fifty-eight', 'six hundred and fifty-nine', 'six hundred and sixty', 'six hundred and sixty-one', 'six hundred and sixty-two', 'six hundred and sixty-three', 'six hundred and sixty-four', 'six hundred and sixty-five', 'six hundred and sixty-six', 'six hundred and sixty-seven', 'six hundred and sixty-eight', 'six hundred and sixty-nine', 'six hundred and seventy', 'six hundred and seventy-one', 'six hundred and seventy-two', 'six hundred and seventy-three', 'six hundred and seventy-four', 'six hundred and seventy-five', 'six hundred and seventy-six', 'six hundred and seventy-seven', 'six hundred and seventy-eight', 'six hundred and seventy-nine', 'six hundred and eighty', 'six hundred and eighty-one', 'six hundred and eighty-two', 'six hundred and eighty-three', 'six hundred and eighty-four', 'six hundred and eighty-five', 'six hundred and eighty-six', 'six hundred and eighty-seven', 'six hundred and eighty-eight', 'six hundred and eighty-nine', 'six hundred and ninety', 'six hundred and ninety-one', 'six hundred and ninety-two', 'six hundred and ninety-three', 'six hundred and ninety-four', 'six hundred and ninety-five', 'six hundred and ninety-six', 'six hundred and ninety-seven', 'six hundred and ninety-eight', 'six hundred and ninety-nine', 'seven hundred', 'seven hundred and one', 'seven hundred and two', 'seven hundred and three', 'seven hundred and four', 'seven hundred and five', 'seven hundred and six', 'seven hundred and seven', 'seven hundred and eight', 'seven hundred and nine', 'seven hundred and ten', 'seven hundred and eleven', 'seven hundred and twelve', 'seven hundred and thirteen', 'seven hundred and fourteen', 'seven hundred and fifteen', 'seven hundred and sixteen', 'seven hundred and seventeen', 'seven hundred and eighteen', 'seven hundred and nineteen', 'seven hundred and twenty', 'seven hundred and twenty-one', 'seven hundred and twenty-two', 'seven hundred and twenty-three', 'seven hundred and twenty-four', 'seven hundred and twenty-five', 'seven hundred and twenty-six', 'seven hundred and twenty-seven', 'seven hundred and twenty-eight', 'seven hundred and twenty-nine', 'seven hundred and thirty', 'seven hundred and thirty-one', 'seven hundred and thirty-two', 'seven hundred and thirty-three', 'seven hundred and thirty-four', 'seven hundred and thirty-five', 'seven hundred and thirty-six', 'seven hundred and thirty-seven', 'seven hundred and thirty-eight', 'seven hundred and thirty-nine', 'seven hundred and forty', 'seven hundred and forty-one', 'seven hundred and forty-two', 'seven hundred and forty-three', 'seven hundred and forty-four', 'seven hundred and forty-five', 'seven hundred and forty-six', 'seven hundred and forty-seven', 'seven hundred and forty-eight', 'seven hundred and forty-nine', 'seven hundred and fifty', 'seven hundred and fifty-one', 'seven hundred and fifty-two', 'seven hundred and fifty-three', 'seven hundred and fifty-four', 'seven hundred and fifty-five', 'seven hundred and fifty-six', 'seven hundred and fifty-seven', 'seven hundred and fifty-eight', 'seven hundred and fifty-nine', 'seven hundred and sixty', 'seven hundred and sixty-one', 'seven hundred and sixty-two', 'seven hundred and sixty-three', 'seven hundred and sixty-four', 'seven hundred and sixty-five', 'seven hundred and sixty-six', 'seven hundred and sixty-seven', 'seven hundred and sixty-eight', 'seven hundred and sixty-nine', 'seven hundred and seventy', 'seven hundred and seventy-one', 'seven hundred and seventy-two', 'seven hundred and seventy-three', 'seven hundred and seventy-four', 'seven hundred and seventy-five', 'seven hundred and seventy-six', 'seven hundred and seventy-seven', 'seven hundred and seventy-eight', 'seven hundred and seventy-nine', 'seven hundred and eighty', 'seven hundred and eighty-one', 'seven hundred and eighty-two', 'seven hundred and eighty-three', 'seven hundred and eighty-four', 'seven hundred and eighty-five', 'seven hundred and eighty-six', 'seven hundred and eighty-seven', 'seven hundred and eighty-eight', 'seven hundred and eighty-nine', 'seven hundred and ninety', 'seven hundred and ninety-one', 'seven hundred and ninety-two', 'seven hundred and ninety-three', 'seven hundred and ninety-four', 'seven hundred and ninety-five', 'seven hundred and ninety-six', 'seven hundred and ninety-seven', 'seven hundred and ninety-eight', 'seven hundred and ninety-nine', 'eight hundred', 'eight hundred and one', 'eight hundred and two', 'eight hundred and three', 'eight hundred and four', 'eight hundred and five', 'eight hundred and six', 'eight hundred and seven', 'eight hundred and eight', 'eight hundred and nine', 'eight hundred and ten', 'eight hundred and eleven', 'eight hundred and twelve', 'eight hundred and thirteen', 'eight hundred and fourteen', 'eight hundred and fifteen', 'eight hundred and sixteen', 'eight hundred and seventeen', 'eight hundred and eighteen', 'eight hundred and nineteen', 'eight hundred and twenty', 'eight hundred and twenty-one', 'eight hundred and twenty-two', 'eight hundred and twenty-three', 'eight hundred and twenty-four', 'eight hundred and twenty-five', 'eight hundred and twenty-six', 'eight hundred and twenty-seven', 'eight hundred and twenty-eight', 'eight hundred and twenty-nine', 'eight hundred and thirty', 'eight hundred and thirty-one', 'eight hundred and thirty-two', 'eight hundred and thirty-three', 'eight hundred and thirty-four', 'eight hundred and thirty-five', 'eight hundred and thirty-six', 'eight hundred and thirty-seven', 'eight hundred and thirty-eight', 'eight hundred and thirty-nine', 'eight hundred and forty', 'eight hundred and forty-one', 'eight hundred and forty-two', 'eight hundred and forty-three', 'eight hundred and forty-four', 'eight hundred and forty-five', 'eight hundred and forty-six', 'eight hundred and forty-seven', 'eight hundred and forty-eight', 'eight hundred and forty-nine', 'eight hundred and fifty', 'eight hundred and fifty-one', 'eight hundred and fifty-two', 'eight hundred and fifty-three', 'eight hundred and fifty-four', 'eight hundred and fifty-five', 'eight hundred and fifty-six', 'eight hundred and fifty-seven', 'eight hundred and fifty-eight', 'eight hundred and fifty-nine', 'eight hundred and sixty', 'eight hundred and sixty-one', 'eight hundred and sixty-two', 'eight hundred and sixty-three', 'eight hundred and sixty-four', 'eight hundred and sixty-five', 'eight hundred and sixty-six', 'eight hundred and sixty-seven', 'eight hundred and sixty-eight', 'eight hundred and sixty-nine', 'eight hundred and seventy', 'eight hundred and seventy-one', 'eight hundred and seventy-two', 'eight hundred and seventy-three', 'eight hundred and seventy-four', 'eight hundred and seventy-five', 'eight hundred and seventy-six', 'eight hundred and seventy-seven', 'eight hundred and seventy-eight', 'eight hundred and seventy-nine', 'eight hundred and eighty', 'eight hundred and eighty-one', 'eight hundred and eighty-two', 'eight hundred and eighty-three', 'eight hundred and eighty-four', 'eight hundred and eighty-five', 'eight hundred and eighty-six', 'eight hundred and eighty-seven', 'eight hundred and eighty-eight', 'eight hundred and eighty-nine', 'eight hundred and ninety', 'eight hundred and ninety-one', 'eight hundred and ninety-two', 'eight hundred and ninety-three', 'eight hundred and ninety-four', 'eight hundred and ninety-five', 'eight hundred and ninety-six', 'eight hundred and ninety-seven', 'eight hundred and ninety-eight', 'eight hundred and ninety-nine', 'nine hundred', 'nine hundred and one', 'nine hundred and two', 'nine hundred and three', 'nine hundred and four', 'nine hundred and five', 'nine hundred and six', 'nine hundred and seven', 'nine hundred and eight', 'nine hundred and nine', 'nine hundred and ten', 'nine hundred and eleven', 'nine hundred and twelve', 'nine hundred and thirteen', 'nine hundred and fourteen', 'nine hundred and fifteen', 'nine hundred and sixteen', 'nine hundred and seventeen', 'nine hundred and eighteen', 'nine hundred and nineteen', 'nine hundred and twenty', 'nine hundred and twenty-one', 'nine hundred and twenty-two', 'nine hundred and twenty-three', 'nine hundred and twenty-four', 'nine hundred and twenty-five', 'nine hundred and twenty-six', 'nine hundred and twenty-seven', 'nine hundred and twenty-eight', 'nine hundred and twenty-nine', 'nine hundred and thirty', 'nine hundred and thirty-one', 'nine hundred and thirty-two', 'nine hundred and thirty-three', 'nine hundred and thirty-four', 'nine hundred and thirty-five', 'nine hundred and thirty-six', 'nine hundred and thirty-seven', 'nine hundred and thirty-eight', 'nine hundred and thirty-nine', 'nine hundred and forty', 'nine hundred and forty-one', 'nine hundred and forty-two', 'nine hundred and forty-three', 'nine hundred and forty-four', 'nine hundred and forty-five', 'nine hundred and forty-six', 'nine hundred and forty-seven', 'nine hundred and forty-eight', 'nine hundred and forty-nine', 'nine hundred and fifty', 'nine hundred and fifty-one', 'nine hundred and fifty-two', 'nine hundred and fifty-three', 'nine hundred and fifty-four', 'nine hundred and fifty-five', 'nine hundred and fifty-six', 'nine hundred and fifty-seven', 'nine hundred and fifty-eight', 'nine hundred and fifty-nine', 'nine hundred and sixty', 'nine hundred and sixty-one', 'nine hundred and sixty-two', 'nine hundred and sixty-three', 'nine hundred and sixty-four', 'nine hundred and sixty-five', 'nine hundred and sixty-six', 'nine hundred and sixty-seven', 'nine hundred and sixty-eight', 'nine hundred and sixty-nine', 'nine hundred and seventy', 'nine hundred and seventy-one', 'nine hundred and seventy-two', 'nine hundred and seventy-three', 'nine hundred and seventy-four', 'nine hundred and seventy-five', 'nine hundred and seventy-six', 'nine hundred and seventy-seven', 'nine hundred and seventy-eight', 'nine hundred and seventy-nine', 'nine hundred and eighty', 'nine hundred and eighty-one', 'nine hundred and eighty-two', 'nine hundred and eighty-three', 'nine hundred and eighty-four', 'nine hundred and eighty-five', 'nine hundred and eighty-six', 'nine hundred and eighty-seven', 'nine hundred and eighty-eight', 'nine hundred and eighty-nine', 'nine hundred and ninety', 'nine hundred and ninety-one', 'nine hundred and ninety-two', 'nine hundred and ninety-three', 'nine hundred and ninety-four', 'nine hundred and ninety-five', 'nine hundred and ninety-six', 'nine hundred and ninety-seven', 'nine hundred and ninety-eight', 'nine hundred and ninety-nine'],
5
- :fr => ['zéro', 'un', 'deux', 'trois', 'quatre', 'cinq', 'six', 'sept', 'huit', 'neuf', 'dix', 'onze', 'douze', 'treize', 'quatorze', 'quinze', 'seize', 'dix-sept', 'dix-huit', 'dix-neuf', 'vingt', 'vingt-et-un', 'vingt-deux', 'vingt-trois', 'vingt-quatre', 'vingt-cinq', 'vingt-six', 'vingt-sept', 'vingt-huit', 'vingt-neuf', 'trente', 'trente-et-un', 'trente-deux', 'trente-trois', 'trente-quatre', 'trente-cinq', 'trente-six', 'trente-sept', 'trente-huit', 'trente-neuf', 'quarante', 'quarante-et-un', 'quarante-deux', 'quarante-trois', 'quarante-quatre', 'quarante-cinq', 'quarante-six', 'quarante-sept', 'quarante-huit', 'quarante-neuf', 'cinquante', 'cinquante-et-un', 'cinquante-deux', 'cinquante-trois', 'cinquante-quatre', 'cinquante-cinq', 'cinquante-six', 'cinquante-sept', 'cinquante-huit', 'cinquante-neuf', 'soixante', 'soixante-et-un', 'soixante-deux', 'soixante-trois', 'soixante-quatre', 'soixante-cinq', 'soixante-six', 'soixante-sept', 'soixante-huit', 'soixante-neuf', 'soixante-dix', 'soixante-et-onze', 'soixante-douze', 'soixante-treize', 'soixante-quatorze', 'soixante-quinze', 'soixante-seize', 'soixante-dix-sept', 'soixante-dix-huit', 'soixante-dix-neuf', 'quatre-vingts', 'quatre-vingt-un', 'quatre-vingt-deux', 'quatre-vingt-trois', 'quatre-vingt-quatre', 'quatre-vingt-cinq', 'quatre-vingt-six', 'quatre-vingt-sept', 'quatre-vingt-huit', 'quatre-vingt-neuf', 'quatre-vingt-dix', 'quatre-vingt-onze', 'quatre-vingt-douze', 'quatre-vingt-treize', 'quatre-vingt-quatorze', 'quatre-vingt-quinze', 'quatre-vingt-seize', 'quatre-vingt-dix-sept', 'quatre-vingt-dix-huit', 'quatre-vingt-dix-neuf', 'cent', 'cent-un', 'cent-deux', 'cent-trois', 'cent-quatre', 'cent-cinq', 'cent-six', 'cent-sept', 'cent-huit', 'cent-neuf', 'cent dix', 'cent onze', 'cent douze', 'cent treize', 'cent quatorze', 'cent quinze', 'cent seize', 'cent dix-sept', 'cent dix-huit', 'cent dix-neuf', 'cent vingt', 'cent vingt-et-un', 'cent vingt-deux', 'cent vingt-trois', 'cent vingt-quatre', 'cent vingt-cinq', 'cent vingt-six', 'cent vingt-sept', 'cent vingt-huit', 'cent vingt-neuf', 'cent trente', 'cent trente-et-un', 'cent trente-deux', 'cent trente-trois', 'cent trente-quatre', 'cent trente-cinq', 'cent trente-six', 'cent trente-sept', 'cent trente-huit', 'cent trente-neuf', 'cent quarante', 'cent quarante-et-un', 'cent quarante-deux', 'cent quarante-trois', 'cent quarante-quatre', 'cent quarante-cinq', 'cent quarante-six', 'cent quarante-sept', 'cent quarante-huit', 'cent quarante-neuf', 'cent cinquante', 'cent cinquante-et-un', 'cent cinquante-deux', 'cent cinquante-trois', 'cent cinquante-quatre', 'cent cinquante-cinq', 'cent cinquante-six', 'cent cinquante-sept', 'cent cinquante-huit', 'cent cinquante-neuf', 'cent soixante', 'cent soixante-et-un', 'cent soixante-deux', 'cent soixante-trois', 'cent soixante-quatre', 'cent soixante-cinq', 'cent soixante-six', 'cent soixante-sept', 'cent soixante-huit', 'cent soixante-neuf', 'cent soixante-dix', 'cent soixante-et-onze', 'cent soixante-douze', 'cent soixante-treize', 'cent soixante-quatorze', 'cent soixante-quinze', 'cent soixante-seize', 'cent soixante-dix-sept', 'cent soixante-dix-huit', 'cent soixante-dix-neuf', 'cent quatre-vingts', 'cent quatre-vingt-un', 'cent quatre-vingt-deux', 'cent quatre-vingt-trois', 'cent quatre-vingt-quatre', 'cent quatre-vingt-cinq', 'cent quatre-vingt-six', 'cent quatre-vingt-sept', 'cent quatre-vingt-huit', 'cent quatre-vingt-neuf', 'cent quatre-vingt-dix', 'cent quatre-vingt-onze', 'cent quatre-vingt-douze', 'cent quatre-vingt-treize', 'cent quatre-vingt-quatorze', 'cent quatre-vingt-quinze', 'cent quatre-vingt-seize', 'cent quatre-vingt-dix-sept', 'cent quatre-vingt-dix-huit', 'cent quatre-vingt-dix-neuf', 'deux cents', 'deux cent-un', 'deux cent-deux', 'deux cent-trois', 'deux cent-quatre', 'deux cent-cinq', 'deux cent-six', 'deux cent-sept', 'deux cent-huit', 'deux cent-neuf', 'deux cent dix', 'deux cent onze', 'deux cent douze', 'deux cent treize', 'deux cent quatorze', 'deux cent quinze', 'deux cent seize', 'deux cent dix-sept', 'deux cent dix-huit', 'deux cent dix-neuf', 'deux cent vingt', 'deux cent vingt-et-un', 'deux cent vingt-deux', 'deux cent vingt-trois', 'deux cent vingt-quatre', 'deux cent vingt-cinq', 'deux cent vingt-six', 'deux cent vingt-sept', 'deux cent vingt-huit', 'deux cent vingt-neuf', 'deux cent trente', 'deux cent trente-et-un', 'deux cent trente-deux', 'deux cent trente-trois', 'deux cent trente-quatre', 'deux cent trente-cinq', 'deux cent trente-six', 'deux cent trente-sept', 'deux cent trente-huit', 'deux cent trente-neuf', 'deux cent quarante', 'deux cent quarante-et-un', 'deux cent quarante-deux', 'deux cent quarante-trois', 'deux cent quarante-quatre', 'deux cent quarante-cinq', 'deux cent quarante-six', 'deux cent quarante-sept', 'deux cent quarante-huit', 'deux cent quarante-neuf', 'deux cent cinquante', 'deux cent cinquante-et-un', 'deux cent cinquante-deux', 'deux cent cinquante-trois', 'deux cent cinquante-quatre', 'deux cent cinquante-cinq', 'deux cent cinquante-six', 'deux cent cinquante-sept', 'deux cent cinquante-huit', 'deux cent cinquante-neuf', 'deux cent soixante', 'deux cent soixante-et-un', 'deux cent soixante-deux', 'deux cent soixante-trois', 'deux cent soixante-quatre', 'deux cent soixante-cinq', 'deux cent soixante-six', 'deux cent soixante-sept', 'deux cent soixante-huit', 'deux cent soixante-neuf', 'deux cent soixante-dix', 'deux cent soixante-et-onze', 'deux cent soixante-douze', 'deux cent soixante-treize', 'deux cent soixante-quatorze', 'deux cent soixante-quinze', 'deux cent soixante-seize', 'deux cent soixante-dix-sept', 'deux cent soixante-dix-huit', 'deux cent soixante-dix-neuf', 'deux cent quatre-vingts', 'deux cent quatre-vingt-un', 'deux cent quatre-vingt-deux', 'deux cent quatre-vingt-trois', 'deux cent quatre-vingt-quatre', 'deux cent quatre-vingt-cinq', 'deux cent quatre-vingt-six', 'deux cent quatre-vingt-sept', 'deux cent quatre-vingt-huit', 'deux cent quatre-vingt-neuf', 'deux cent quatre-vingt-dix', 'deux cent quatre-vingt-onze', 'deux cent quatre-vingt-douze', 'deux cent quatre-vingt-treize', 'deux cent quatre-vingt-quatorze', 'deux cent quatre-vingt-quinze', 'deux cent quatre-vingt-seize', 'deux cent quatre-vingt-dix-sept', 'deux cent quatre-vingt-dix-huit', 'deux cent quatre-vingt-dix-neuf', 'trois cents', 'trois cent-un', 'trois cent-deux', 'trois cent-trois', 'trois cent-quatre', 'trois cent-cinq', 'trois cent-six', 'trois cent-sept', 'trois cent-huit', 'trois cent-neuf', 'trois cent dix', 'trois cent onze', 'trois cent douze', 'trois cent treize', 'trois cent quatorze', 'trois cent quinze', 'trois cent seize', 'trois cent dix-sept', 'trois cent dix-huit', 'trois cent dix-neuf', 'trois cent vingt', 'trois cent vingt-et-un', 'trois cent vingt-deux', 'trois cent vingt-trois', 'trois cent vingt-quatre', 'trois cent vingt-cinq', 'trois cent vingt-six', 'trois cent vingt-sept', 'trois cent vingt-huit', 'trois cent vingt-neuf', 'trois cent trente', 'trois cent trente-et-un', 'trois cent trente-deux', 'trois cent trente-trois', 'trois cent trente-quatre', 'trois cent trente-cinq', 'trois cent trente-six', 'trois cent trente-sept', 'trois cent trente-huit', 'trois cent trente-neuf', 'trois cent quarante', 'trois cent quarante-et-un', 'trois cent quarante-deux', 'trois cent quarante-trois', 'trois cent quarante-quatre', 'trois cent quarante-cinq', 'trois cent quarante-six', 'trois cent quarante-sept', 'trois cent quarante-huit', 'trois cent quarante-neuf', 'trois cent cinquante', 'trois cent cinquante-et-un', 'trois cent cinquante-deux', 'trois cent cinquante-trois', 'trois cent cinquante-quatre', 'trois cent cinquante-cinq', 'trois cent cinquante-six', 'trois cent cinquante-sept', 'trois cent cinquante-huit', 'trois cent cinquante-neuf', 'trois cent soixante', 'trois cent soixante-et-un', 'trois cent soixante-deux', 'trois cent soixante-trois', 'trois cent soixante-quatre', 'trois cent soixante-cinq', 'trois cent soixante-six', 'trois cent soixante-sept', 'trois cent soixante-huit', 'trois cent soixante-neuf', 'trois cent soixante-dix', 'trois cent soixante-et-onze', 'trois cent soixante-douze', 'trois cent soixante-treize', 'trois cent soixante-quatorze', 'trois cent soixante-quinze', 'trois cent soixante-seize', 'trois cent soixante-dix-sept', 'trois cent soixante-dix-huit', 'trois cent soixante-dix-neuf', 'trois cent quatre-vingts', 'trois cent quatre-vingt-un', 'trois cent quatre-vingt-deux', 'trois cent quatre-vingt-trois', 'trois cent quatre-vingt-quatre', 'trois cent quatre-vingt-cinq', 'trois cent quatre-vingt-six', 'trois cent quatre-vingt-sept', 'trois cent quatre-vingt-huit', 'trois cent quatre-vingt-neuf', 'trois cent quatre-vingt-dix', 'trois cent quatre-vingt-onze', 'trois cent quatre-vingt-douze', 'trois cent quatre-vingt-treize', 'trois cent quatre-vingt-quatorze', 'trois cent quatre-vingt-quinze', 'trois cent quatre-vingt-seize', 'trois cent quatre-vingt-dix-sept', 'trois cent quatre-vingt-dix-huit', 'trois cent quatre-vingt-dix-neuf', 'quatre cents', 'quatre cent-un', 'quatre cent-deux', 'quatre cent-trois', 'quatre cent-quatre', 'quatre cent-cinq', 'quatre cent-six', 'quatre cent-sept', 'quatre cent-huit', 'quatre cent-neuf', 'quatre cent dix', 'quatre cent onze', 'quatre cent douze', 'quatre cent treize', 'quatre cent quatorze', 'quatre cent quinze', 'quatre cent seize', 'quatre cent dix-sept', 'quatre cent dix-huit', 'quatre cent dix-neuf', 'quatre cent vingt', 'quatre cent vingt-et-un', 'quatre cent vingt-deux', 'quatre cent vingt-trois', 'quatre cent vingt-quatre', 'quatre cent vingt-cinq', 'quatre cent vingt-six', 'quatre cent vingt-sept', 'quatre cent vingt-huit', 'quatre cent vingt-neuf', 'quatre cent trente', 'quatre cent trente-et-un', 'quatre cent trente-deux', 'quatre cent trente-trois', 'quatre cent trente-quatre', 'quatre cent trente-cinq', 'quatre cent trente-six', 'quatre cent trente-sept', 'quatre cent trente-huit', 'quatre cent trente-neuf', 'quatre cent quarante', 'quatre cent quarante-et-un', 'quatre cent quarante-deux', 'quatre cent quarante-trois', 'quatre cent quarante-quatre', 'quatre cent quarante-cinq', 'quatre cent quarante-six', 'quatre cent quarante-sept', 'quatre cent quarante-huit', 'quatre cent quarante-neuf', 'quatre cent cinquante', 'quatre cent cinquante-et-un', 'quatre cent cinquante-deux', 'quatre cent cinquante-trois', 'quatre cent cinquante-quatre', 'quatre cent cinquante-cinq', 'quatre cent cinquante-six', 'quatre cent cinquante-sept', 'quatre cent cinquante-huit', 'quatre cent cinquante-neuf', 'quatre cent soixante', 'quatre cent soixante-et-un', 'quatre cent soixante-deux', 'quatre cent soixante-trois', 'quatre cent soixante-quatre', 'quatre cent soixante-cinq', 'quatre cent soixante-six', 'quatre cent soixante-sept', 'quatre cent soixante-huit', 'quatre cent soixante-neuf', 'quatre cent soixante-dix', 'quatre cent soixante-et-onze', 'quatre cent soixante-douze', 'quatre cent soixante-treize', 'quatre cent soixante-quatorze', 'quatre cent soixante-quinze', 'quatre cent soixante-seize', 'quatre cent soixante-dix-sept', 'quatre cent soixante-dix-huit', 'quatre cent soixante-dix-neuf', 'quatre cent quatre-vingts', 'quatre cent quatre-vingt-un', 'quatre cent quatre-vingt-deux', 'quatre cent quatre-vingt-trois', 'quatre cent quatre-vingt-quatre', 'quatre cent quatre-vingt-cinq', 'quatre cent quatre-vingt-six', 'quatre cent quatre-vingt-sept', 'quatre cent quatre-vingt-huit', 'quatre cent quatre-vingt-neuf', 'quatre cent quatre-vingt-dix', 'quatre cent quatre-vingt-onze', 'quatre cent quatre-vingt-douze', 'quatre cent quatre-vingt-treize', 'quatre cent quatre-vingt-quatorze', 'quatre cent quatre-vingt-quinze', 'quatre cent quatre-vingt-seize', 'quatre cent quatre-vingt-dix-sept', 'quatre cent quatre-vingt-dix-huit', 'quatre cent quatre-vingt-dix-neuf', 'cinq cents', 'cinq cent-un', 'cinq cent-deux', 'cinq cent-trois', 'cinq cent-quatre', 'cinq cent-cinq', 'cinq cent-six', 'cinq cent-sept', 'cinq cent-huit', 'cinq cent-neuf', 'cinq cent dix', 'cinq cent onze', 'cinq cent douze', 'cinq cent treize', 'cinq cent quatorze', 'cinq cent quinze', 'cinq cent seize', 'cinq cent dix-sept', 'cinq cent dix-huit', 'cinq cent dix-neuf', 'cinq cent vingt', 'cinq cent vingt-et-un', 'cinq cent vingt-deux', 'cinq cent vingt-trois', 'cinq cent vingt-quatre', 'cinq cent vingt-cinq', 'cinq cent vingt-six', 'cinq cent vingt-sept', 'cinq cent vingt-huit', 'cinq cent vingt-neuf', 'cinq cent trente', 'cinq cent trente-et-un', 'cinq cent trente-deux', 'cinq cent trente-trois', 'cinq cent trente-quatre', 'cinq cent trente-cinq', 'cinq cent trente-six', 'cinq cent trente-sept', 'cinq cent trente-huit', 'cinq cent trente-neuf', 'cinq cent quarante', 'cinq cent quarante-et-un', 'cinq cent quarante-deux', 'cinq cent quarante-trois', 'cinq cent quarante-quatre', 'cinq cent quarante-cinq', 'cinq cent quarante-six', 'cinq cent quarante-sept', 'cinq cent quarante-huit', 'cinq cent quarante-neuf', 'cinq cent cinquante', 'cinq cent cinquante-et-un', 'cinq cent cinquante-deux', 'cinq cent cinquante-trois', 'cinq cent cinquante-quatre', 'cinq cent cinquante-cinq', 'cinq cent cinquante-six', 'cinq cent cinquante-sept', 'cinq cent cinquante-huit', 'cinq cent cinquante-neuf', 'cinq cent soixante', 'cinq cent soixante-et-un', 'cinq cent soixante-deux', 'cinq cent soixante-trois', 'cinq cent soixante-quatre', 'cinq cent soixante-cinq', 'cinq cent soixante-six', 'cinq cent soixante-sept', 'cinq cent soixante-huit', 'cinq cent soixante-neuf', 'cinq cent soixante-dix', 'cinq cent soixante-et-onze', 'cinq cent soixante-douze', 'cinq cent soixante-treize', 'cinq cent soixante-quatorze', 'cinq cent soixante-quinze', 'cinq cent soixante-seize', 'cinq cent soixante-dix-sept', 'cinq cent soixante-dix-huit', 'cinq cent soixante-dix-neuf', 'cinq cent quatre-vingts', 'cinq cent quatre-vingt-un', 'cinq cent quatre-vingt-deux', 'cinq cent quatre-vingt-trois', 'cinq cent quatre-vingt-quatre', 'cinq cent quatre-vingt-cinq', 'cinq cent quatre-vingt-six', 'cinq cent quatre-vingt-sept', 'cinq cent quatre-vingt-huit', 'cinq cent quatre-vingt-neuf', 'cinq cent quatre-vingt-dix', 'cinq cent quatre-vingt-onze', 'cinq cent quatre-vingt-douze', 'cinq cent quatre-vingt-treize', 'cinq cent quatre-vingt-quatorze', 'cinq cent quatre-vingt-quinze', 'cinq cent quatre-vingt-seize', 'cinq cent quatre-vingt-dix-sept', 'cinq cent quatre-vingt-dix-huit', 'cinq cent quatre-vingt-dix-neuf', 'six cents', 'six cent-un', 'six cent-deux', 'six cent-trois', 'six cent-quatre', 'six cent-cinq', 'six cent-six', 'six cent-sept', 'six cent-huit', 'six cent-neuf', 'six cent dix', 'six cent onze', 'six cent douze', 'six cent treize', 'six cent quatorze', 'six cent quinze', 'six cent seize', 'six cent dix-sept', 'six cent dix-huit', 'six cent dix-neuf', 'six cent vingt', 'six cent vingt-et-un', 'six cent vingt-deux', 'six cent vingt-trois', 'six cent vingt-quatre', 'six cent vingt-cinq', 'six cent vingt-six', 'six cent vingt-sept', 'six cent vingt-huit', 'six cent vingt-neuf', 'six cent trente', 'six cent trente-et-un', 'six cent trente-deux', 'six cent trente-trois', 'six cent trente-quatre', 'six cent trente-cinq', 'six cent trente-six', 'six cent trente-sept', 'six cent trente-huit', 'six cent trente-neuf', 'six cent quarante', 'six cent quarante-et-un', 'six cent quarante-deux', 'six cent quarante-trois', 'six cent quarante-quatre', 'six cent quarante-cinq', 'six cent quarante-six', 'six cent quarante-sept', 'six cent quarante-huit', 'six cent quarante-neuf', 'six cent cinquante', 'six cent cinquante-et-un', 'six cent cinquante-deux', 'six cent cinquante-trois', 'six cent cinquante-quatre', 'six cent cinquante-cinq', 'six cent cinquante-six', 'six cent cinquante-sept', 'six cent cinquante-huit', 'six cent cinquante-neuf', 'six cent soixante', 'six cent soixante-et-un', 'six cent soixante-deux', 'six cent soixante-trois', 'six cent soixante-quatre', 'six cent soixante-cinq', 'six cent soixante-six', 'six cent soixante-sept', 'six cent soixante-huit', 'six cent soixante-neuf', 'six cent soixante-dix', 'six cent soixante-et-onze', 'six cent soixante-douze', 'six cent soixante-treize', 'six cent soixante-quatorze', 'six cent soixante-quinze', 'six cent soixante-seize', 'six cent soixante-dix-sept', 'six cent soixante-dix-huit', 'six cent soixante-dix-neuf', 'six cent quatre-vingts', 'six cent quatre-vingt-un', 'six cent quatre-vingt-deux', 'six cent quatre-vingt-trois', 'six cent quatre-vingt-quatre', 'six cent quatre-vingt-cinq', 'six cent quatre-vingt-six', 'six cent quatre-vingt-sept', 'six cent quatre-vingt-huit', 'six cent quatre-vingt-neuf', 'six cent quatre-vingt-dix', 'six cent quatre-vingt-onze', 'six cent quatre-vingt-douze', 'six cent quatre-vingt-treize', 'six cent quatre-vingt-quatorze', 'six cent quatre-vingt-quinze', 'six cent quatre-vingt-seize', 'six cent quatre-vingt-dix-sept', 'six cent quatre-vingt-dix-huit', 'six cent quatre-vingt-dix-neuf', 'sept cents', 'sept cent-un', 'sept cent-deux', 'sept cent-trois', 'sept cent-quatre', 'sept cent-cinq', 'sept cent-six', 'sept cent-sept', 'sept cent-huit', 'sept cent-neuf', 'sept cent dix', 'sept cent onze', 'sept cent douze', 'sept cent treize', 'sept cent quatorze', 'sept cent quinze', 'sept cent seize', 'sept cent dix-sept', 'sept cent dix-huit', 'sept cent dix-neuf', 'sept cent vingt', 'sept cent vingt-et-un', 'sept cent vingt-deux', 'sept cent vingt-trois', 'sept cent vingt-quatre', 'sept cent vingt-cinq', 'sept cent vingt-six', 'sept cent vingt-sept', 'sept cent vingt-huit', 'sept cent vingt-neuf', 'sept cent trente', 'sept cent trente-et-un', 'sept cent trente-deux', 'sept cent trente-trois', 'sept cent trente-quatre', 'sept cent trente-cinq', 'sept cent trente-six', 'sept cent trente-sept', 'sept cent trente-huit', 'sept cent trente-neuf', 'sept cent quarante', 'sept cent quarante-et-un', 'sept cent quarante-deux', 'sept cent quarante-trois', 'sept cent quarante-quatre', 'sept cent quarante-cinq', 'sept cent quarante-six', 'sept cent quarante-sept', 'sept cent quarante-huit', 'sept cent quarante-neuf', 'sept cent cinquante', 'sept cent cinquante-et-un', 'sept cent cinquante-deux', 'sept cent cinquante-trois', 'sept cent cinquante-quatre', 'sept cent cinquante-cinq', 'sept cent cinquante-six', 'sept cent cinquante-sept', 'sept cent cinquante-huit', 'sept cent cinquante-neuf', 'sept cent soixante', 'sept cent soixante-et-un', 'sept cent soixante-deux', 'sept cent soixante-trois', 'sept cent soixante-quatre', 'sept cent soixante-cinq', 'sept cent soixante-six', 'sept cent soixante-sept', 'sept cent soixante-huit', 'sept cent soixante-neuf', 'sept cent soixante-dix', 'sept cent soixante-et-onze', 'sept cent soixante-douze', 'sept cent soixante-treize', 'sept cent soixante-quatorze', 'sept cent soixante-quinze', 'sept cent soixante-seize', 'sept cent soixante-dix-sept', 'sept cent soixante-dix-huit', 'sept cent soixante-dix-neuf', 'sept cent quatre-vingts', 'sept cent quatre-vingt-un', 'sept cent quatre-vingt-deux', 'sept cent quatre-vingt-trois', 'sept cent quatre-vingt-quatre', 'sept cent quatre-vingt-cinq', 'sept cent quatre-vingt-six', 'sept cent quatre-vingt-sept', 'sept cent quatre-vingt-huit', 'sept cent quatre-vingt-neuf', 'sept cent quatre-vingt-dix', 'sept cent quatre-vingt-onze', 'sept cent quatre-vingt-douze', 'sept cent quatre-vingt-treize', 'sept cent quatre-vingt-quatorze', 'sept cent quatre-vingt-quinze', 'sept cent quatre-vingt-seize', 'sept cent quatre-vingt-dix-sept', 'sept cent quatre-vingt-dix-huit', 'sept cent quatre-vingt-dix-neuf', 'huit cents', 'huit cent-un', 'huit cent-deux', 'huit cent-trois', 'huit cent-quatre', 'huit cent-cinq', 'huit cent-six', 'huit cent-sept', 'huit cent-huit', 'huit cent-neuf', 'huit cent dix', 'huit cent onze', 'huit cent douze', 'huit cent treize', 'huit cent quatorze', 'huit cent quinze', 'huit cent seize', 'huit cent dix-sept', 'huit cent dix-huit', 'huit cent dix-neuf', 'huit cent vingt', 'huit cent vingt-et-un', 'huit cent vingt-deux', 'huit cent vingt-trois', 'huit cent vingt-quatre', 'huit cent vingt-cinq', 'huit cent vingt-six', 'huit cent vingt-sept', 'huit cent vingt-huit', 'huit cent vingt-neuf', 'huit cent trente', 'huit cent trente-et-un', 'huit cent trente-deux', 'huit cent trente-trois', 'huit cent trente-quatre', 'huit cent trente-cinq', 'huit cent trente-six', 'huit cent trente-sept', 'huit cent trente-huit', 'huit cent trente-neuf', 'huit cent quarante', 'huit cent quarante-et-un', 'huit cent quarante-deux', 'huit cent quarante-trois', 'huit cent quarante-quatre', 'huit cent quarante-cinq', 'huit cent quarante-six', 'huit cent quarante-sept', 'huit cent quarante-huit', 'huit cent quarante-neuf', 'huit cent cinquante', 'huit cent cinquante-et-un', 'huit cent cinquante-deux', 'huit cent cinquante-trois', 'huit cent cinquante-quatre', 'huit cent cinquante-cinq', 'huit cent cinquante-six', 'huit cent cinquante-sept', 'huit cent cinquante-huit', 'huit cent cinquante-neuf', 'huit cent soixante', 'huit cent soixante-et-un', 'huit cent soixante-deux', 'huit cent soixante-trois', 'huit cent soixante-quatre', 'huit cent soixante-cinq', 'huit cent soixante-six', 'huit cent soixante-sept', 'huit cent soixante-huit', 'huit cent soixante-neuf', 'huit cent soixante-dix', 'huit cent soixante-et-onze', 'huit cent soixante-douze', 'huit cent soixante-treize', 'huit cent soixante-quatorze', 'huit cent soixante-quinze', 'huit cent soixante-seize', 'huit cent soixante-dix-sept', 'huit cent soixante-dix-huit', 'huit cent soixante-dix-neuf', 'huit cent quatre-vingts', 'huit cent quatre-vingt-un', 'huit cent quatre-vingt-deux', 'huit cent quatre-vingt-trois', 'huit cent quatre-vingt-quatre', 'huit cent quatre-vingt-cinq', 'huit cent quatre-vingt-six', 'huit cent quatre-vingt-sept', 'huit cent quatre-vingt-huit', 'huit cent quatre-vingt-neuf', 'huit cent quatre-vingt-dix', 'huit cent quatre-vingt-onze', 'huit cent quatre-vingt-douze', 'huit cent quatre-vingt-treize', 'huit cent quatre-vingt-quatorze', 'huit cent quatre-vingt-quinze', 'huit cent quatre-vingt-seize', 'huit cent quatre-vingt-dix-sept', 'huit cent quatre-vingt-dix-huit', 'huit cent quatre-vingt-dix-neuf', 'neuf cents', 'neuf cent-un', 'neuf cent-deux', 'neuf cent-trois', 'neuf cent-quatre', 'neuf cent-cinq', 'neuf cent-six', 'neuf cent-sept', 'neuf cent-huit', 'neuf cent-neuf', 'neuf cent dix', 'neuf cent onze', 'neuf cent douze', 'neuf cent treize', 'neuf cent quatorze', 'neuf cent quinze', 'neuf cent seize', 'neuf cent dix-sept', 'neuf cent dix-huit', 'neuf cent dix-neuf', 'neuf cent vingt', 'neuf cent vingt-et-un', 'neuf cent vingt-deux', 'neuf cent vingt-trois', 'neuf cent vingt-quatre', 'neuf cent vingt-cinq', 'neuf cent vingt-six', 'neuf cent vingt-sept', 'neuf cent vingt-huit', 'neuf cent vingt-neuf', 'neuf cent trente', 'neuf cent trente-et-un', 'neuf cent trente-deux', 'neuf cent trente-trois', 'neuf cent trente-quatre', 'neuf cent trente-cinq', 'neuf cent trente-six', 'neuf cent trente-sept', 'neuf cent trente-huit', 'neuf cent trente-neuf', 'neuf cent quarante', 'neuf cent quarante-et-un', 'neuf cent quarante-deux', 'neuf cent quarante-trois', 'neuf cent quarante-quatre', 'neuf cent quarante-cinq', 'neuf cent quarante-six', 'neuf cent quarante-sept', 'neuf cent quarante-huit', 'neuf cent quarante-neuf', 'neuf cent cinquante', 'neuf cent cinquante-et-un', 'neuf cent cinquante-deux', 'neuf cent cinquante-trois', 'neuf cent cinquante-quatre', 'neuf cent cinquante-cinq', 'neuf cent cinquante-six', 'neuf cent cinquante-sept', 'neuf cent cinquante-huit', 'neuf cent cinquante-neuf', 'neuf cent soixante', 'neuf cent soixante-et-un', 'neuf cent soixante-deux', 'neuf cent soixante-trois', 'neuf cent soixante-quatre', 'neuf cent soixante-cinq', 'neuf cent soixante-six', 'neuf cent soixante-sept', 'neuf cent soixante-huit', 'neuf cent soixante-neuf', 'neuf cent soixante-dix', 'neuf cent soixante-et-onze', 'neuf cent soixante-douze', 'neuf cent soixante-treize', 'neuf cent soixante-quatorze', 'neuf cent soixante-quinze', 'neuf cent soixante-seize', 'neuf cent soixante-dix-sept', 'neuf cent soixante-dix-huit', 'neuf cent soixante-dix-neuf', 'neuf cent quatre-vingts', 'neuf cent quatre-vingt-un', 'neuf cent quatre-vingt-deux', 'neuf cent quatre-vingt-trois', 'neuf cent quatre-vingt-quatre', 'neuf cent quatre-vingt-cinq', 'neuf cent quatre-vingt-six', 'neuf cent quatre-vingt-sept', 'neuf cent quatre-vingt-huit', 'neuf cent quatre-vingt-neuf', 'neuf cent quatre-vingt-dix', 'neuf cent quatre-vingt-onze', 'neuf cent quatre-vingt-douze', 'neuf cent quatre-vingt-treize', 'neuf cent quatre-vingt-quatorze', 'neuf cent quatre-vingt-quinze', 'neuf cent quatre-vingt-seize', 'neuf cent quatre-vingt-dix-sept', 'neuf cent quatre-vingt-dix-huit', 'neuf cent quatre-vingt-dix-neuf']
5
+ :fr => ['zéro', 'un', 'deux', 'trois', 'quatre', 'cinq', 'six', 'sept', 'huit', 'neuf', 'dix', 'onze', 'douze', 'treize', 'quatorze', 'quinze', 'seize', 'dix-sept', 'dix-huit', 'dix-neuf', 'vingt', 'vingt-et-un', 'vingt-deux', 'vingt-trois', 'vingt-quatre', 'vingt-cinq', 'vingt-six', 'vingt-sept', 'vingt-huit', 'vingt-neuf', 'trente', 'trente-et-un', 'trente-deux', 'trente-trois', 'trente-quatre', 'trente-cinq', 'trente-six', 'trente-sept', 'trente-huit', 'trente-neuf', 'quarante', 'quarante-et-un', 'quarante-deux', 'quarante-trois', 'quarante-quatre', 'quarante-cinq', 'quarante-six', 'quarante-sept', 'quarante-huit', 'quarante-neuf', 'cinquante', 'cinquante-et-un', 'cinquante-deux', 'cinquante-trois', 'cinquante-quatre', 'cinquante-cinq', 'cinquante-six', 'cinquante-sept', 'cinquante-huit', 'cinquante-neuf', 'soixante', 'soixante-et-un', 'soixante-deux', 'soixante-trois', 'soixante-quatre', 'soixante-cinq', 'soixante-six', 'soixante-sept', 'soixante-huit', 'soixante-neuf', 'soixante-dix', 'soixante-et-onze', 'soixante-douze', 'soixante-treize', 'soixante-quatorze', 'soixante-quinze', 'soixante-seize', 'soixante-dix-sept', 'soixante-dix-huit', 'soixante-dix-neuf', 'quatre-vingts', 'quatre-vingt-un', 'quatre-vingt-deux', 'quatre-vingt-trois', 'quatre-vingt-quatre', 'quatre-vingt-cinq', 'quatre-vingt-six', 'quatre-vingt-sept', 'quatre-vingt-huit', 'quatre-vingt-neuf', 'quatre-vingt-dix', 'quatre-vingt-onze', 'quatre-vingt-douze', 'quatre-vingt-treize', 'quatre-vingt-quatorze', 'quatre-vingt-quinze', 'quatre-vingt-seize', 'quatre-vingt-dix-sept', 'quatre-vingt-dix-huit', 'quatre-vingt-dix-neuf', 'cent', 'cent-un', 'cent-deux', 'cent-trois', 'cent-quatre', 'cent-cinq', 'cent-six', 'cent-sept', 'cent-huit', 'cent-neuf', 'cent dix', 'cent onze', 'cent douze', 'cent treize', 'cent quatorze', 'cent quinze', 'cent seize', 'cent dix-sept', 'cent dix-huit', 'cent dix-neuf', 'cent vingt', 'cent vingt-et-un', 'cent vingt-deux', 'cent vingt-trois', 'cent vingt-quatre', 'cent vingt-cinq', 'cent vingt-six', 'cent vingt-sept', 'cent vingt-huit', 'cent vingt-neuf', 'cent trente', 'cent trente-et-un', 'cent trente-deux', 'cent trente-trois', 'cent trente-quatre', 'cent trente-cinq', 'cent trente-six', 'cent trente-sept', 'cent trente-huit', 'cent trente-neuf', 'cent quarante', 'cent quarante-et-un', 'cent quarante-deux', 'cent quarante-trois', 'cent quarante-quatre', 'cent quarante-cinq', 'cent quarante-six', 'cent quarante-sept', 'cent quarante-huit', 'cent quarante-neuf', 'cent cinquante', 'cent cinquante-et-un', 'cent cinquante-deux', 'cent cinquante-trois', 'cent cinquante-quatre', 'cent cinquante-cinq', 'cent cinquante-six', 'cent cinquante-sept', 'cent cinquante-huit', 'cent cinquante-neuf', 'cent soixante', 'cent soixante-et-un', 'cent soixante-deux', 'cent soixante-trois', 'cent soixante-quatre', 'cent soixante-cinq', 'cent soixante-six', 'cent soixante-sept', 'cent soixante-huit', 'cent soixante-neuf', 'cent soixante-dix', 'cent soixante-et-onze', 'cent soixante-douze', 'cent soixante-treize', 'cent soixante-quatorze', 'cent soixante-quinze', 'cent soixante-seize', 'cent soixante-dix-sept', 'cent soixante-dix-huit', 'cent soixante-dix-neuf', 'cent quatre-vingts', 'cent quatre-vingt-un', 'cent quatre-vingt-deux', 'cent quatre-vingt-trois', 'cent quatre-vingt-quatre', 'cent quatre-vingt-cinq', 'cent quatre-vingt-six', 'cent quatre-vingt-sept', 'cent quatre-vingt-huit', 'cent quatre-vingt-neuf', 'cent quatre-vingt-dix', 'cent quatre-vingt-onze', 'cent quatre-vingt-douze', 'cent quatre-vingt-treize', 'cent quatre-vingt-quatorze', 'cent quatre-vingt-quinze', 'cent quatre-vingt-seize', 'cent quatre-vingt-dix-sept', 'cent quatre-vingt-dix-huit', 'cent quatre-vingt-dix-neuf', 'deux cents', 'deux cent-un', 'deux cent-deux', 'deux cent-trois', 'deux cent-quatre', 'deux cent-cinq', 'deux cent-six', 'deux cent-sept', 'deux cent-huit', 'deux cent-neuf', 'deux cent dix', 'deux cent onze', 'deux cent douze', 'deux cent treize', 'deux cent quatorze', 'deux cent quinze', 'deux cent seize', 'deux cent dix-sept', 'deux cent dix-huit', 'deux cent dix-neuf', 'deux cent vingt', 'deux cent vingt-et-un', 'deux cent vingt-deux', 'deux cent vingt-trois', 'deux cent vingt-quatre', 'deux cent vingt-cinq', 'deux cent vingt-six', 'deux cent vingt-sept', 'deux cent vingt-huit', 'deux cent vingt-neuf', 'deux cent trente', 'deux cent trente-et-un', 'deux cent trente-deux', 'deux cent trente-trois', 'deux cent trente-quatre', 'deux cent trente-cinq', 'deux cent trente-six', 'deux cent trente-sept', 'deux cent trente-huit', 'deux cent trente-neuf', 'deux cent quarante', 'deux cent quarante-et-un', 'deux cent quarante-deux', 'deux cent quarante-trois', 'deux cent quarante-quatre', 'deux cent quarante-cinq', 'deux cent quarante-six', 'deux cent quarante-sept', 'deux cent quarante-huit', 'deux cent quarante-neuf', 'deux cent cinquante', 'deux cent cinquante-et-un', 'deux cent cinquante-deux', 'deux cent cinquante-trois', 'deux cent cinquante-quatre', 'deux cent cinquante-cinq', 'deux cent cinquante-six', 'deux cent cinquante-sept', 'deux cent cinquante-huit', 'deux cent cinquante-neuf', 'deux cent soixante', 'deux cent soixante-et-un', 'deux cent soixante-deux', 'deux cent soixante-trois', 'deux cent soixante-quatre', 'deux cent soixante-cinq', 'deux cent soixante-six', 'deux cent soixante-sept', 'deux cent soixante-huit', 'deux cent soixante-neuf', 'deux cent soixante-dix', 'deux cent soixante-et-onze', 'deux cent soixante-douze', 'deux cent soixante-treize', 'deux cent soixante-quatorze', 'deux cent soixante-quinze', 'deux cent soixante-seize', 'deux cent soixante-dix-sept', 'deux cent soixante-dix-huit', 'deux cent soixante-dix-neuf', 'deux cent quatre-vingts', 'deux cent quatre-vingt-un', 'deux cent quatre-vingt-deux', 'deux cent quatre-vingt-trois', 'deux cent quatre-vingt-quatre', 'deux cent quatre-vingt-cinq', 'deux cent quatre-vingt-six', 'deux cent quatre-vingt-sept', 'deux cent quatre-vingt-huit', 'deux cent quatre-vingt-neuf', 'deux cent quatre-vingt-dix', 'deux cent quatre-vingt-onze', 'deux cent quatre-vingt-douze', 'deux cent quatre-vingt-treize', 'deux cent quatre-vingt-quatorze', 'deux cent quatre-vingt-quinze', 'deux cent quatre-vingt-seize', 'deux cent quatre-vingt-dix-sept', 'deux cent quatre-vingt-dix-huit', 'deux cent quatre-vingt-dix-neuf', 'trois cents', 'trois cent-un', 'trois cent-deux', 'trois cent-trois', 'trois cent-quatre', 'trois cent-cinq', 'trois cent-six', 'trois cent-sept', 'trois cent-huit', 'trois cent-neuf', 'trois cent dix', 'trois cent onze', 'trois cent douze', 'trois cent treize', 'trois cent quatorze', 'trois cent quinze', 'trois cent seize', 'trois cent dix-sept', 'trois cent dix-huit', 'trois cent dix-neuf', 'trois cent vingt', 'trois cent vingt-et-un', 'trois cent vingt-deux', 'trois cent vingt-trois', 'trois cent vingt-quatre', 'trois cent vingt-cinq', 'trois cent vingt-six', 'trois cent vingt-sept', 'trois cent vingt-huit', 'trois cent vingt-neuf', 'trois cent trente', 'trois cent trente-et-un', 'trois cent trente-deux', 'trois cent trente-trois', 'trois cent trente-quatre', 'trois cent trente-cinq', 'trois cent trente-six', 'trois cent trente-sept', 'trois cent trente-huit', 'trois cent trente-neuf', 'trois cent quarante', 'trois cent quarante-et-un', 'trois cent quarante-deux', 'trois cent quarante-trois', 'trois cent quarante-quatre', 'trois cent quarante-cinq', 'trois cent quarante-six', 'trois cent quarante-sept', 'trois cent quarante-huit', 'trois cent quarante-neuf', 'trois cent cinquante', 'trois cent cinquante-et-un', 'trois cent cinquante-deux', 'trois cent cinquante-trois', 'trois cent cinquante-quatre', 'trois cent cinquante-cinq', 'trois cent cinquante-six', 'trois cent cinquante-sept', 'trois cent cinquante-huit', 'trois cent cinquante-neuf', 'trois cent soixante', 'trois cent soixante-et-un', 'trois cent soixante-deux', 'trois cent soixante-trois', 'trois cent soixante-quatre', 'trois cent soixante-cinq', 'trois cent soixante-six', 'trois cent soixante-sept', 'trois cent soixante-huit', 'trois cent soixante-neuf', 'trois cent soixante-dix', 'trois cent soixante-et-onze', 'trois cent soixante-douze', 'trois cent soixante-treize', 'trois cent soixante-quatorze', 'trois cent soixante-quinze', 'trois cent soixante-seize', 'trois cent soixante-dix-sept', 'trois cent soixante-dix-huit', 'trois cent soixante-dix-neuf', 'trois cent quatre-vingts', 'trois cent quatre-vingt-un', 'trois cent quatre-vingt-deux', 'trois cent quatre-vingt-trois', 'trois cent quatre-vingt-quatre', 'trois cent quatre-vingt-cinq', 'trois cent quatre-vingt-six', 'trois cent quatre-vingt-sept', 'trois cent quatre-vingt-huit', 'trois cent quatre-vingt-neuf', 'trois cent quatre-vingt-dix', 'trois cent quatre-vingt-onze', 'trois cent quatre-vingt-douze', 'trois cent quatre-vingt-treize', 'trois cent quatre-vingt-quatorze', 'trois cent quatre-vingt-quinze', 'trois cent quatre-vingt-seize', 'trois cent quatre-vingt-dix-sept', 'trois cent quatre-vingt-dix-huit', 'trois cent quatre-vingt-dix-neuf', 'quatre cents', 'quatre cent-un', 'quatre cent-deux', 'quatre cent-trois', 'quatre cent-quatre', 'quatre cent-cinq', 'quatre cent-six', 'quatre cent-sept', 'quatre cent-huit', 'quatre cent-neuf', 'quatre cent dix', 'quatre cent onze', 'quatre cent douze', 'quatre cent treize', 'quatre cent quatorze', 'quatre cent quinze', 'quatre cent seize', 'quatre cent dix-sept', 'quatre cent dix-huit', 'quatre cent dix-neuf', 'quatre cent vingt', 'quatre cent vingt-et-un', 'quatre cent vingt-deux', 'quatre cent vingt-trois', 'quatre cent vingt-quatre', 'quatre cent vingt-cinq', 'quatre cent vingt-six', 'quatre cent vingt-sept', 'quatre cent vingt-huit', 'quatre cent vingt-neuf', 'quatre cent trente', 'quatre cent trente-et-un', 'quatre cent trente-deux', 'quatre cent trente-trois', 'quatre cent trente-quatre', 'quatre cent trente-cinq', 'quatre cent trente-six', 'quatre cent trente-sept', 'quatre cent trente-huit', 'quatre cent trente-neuf', 'quatre cent quarante', 'quatre cent quarante-et-un', 'quatre cent quarante-deux', 'quatre cent quarante-trois', 'quatre cent quarante-quatre', 'quatre cent quarante-cinq', 'quatre cent quarante-six', 'quatre cent quarante-sept', 'quatre cent quarante-huit', 'quatre cent quarante-neuf', 'quatre cent cinquante', 'quatre cent cinquante-et-un', 'quatre cent cinquante-deux', 'quatre cent cinquante-trois', 'quatre cent cinquante-quatre', 'quatre cent cinquante-cinq', 'quatre cent cinquante-six', 'quatre cent cinquante-sept', 'quatre cent cinquante-huit', 'quatre cent cinquante-neuf', 'quatre cent soixante', 'quatre cent soixante-et-un', 'quatre cent soixante-deux', 'quatre cent soixante-trois', 'quatre cent soixante-quatre', 'quatre cent soixante-cinq', 'quatre cent soixante-six', 'quatre cent soixante-sept', 'quatre cent soixante-huit', 'quatre cent soixante-neuf', 'quatre cent soixante-dix', 'quatre cent soixante-et-onze', 'quatre cent soixante-douze', 'quatre cent soixante-treize', 'quatre cent soixante-quatorze', 'quatre cent soixante-quinze', 'quatre cent soixante-seize', 'quatre cent soixante-dix-sept', 'quatre cent soixante-dix-huit', 'quatre cent soixante-dix-neuf', 'quatre cent quatre-vingts', 'quatre cent quatre-vingt-un', 'quatre cent quatre-vingt-deux', 'quatre cent quatre-vingt-trois', 'quatre cent quatre-vingt-quatre', 'quatre cent quatre-vingt-cinq', 'quatre cent quatre-vingt-six', 'quatre cent quatre-vingt-sept', 'quatre cent quatre-vingt-huit', 'quatre cent quatre-vingt-neuf', 'quatre cent quatre-vingt-dix', 'quatre cent quatre-vingt-onze', 'quatre cent quatre-vingt-douze', 'quatre cent quatre-vingt-treize', 'quatre cent quatre-vingt-quatorze', 'quatre cent quatre-vingt-quinze', 'quatre cent quatre-vingt-seize', 'quatre cent quatre-vingt-dix-sept', 'quatre cent quatre-vingt-dix-huit', 'quatre cent quatre-vingt-dix-neuf', 'cinq cents', 'cinq cent-un', 'cinq cent-deux', 'cinq cent-trois', 'cinq cent-quatre', 'cinq cent-cinq', 'cinq cent-six', 'cinq cent-sept', 'cinq cent-huit', 'cinq cent-neuf', 'cinq cent dix', 'cinq cent onze', 'cinq cent douze', 'cinq cent treize', 'cinq cent quatorze', 'cinq cent quinze', 'cinq cent seize', 'cinq cent dix-sept', 'cinq cent dix-huit', 'cinq cent dix-neuf', 'cinq cent vingt', 'cinq cent vingt-et-un', 'cinq cent vingt-deux', 'cinq cent vingt-trois', 'cinq cent vingt-quatre', 'cinq cent vingt-cinq', 'cinq cent vingt-six', 'cinq cent vingt-sept', 'cinq cent vingt-huit', 'cinq cent vingt-neuf', 'cinq cent trente', 'cinq cent trente-et-un', 'cinq cent trente-deux', 'cinq cent trente-trois', 'cinq cent trente-quatre', 'cinq cent trente-cinq', 'cinq cent trente-six', 'cinq cent trente-sept', 'cinq cent trente-huit', 'cinq cent trente-neuf', 'cinq cent quarante', 'cinq cent quarante-et-un', 'cinq cent quarante-deux', 'cinq cent quarante-trois', 'cinq cent quarante-quatre', 'cinq cent quarante-cinq', 'cinq cent quarante-six', 'cinq cent quarante-sept', 'cinq cent quarante-huit', 'cinq cent quarante-neuf', 'cinq cent cinquante', 'cinq cent cinquante-et-un', 'cinq cent cinquante-deux', 'cinq cent cinquante-trois', 'cinq cent cinquante-quatre', 'cinq cent cinquante-cinq', 'cinq cent cinquante-six', 'cinq cent cinquante-sept', 'cinq cent cinquante-huit', 'cinq cent cinquante-neuf', 'cinq cent soixante', 'cinq cent soixante-et-un', 'cinq cent soixante-deux', 'cinq cent soixante-trois', 'cinq cent soixante-quatre', 'cinq cent soixante-cinq', 'cinq cent soixante-six', 'cinq cent soixante-sept', 'cinq cent soixante-huit', 'cinq cent soixante-neuf', 'cinq cent soixante-dix', 'cinq cent soixante-et-onze', 'cinq cent soixante-douze', 'cinq cent soixante-treize', 'cinq cent soixante-quatorze', 'cinq cent soixante-quinze', 'cinq cent soixante-seize', 'cinq cent soixante-dix-sept', 'cinq cent soixante-dix-huit', 'cinq cent soixante-dix-neuf', 'cinq cent quatre-vingts', 'cinq cent quatre-vingt-un', 'cinq cent quatre-vingt-deux', 'cinq cent quatre-vingt-trois', 'cinq cent quatre-vingt-quatre', 'cinq cent quatre-vingt-cinq', 'cinq cent quatre-vingt-six', 'cinq cent quatre-vingt-sept', 'cinq cent quatre-vingt-huit', 'cinq cent quatre-vingt-neuf', 'cinq cent quatre-vingt-dix', 'cinq cent quatre-vingt-onze', 'cinq cent quatre-vingt-douze', 'cinq cent quatre-vingt-treize', 'cinq cent quatre-vingt-quatorze', 'cinq cent quatre-vingt-quinze', 'cinq cent quatre-vingt-seize', 'cinq cent quatre-vingt-dix-sept', 'cinq cent quatre-vingt-dix-huit', 'cinq cent quatre-vingt-dix-neuf', 'six cents', 'six cent-un', 'six cent-deux', 'six cent-trois', 'six cent-quatre', 'six cent-cinq', 'six cent-six', 'six cent-sept', 'six cent-huit', 'six cent-neuf', 'six cent dix', 'six cent onze', 'six cent douze', 'six cent treize', 'six cent quatorze', 'six cent quinze', 'six cent seize', 'six cent dix-sept', 'six cent dix-huit', 'six cent dix-neuf', 'six cent vingt', 'six cent vingt-et-un', 'six cent vingt-deux', 'six cent vingt-trois', 'six cent vingt-quatre', 'six cent vingt-cinq', 'six cent vingt-six', 'six cent vingt-sept', 'six cent vingt-huit', 'six cent vingt-neuf', 'six cent trente', 'six cent trente-et-un', 'six cent trente-deux', 'six cent trente-trois', 'six cent trente-quatre', 'six cent trente-cinq', 'six cent trente-six', 'six cent trente-sept', 'six cent trente-huit', 'six cent trente-neuf', 'six cent quarante', 'six cent quarante-et-un', 'six cent quarante-deux', 'six cent quarante-trois', 'six cent quarante-quatre', 'six cent quarante-cinq', 'six cent quarante-six', 'six cent quarante-sept', 'six cent quarante-huit', 'six cent quarante-neuf', 'six cent cinquante', 'six cent cinquante-et-un', 'six cent cinquante-deux', 'six cent cinquante-trois', 'six cent cinquante-quatre', 'six cent cinquante-cinq', 'six cent cinquante-six', 'six cent cinquante-sept', 'six cent cinquante-huit', 'six cent cinquante-neuf', 'six cent soixante', 'six cent soixante-et-un', 'six cent soixante-deux', 'six cent soixante-trois', 'six cent soixante-quatre', 'six cent soixante-cinq', 'six cent soixante-six', 'six cent soixante-sept', 'six cent soixante-huit', 'six cent soixante-neuf', 'six cent soixante-dix', 'six cent soixante-et-onze', 'six cent soixante-douze', 'six cent soixante-treize', 'six cent soixante-quatorze', 'six cent soixante-quinze', 'six cent soixante-seize', 'six cent soixante-dix-sept', 'six cent soixante-dix-huit', 'six cent soixante-dix-neuf', 'six cent quatre-vingts', 'six cent quatre-vingt-un', 'six cent quatre-vingt-deux', 'six cent quatre-vingt-trois', 'six cent quatre-vingt-quatre', 'six cent quatre-vingt-cinq', 'six cent quatre-vingt-six', 'six cent quatre-vingt-sept', 'six cent quatre-vingt-huit', 'six cent quatre-vingt-neuf', 'six cent quatre-vingt-dix', 'six cent quatre-vingt-onze', 'six cent quatre-vingt-douze', 'six cent quatre-vingt-treize', 'six cent quatre-vingt-quatorze', 'six cent quatre-vingt-quinze', 'six cent quatre-vingt-seize', 'six cent quatre-vingt-dix-sept', 'six cent quatre-vingt-dix-huit', 'six cent quatre-vingt-dix-neuf', 'sept cents', 'sept cent-un', 'sept cent-deux', 'sept cent-trois', 'sept cent-quatre', 'sept cent-cinq', 'sept cent-six', 'sept cent-sept', 'sept cent-huit', 'sept cent-neuf', 'sept cent dix', 'sept cent onze', 'sept cent douze', 'sept cent treize', 'sept cent quatorze', 'sept cent quinze', 'sept cent seize', 'sept cent dix-sept', 'sept cent dix-huit', 'sept cent dix-neuf', 'sept cent vingt', 'sept cent vingt-et-un', 'sept cent vingt-deux', 'sept cent vingt-trois', 'sept cent vingt-quatre', 'sept cent vingt-cinq', 'sept cent vingt-six', 'sept cent vingt-sept', 'sept cent vingt-huit', 'sept cent vingt-neuf', 'sept cent trente', 'sept cent trente-et-un', 'sept cent trente-deux', 'sept cent trente-trois', 'sept cent trente-quatre', 'sept cent trente-cinq', 'sept cent trente-six', 'sept cent trente-sept', 'sept cent trente-huit', 'sept cent trente-neuf', 'sept cent quarante', 'sept cent quarante-et-un', 'sept cent quarante-deux', 'sept cent quarante-trois', 'sept cent quarante-quatre', 'sept cent quarante-cinq', 'sept cent quarante-six', 'sept cent quarante-sept', 'sept cent quarante-huit', 'sept cent quarante-neuf', 'sept cent cinquante', 'sept cent cinquante-et-un', 'sept cent cinquante-deux', 'sept cent cinquante-trois', 'sept cent cinquante-quatre', 'sept cent cinquante-cinq', 'sept cent cinquante-six', 'sept cent cinquante-sept', 'sept cent cinquante-huit', 'sept cent cinquante-neuf', 'sept cent soixante', 'sept cent soixante-et-un', 'sept cent soixante-deux', 'sept cent soixante-trois', 'sept cent soixante-quatre', 'sept cent soixante-cinq', 'sept cent soixante-six', 'sept cent soixante-sept', 'sept cent soixante-huit', 'sept cent soixante-neuf', 'sept cent soixante-dix', 'sept cent soixante-et-onze', 'sept cent soixante-douze', 'sept cent soixante-treize', 'sept cent soixante-quatorze', 'sept cent soixante-quinze', 'sept cent soixante-seize', 'sept cent soixante-dix-sept', 'sept cent soixante-dix-huit', 'sept cent soixante-dix-neuf', 'sept cent quatre-vingts', 'sept cent quatre-vingt-un', 'sept cent quatre-vingt-deux', 'sept cent quatre-vingt-trois', 'sept cent quatre-vingt-quatre', 'sept cent quatre-vingt-cinq', 'sept cent quatre-vingt-six', 'sept cent quatre-vingt-sept', 'sept cent quatre-vingt-huit', 'sept cent quatre-vingt-neuf', 'sept cent quatre-vingt-dix', 'sept cent quatre-vingt-onze', 'sept cent quatre-vingt-douze', 'sept cent quatre-vingt-treize', 'sept cent quatre-vingt-quatorze', 'sept cent quatre-vingt-quinze', 'sept cent quatre-vingt-seize', 'sept cent quatre-vingt-dix-sept', 'sept cent quatre-vingt-dix-huit', 'sept cent quatre-vingt-dix-neuf', 'huit cents', 'huit cent-un', 'huit cent-deux', 'huit cent-trois', 'huit cent-quatre', 'huit cent-cinq', 'huit cent-six', 'huit cent-sept', 'huit cent-huit', 'huit cent-neuf', 'huit cent dix', 'huit cent onze', 'huit cent douze', 'huit cent treize', 'huit cent quatorze', 'huit cent quinze', 'huit cent seize', 'huit cent dix-sept', 'huit cent dix-huit', 'huit cent dix-neuf', 'huit cent vingt', 'huit cent vingt-et-un', 'huit cent vingt-deux', 'huit cent vingt-trois', 'huit cent vingt-quatre', 'huit cent vingt-cinq', 'huit cent vingt-six', 'huit cent vingt-sept', 'huit cent vingt-huit', 'huit cent vingt-neuf', 'huit cent trente', 'huit cent trente-et-un', 'huit cent trente-deux', 'huit cent trente-trois', 'huit cent trente-quatre', 'huit cent trente-cinq', 'huit cent trente-six', 'huit cent trente-sept', 'huit cent trente-huit', 'huit cent trente-neuf', 'huit cent quarante', 'huit cent quarante-et-un', 'huit cent quarante-deux', 'huit cent quarante-trois', 'huit cent quarante-quatre', 'huit cent quarante-cinq', 'huit cent quarante-six', 'huit cent quarante-sept', 'huit cent quarante-huit', 'huit cent quarante-neuf', 'huit cent cinquante', 'huit cent cinquante-et-un', 'huit cent cinquante-deux', 'huit cent cinquante-trois', 'huit cent cinquante-quatre', 'huit cent cinquante-cinq', 'huit cent cinquante-six', 'huit cent cinquante-sept', 'huit cent cinquante-huit', 'huit cent cinquante-neuf', 'huit cent soixante', 'huit cent soixante-et-un', 'huit cent soixante-deux', 'huit cent soixante-trois', 'huit cent soixante-quatre', 'huit cent soixante-cinq', 'huit cent soixante-six', 'huit cent soixante-sept', 'huit cent soixante-huit', 'huit cent soixante-neuf', 'huit cent soixante-dix', 'huit cent soixante-et-onze', 'huit cent soixante-douze', 'huit cent soixante-treize', 'huit cent soixante-quatorze', 'huit cent soixante-quinze', 'huit cent soixante-seize', 'huit cent soixante-dix-sept', 'huit cent soixante-dix-huit', 'huit cent soixante-dix-neuf', 'huit cent quatre-vingts', 'huit cent quatre-vingt-un', 'huit cent quatre-vingt-deux', 'huit cent quatre-vingt-trois', 'huit cent quatre-vingt-quatre', 'huit cent quatre-vingt-cinq', 'huit cent quatre-vingt-six', 'huit cent quatre-vingt-sept', 'huit cent quatre-vingt-huit', 'huit cent quatre-vingt-neuf', 'huit cent quatre-vingt-dix', 'huit cent quatre-vingt-onze', 'huit cent quatre-vingt-douze', 'huit cent quatre-vingt-treize', 'huit cent quatre-vingt-quatorze', 'huit cent quatre-vingt-quinze', 'huit cent quatre-vingt-seize', 'huit cent quatre-vingt-dix-sept', 'huit cent quatre-vingt-dix-huit', 'huit cent quatre-vingt-dix-neuf', 'neuf cents', 'neuf cent-un', 'neuf cent-deux', 'neuf cent-trois', 'neuf cent-quatre', 'neuf cent-cinq', 'neuf cent-six', 'neuf cent-sept', 'neuf cent-huit', 'neuf cent-neuf', 'neuf cent dix', 'neuf cent onze', 'neuf cent douze', 'neuf cent treize', 'neuf cent quatorze', 'neuf cent quinze', 'neuf cent seize', 'neuf cent dix-sept', 'neuf cent dix-huit', 'neuf cent dix-neuf', 'neuf cent vingt', 'neuf cent vingt-et-un', 'neuf cent vingt-deux', 'neuf cent vingt-trois', 'neuf cent vingt-quatre', 'neuf cent vingt-cinq', 'neuf cent vingt-six', 'neuf cent vingt-sept', 'neuf cent vingt-huit', 'neuf cent vingt-neuf', 'neuf cent trente', 'neuf cent trente-et-un', 'neuf cent trente-deux', 'neuf cent trente-trois', 'neuf cent trente-quatre', 'neuf cent trente-cinq', 'neuf cent trente-six', 'neuf cent trente-sept', 'neuf cent trente-huit', 'neuf cent trente-neuf', 'neuf cent quarante', 'neuf cent quarante-et-un', 'neuf cent quarante-deux', 'neuf cent quarante-trois', 'neuf cent quarante-quatre', 'neuf cent quarante-cinq', 'neuf cent quarante-six', 'neuf cent quarante-sept', 'neuf cent quarante-huit', 'neuf cent quarante-neuf', 'neuf cent cinquante', 'neuf cent cinquante-et-un', 'neuf cent cinquante-deux', 'neuf cent cinquante-trois', 'neuf cent cinquante-quatre', 'neuf cent cinquante-cinq', 'neuf cent cinquante-six', 'neuf cent cinquante-sept', 'neuf cent cinquante-huit', 'neuf cent cinquante-neuf', 'neuf cent soixante', 'neuf cent soixante-et-un', 'neuf cent soixante-deux', 'neuf cent soixante-trois', 'neuf cent soixante-quatre', 'neuf cent soixante-cinq', 'neuf cent soixante-six', 'neuf cent soixante-sept', 'neuf cent soixante-huit', 'neuf cent soixante-neuf', 'neuf cent soixante-dix', 'neuf cent soixante-et-onze', 'neuf cent soixante-douze', 'neuf cent soixante-treize', 'neuf cent soixante-quatorze', 'neuf cent soixante-quinze', 'neuf cent soixante-seize', 'neuf cent soixante-dix-sept', 'neuf cent soixante-dix-huit', 'neuf cent soixante-dix-neuf', 'neuf cent quatre-vingts', 'neuf cent quatre-vingt-un', 'neuf cent quatre-vingt-deux', 'neuf cent quatre-vingt-trois', 'neuf cent quatre-vingt-quatre', 'neuf cent quatre-vingt-cinq', 'neuf cent quatre-vingt-six', 'neuf cent quatre-vingt-sept', 'neuf cent quatre-vingt-huit', 'neuf cent quatre-vingt-neuf', 'neuf cent quatre-vingt-dix', 'neuf cent quatre-vingt-onze', 'neuf cent quatre-vingt-douze', 'neuf cent quatre-vingt-treize', 'neuf cent quatre-vingt-quatorze', 'neuf cent quatre-vingt-quinze', 'neuf cent quatre-vingt-seize', 'neuf cent quatre-vingt-dix-sept', 'neuf cent quatre-vingt-dix-huit', 'neuf cent quatre-vingt-dix-neuf'],
6
+ :tr => ['sıfır', 'bir', 'iki', 'üç', 'dört', 'beş', 'altı', 'yedi', 'sekiz', 'dokuz', 'on', 'on bir', 'on iki', 'on üç', 'on dört', 'on beş', 'on altı', 'on yedi', 'on sekiz', 'on dokuz', 'yirmi', 'yirmi bir', 'yirmi iki', 'yirmi üç', 'yirmi dört', 'yirmi beş', 'yirmi altı', 'yirmi yedi', 'yirmi sekiz', 'yirmi dokuz', 'otuz', 'otuz bir', 'otuz iki', 'otuz üç', 'otuz dört', 'otuz beş', 'otuz altı', 'otuz yedi', 'otuz sekiz', 'otuz dokuz', 'kırk', 'kırk bir', 'kırk iki', 'kırk üç', 'kırk dört', 'kırk beş', 'kırk altı', 'kırk yedi', 'kırk sekiz', 'kırk dokuz', 'elli', 'elli bir', 'elli iki', 'elli üç', 'elli dört', 'elli beş', 'elli altı', 'elli yedi', 'elli sekiz', 'elli dokuz', 'altmış', 'altmış bir', 'altmış iki', 'altmış üç', 'altmış dört', 'altmış beş', 'altmış altı', 'altmış yedi', 'altmış sekiz', 'altmış dokuz', 'yetmiş', 'yetmiş bir', 'yetmiş iki', 'yetmiş üç', 'yetmiş dört', 'yetmiş beş', 'yetmiş altı', 'yetmiş yedi', 'yetmiş sekiz', 'yetmiş dokuz', 'seksen', 'seksen bir', 'seksen iki', 'seksen üç', 'seksen dört', 'seksen beş', 'seksen altı', 'seksen yedi', 'seksen sekiz', 'seksen dokuz', 'doksan', 'doksan bir', 'doksan iki', 'doksan üç', 'doksan dört', 'doksan beş', 'doksan altı', 'doksan yedi', 'doksan sekiz', 'doksan dokuz', 'yüz', 'yüz bir', 'yüz iki', 'yüz üç', 'yüz dört', 'yüz beş', 'yüz altı', 'yüz yedi', 'yüz sekiz', 'yüz dokuz', 'yüz on', 'yüz on bir', 'yüz on iki', 'yüz on üç', 'yüz on dört', 'yüz on beş', 'yüz on altı', 'yüz on yedi', 'yüz on sekiz', 'yüz on dokuz', 'yüz yirmi', 'yüz yirmi bir', 'yüz yirmi iki', 'yüz yirmi üç', 'yüz yirmi dört', 'yüz yirmi beş', 'yüz yirmi altı', 'yüz yirmi yedi', 'yüz yirmi sekiz', 'yüz yirmi dokuz', 'yüz otuz', 'yüz otuz bir', 'yüz otuz iki', 'yüz otuz üç', 'yüz otuz dört', 'yüz otuz beş', 'yüz otuz altı', 'yüz otuz yedi', 'yüz otuz sekiz', 'yüz otuz dokuz', 'yüz kırk', 'yüz kırk bir', 'yüz kırk iki', 'yüz kırk üç', 'yüz kırk dört', 'yüz kırk beş', 'yüz kırk altı', 'yüz kırk yedi', 'yüz kırk sekiz', 'yüz kırk dokuz', 'yüz elli', 'yüz elli bir', 'yüz elli iki', 'yüz elli üç', 'yüz elli dört', 'yüz elli beş', 'yüz elli altı', 'yüz elli yedi', 'yüz elli sekiz', 'yüz elli dokuz', 'yüz altmış', 'yüz altmış bir', 'yüz altmış iki', 'yüz altmış üç', 'yüz altmış dört', 'yüz altmış beş', 'yüz altmış altı', 'yüz altmış yedi', 'yüz altmış sekiz', 'yüz altmış dokuz', 'yüz yetmiş', 'yüz yetmiş bir', 'yüz yetmiş iki', 'yüz yetmiş üç', 'yüz yetmiş dört', 'yüz yetmiş beş', 'yüz yetmiş altı', 'yüz yetmiş yedi', 'yüz yetmiş sekiz', 'yüz yetmiş dokuz', 'yüz seksen', 'yüz seksen bir', 'yüz seksen iki', 'yüz seksen üç', 'yüz seksen dört', 'yüz seksen beş', 'yüz seksen altı', 'yüz seksen yedi', 'yüz seksen sekiz', 'yüz seksen dokuz', 'yüz doksan', 'yüz doksan bir', 'yüz doksan iki', 'yüz doksan üç', 'yüz doksan dört', 'yüz doksan beş', 'yüz doksan altı', 'yüz doksan yedi', 'yüz doksan sekiz', 'yüz doksan dokuz', 'iki yüz', 'iki yüz bir', 'iki yüz iki', 'iki yüz üç', 'iki yüz dört', 'iki yüz beş', 'iki yüz altı', 'iki yüz yedi', 'iki yüz sekiz', 'iki yüz dokuz', 'iki yüz on', 'iki yüz on bir', 'iki yüz on iki', 'iki yüz on üç', 'iki yüz on dört', 'iki yüz on beş', 'iki yüz on altı', 'iki yüz on yedi', 'iki yüz on sekiz', 'iki yüz on dokuz', 'iki yüz yirmi', 'iki yüz yirmi bir', 'iki yüz yirmi iki', 'iki yüz yirmi üç', 'iki yüz yirmi dört', 'iki yüz yirmi beş', 'iki yüz yirmi altı', 'iki yüz yirmi yedi', 'iki yüz yirmi sekiz', 'iki yüz yirmi dokuz', 'iki yüz otuz', 'iki yüz otuz bir', 'iki yüz otuz iki', 'iki yüz otuz üç', 'iki yüz otuz dört', 'iki yüz otuz beş', 'iki yüz otuz altı', 'iki yüz otuz yedi', 'iki yüz otuz sekiz', 'iki yüz otuz dokuz', 'iki yüz kırk', 'iki yüz kırk bir', 'iki yüz kırk iki', 'iki yüz kırk üç', 'iki yüz kırk dört', 'iki yüz kırk beş', 'iki yüz kırk altı', 'iki yüz kırk yedi', 'iki yüz kırk sekiz', 'iki yüz kırk dokuz', 'iki yüz elli', 'iki yüz elli bir', 'iki yüz elli iki', 'iki yüz elli üç', 'iki yüz elli dört', 'iki yüz elli beş', 'iki yüz elli altı', 'iki yüz elli yedi', 'iki yüz elli sekiz', 'iki yüz elli dokuz', 'iki yüz altmış', 'iki yüz altmış bir', 'iki yüz altmış iki', 'iki yüz altmış üç', 'iki yüz altmış dört', 'iki yüz altmış beş', 'iki yüz altmış altı', 'iki yüz altmış yedi', 'iki yüz altmış sekiz', 'iki yüz altmış dokuz', 'iki yüz yetmiş', 'iki yüz yetmiş bir', 'iki yüz yetmiş iki', 'iki yüz yetmiş üç', 'iki yüz yetmiş dört', 'iki yüz yetmiş beş', 'iki yüz yetmiş altı', 'iki yüz yetmiş yedi', 'iki yüz yetmiş sekiz', 'iki yüz yetmiş dokuz', 'iki yüz seksen', 'iki yüz seksen bir', 'iki yüz seksen iki', 'iki yüz seksen üç', 'iki yüz seksen dört', 'iki yüz seksen beş', 'iki yüz seksen altı', 'iki yüz seksen yedi', 'iki yüz seksen sekiz', 'iki yüz seksen dokuz', 'iki yüz doksan', 'iki yüz doksan bir', 'iki yüz doksan iki', 'iki yüz doksan üç', 'iki yüz doksan dört', 'iki yüz doksan beş', 'iki yüz doksan altı', 'iki yüz doksan yedi', 'iki yüz doksan sekiz', 'iki yüz doksan dokuz', 'üç yüz', 'üç yüz bir', 'üç yüz iki', 'üç yüz üç', 'üç yüz dört', 'üç yüz beş', 'üç yüz altı', 'üç yüz yedi', 'üç yüz sekiz', 'üç yüz dokuz', 'üç yüz on', 'üç yüz on bir', 'üç yüz on iki', 'üç yüz on üç', 'üç yüz on dört', 'üç yüz on beş', 'üç yüz on altı', 'üç yüz on yedi', 'üç yüz on sekiz', 'üç yüz on dokuz', 'üç yüz yirmi', 'üç yüz yirmi bir', 'üç yüz yirmi iki', 'üç yüz yirmi üç', 'üç yüz yirmi dört', 'üç yüz yirmi beş', 'üç yüz yirmi altı', 'üç yüz yirmi yedi', 'üç yüz yirmi sekiz', 'üç yüz yirmi dokuz', 'üç yüz otuz', 'üç yüz otuz bir', 'üç yüz otuz iki', 'üç yüz otuz üç', 'üç yüz otuz dört', 'üç yüz otuz beş', 'üç yüz otuz altı', 'üç yüz otuz yedi', 'üç yüz otuz sekiz', 'üç yüz otuz dokuz', 'üç yüz kırk', 'üç yüz kırk bir', 'üç yüz kırk iki', 'üç yüz kırk üç', 'üç yüz kırk dört', 'üç yüz kırk beş', 'üç yüz kırk altı', 'üç yüz kırk yedi', 'üç yüz kırk sekiz', 'üç yüz kırk dokuz', 'üç yüz elli', 'üç yüz elli bir', 'üç yüz elli iki', 'üç yüz elli üç', 'üç yüz elli dört', 'üç yüz elli beş', 'üç yüz elli altı', 'üç yüz elli yedi', 'üç yüz elli sekiz', 'üç yüz elli dokuz', 'üç yüz altmış', 'üç yüz altmış bir', 'üç yüz altmış iki', 'üç yüz altmış üç', 'üç yüz altmış dört', 'üç yüz altmış beş', 'üç yüz altmış altı', 'üç yüz altmış yedi', 'üç yüz altmış sekiz', 'üç yüz altmış dokuz', 'üç yüz yetmiş', 'üç yüz yetmiş bir', 'üç yüz yetmiş iki', 'üç yüz yetmiş üç', 'üç yüz yetmiş dört', 'üç yüz yetmiş beş', 'üç yüz yetmiş altı', 'üç yüz yetmiş yedi', 'üç yüz yetmiş sekiz', 'üç yüz yetmiş dokuz', 'üç yüz seksen', 'üç yüz seksen bir', 'üç yüz seksen iki', 'üç yüz seksen üç', 'üç yüz seksen dört', 'üç yüz seksen beş', 'üç yüz seksen altı', 'üç yüz seksen yedi', 'üç yüz seksen sekiz', 'üç yüz seksen dokuz', 'üç yüz doksan', 'üç yüz doksan bir', 'üç yüz doksan iki', 'üç yüz doksan üç', 'üç yüz doksan dört', 'üç yüz doksan beş', 'üç yüz doksan altı', 'üç yüz doksan yedi', 'üç yüz doksan sekiz', 'üç yüz doksan dokuz', 'dört yüz', 'dört yüz bir', 'dört yüz iki', 'dört yüz üç', 'dört yüz dört', 'dört yüz beş', 'dört yüz altı', 'dört yüz yedi', 'dört yüz sekiz', 'dört yüz dokuz', 'dört yüz on', 'dört yüz on bir', 'dört yüz on iki', 'dört yüz on üç', 'dört yüz on dört', 'dört yüz on beş', 'dört yüz on altı', 'dört yüz on yedi', 'dört yüz on sekiz', 'dört yüz on dokuz', 'dört yüz yirmi', 'dört yüz yirmi bir', 'dört yüz yirmi iki', 'dört yüz yirmi üç', 'dört yüz yirmi dört', 'dört yüz yirmi beş', 'dört yüz yirmi altı', 'dört yüz yirmi yedi', 'dört yüz yirmi sekiz', 'dört yüz yirmi dokuz', 'dört yüz otuz', 'dört yüz otuz bir', 'dört yüz otuz iki', 'dört yüz otuz üç', 'dört yüz otuz dört', 'dört yüz otuz beş', 'dört yüz otuz altı', 'dört yüz otuz yedi', 'dört yüz otuz sekiz', 'dört yüz otuz dokuz', 'dört yüz kırk', 'dört yüz kırk bir', 'dört yüz kırk iki', 'dört yüz kırk üç', 'dört yüz kırk dört', 'dört yüz kırk beş', 'dört yüz kırk altı', 'dört yüz kırk yedi', 'dört yüz kırk sekiz', 'dört yüz kırk dokuz', 'dört yüz elli', 'dört yüz elli bir', 'dört yüz elli iki', 'dört yüz elli üç', 'dört yüz elli dört', 'dört yüz elli beş', 'dört yüz elli altı', 'dört yüz elli yedi', 'dört yüz elli sekiz', 'dört yüz elli dokuz', 'dört yüz altmış', 'dört yüz altmış bir', 'dört yüz altmış iki', 'dört yüz altmış üç', 'dört yüz altmış dört', 'dört yüz altmış beş', 'dört yüz altmış altı', 'dört yüz altmış yedi', 'dört yüz altmış sekiz', 'dört yüz altmış dokuz', 'dört yüz yetmiş', 'dört yüz yetmiş bir', 'dört yüz yetmiş iki', 'dört yüz yetmiş üç', 'dört yüz yetmiş dört', 'dört yüz yetmiş beş', 'dört yüz yetmiş altı', 'dört yüz yetmiş yedi', 'dört yüz yetmiş sekiz', 'dört yüz yetmiş dokuz', 'dört yüz seksen', 'dört yüz seksen bir', 'dört yüz seksen iki', 'dört yüz seksen üç', 'dört yüz seksen dört', 'dört yüz seksen beş', 'dört yüz seksen altı', 'dört yüz seksen yedi', 'dört yüz seksen sekiz', 'dört yüz seksen dokuz', 'dört yüz doksan', 'dört yüz doksan bir', 'dört yüz doksan iki', 'dört yüz doksan üç', 'dört yüz doksan dört', 'dört yüz doksan beş', 'dört yüz doksan altı', 'dört yüz doksan yedi', 'dört yüz doksan sekiz', 'dört yüz doksan dokuz', 'beş yüz', 'beş yüz bir', 'beş yüz iki', 'beş yüz üç', 'beş yüz dört', 'beş yüz beş', 'beş yüz altı', 'beş yüz yedi', 'beş yüz sekiz', 'beş yüz dokuz', 'beş yüz on', 'beş yüz on bir', 'beş yüz on iki', 'beş yüz on üç', 'beş yüz on dört', 'beş yüz on beş', 'beş yüz on altı', 'beş yüz on yedi', 'beş yüz on sekiz', 'beş yüz on dokuz', 'beş yüz yirmi', 'beş yüz yirmi bir', 'beş yüz yirmi iki', 'beş yüz yirmi üç', 'beş yüz yirmi dört', 'beş yüz yirmi beş', 'beş yüz yirmi altı', 'beş yüz yirmi yedi', 'beş yüz yirmi sekiz', 'beş yüz yirmi dokuz', 'beş yüz otuz', 'beş yüz otuz bir', 'beş yüz otuz iki', 'beş yüz otuz üç', 'beş yüz otuz dört', 'beş yüz otuz beş', 'beş yüz otuz altı', 'beş yüz otuz yedi', 'beş yüz otuz sekiz', 'beş yüz otuz dokuz', 'beş yüz kırk', 'beş yüz kırk bir', 'beş yüz kırk iki', 'beş yüz kırk üç', 'beş yüz kırk dört', 'beş yüz kırk beş', 'beş yüz kırk altı', 'beş yüz kırk yedi', 'beş yüz kırk sekiz', 'beş yüz kırk dokuz', 'beş yüz elli', 'beş yüz elli bir', 'beş yüz elli iki', 'beş yüz elli üç', 'beş yüz elli dört', 'beş yüz elli beş', 'beş yüz elli altı', 'beş yüz elli yedi', 'beş yüz elli sekiz', 'beş yüz elli dokuz', 'beş yüz altmış', 'beş yüz altmış bir', 'beş yüz altmış iki', 'beş yüz altmış üç', 'beş yüz altmış dört', 'beş yüz altmış beş', 'beş yüz altmış altı', 'beş yüz altmış yedi', 'beş yüz altmış sekiz', 'beş yüz altmış dokuz', 'beş yüz yetmiş', 'beş yüz yetmiş bir', 'beş yüz yetmiş iki', 'beş yüz yetmiş üç', 'beş yüz yetmiş dört', 'beş yüz yetmiş beş', 'beş yüz yetmiş altı', 'beş yüz yetmiş yedi', 'beş yüz yetmiş sekiz', 'beş yüz yetmiş dokuz', 'beş yüz seksen', 'beş yüz seksen bir', 'beş yüz seksen iki', 'beş yüz seksen üç', 'beş yüz seksen dört', 'beş yüz seksen beş', 'beş yüz seksen altı', 'beş yüz seksen yedi', 'beş yüz seksen sekiz', 'beş yüz seksen dokuz', 'beş yüz doksan', 'beş yüz doksan bir', 'beş yüz doksan iki', 'beş yüz doksan üç', 'beş yüz doksan dört', 'beş yüz doksan beş', 'beş yüz doksan altı', 'beş yüz doksan yedi', 'beş yüz doksan sekiz', 'beş yüz doksan dokuz', 'altı yüz', 'altı yüz bir', 'altı yüz iki', 'altı yüz üç', 'altı yüz dört', 'altı yüz beş', 'altı yüz altı', 'altı yüz yedi', 'altı yüz sekiz', 'altı yüz dokuz', 'altı yüz on', 'altı yüz on bir', 'altı yüz on iki', 'altı yüz on üç', 'altı yüz on dört', 'altı yüz on beş', 'altı yüz on altı', 'altı yüz on yedi', 'altı yüz on sekiz', 'altı yüz on dokuz', 'altı yüz yirmi', 'altı yüz yirmi bir', 'altı yüz yirmi iki', 'altı yüz yirmi üç', 'altı yüz yirmi dört', 'altı yüz yirmi beş', 'altı yüz yirmi altı', 'altı yüz yirmi yedi', 'altı yüz yirmi sekiz', 'altı yüz yirmi dokuz', 'altı yüz otuz', 'altı yüz otuz bir', 'altı yüz otuz iki', 'altı yüz otuz üç', 'altı yüz otuz dört', 'altı yüz otuz beş', 'altı yüz otuz altı', 'altı yüz otuz yedi', 'altı yüz otuz sekiz', 'altı yüz otuz dokuz', 'altı yüz kırk', 'altı yüz kırk bir', 'altı yüz kırk iki', 'altı yüz kırk üç', 'altı yüz kırk dört', 'altı yüz kırk beş', 'altı yüz kırk altı', 'altı yüz kırk yedi', 'altı yüz kırk sekiz', 'altı yüz kırk dokuz', 'altı yüz elli', 'altı yüz elli bir', 'altı yüz elli iki', 'altı yüz elli üç', 'altı yüz elli dört', 'altı yüz elli beş', 'altı yüz elli altı', 'altı yüz elli yedi', 'altı yüz elli sekiz', 'altı yüz elli dokuz', 'altı yüz altmış', 'altı yüz altmış bir', 'altı yüz altmış iki', 'altı yüz altmış üç', 'altı yüz altmış dört', 'altı yüz altmış beş', 'altı yüz altmış altı', 'altı yüz altmış yedi', 'altı yüz altmış sekiz', 'altı yüz altmış dokuz', 'altı yüz yetmiş', 'altı yüz yetmiş bir', 'altı yüz yetmiş iki', 'altı yüz yetmiş üç', 'altı yüz yetmiş dört', 'altı yüz yetmiş beş', 'altı yüz yetmiş altı', 'altı yüz yetmiş yedi', 'altı yüz yetmiş sekiz', 'altı yüz yetmiş dokuz', 'altı yüz seksen', 'altı yüz seksen bir', 'altı yüz seksen iki', 'altı yüz seksen üç', 'altı yüz seksen dört', 'altı yüz seksen beş', 'altı yüz seksen altı', 'altı yüz seksen yedi', 'altı yüz seksen sekiz', 'altı yüz seksen dokuz', 'altı yüz doksan', 'altı yüz doksan bir', 'altı yüz doksan iki', 'altı yüz doksan üç', 'altı yüz doksan dört', 'altı yüz doksan beş', 'altı yüz doksan altı', 'altı yüz doksan yedi', 'altı yüz doksan sekiz', 'altı yüz doksan dokuz', 'yedi yüz', 'yedi yüz bir', 'yedi yüz iki', 'yedi yüz üç', 'yedi yüz dört', 'yedi yüz beş', 'yedi yüz altı', 'yedi yüz yedi', 'yedi yüz sekiz', 'yedi yüz dokuz', 'yedi yüz on', 'yedi yüz on bir', 'yedi yüz on iki', 'yedi yüz on üç', 'yedi yüz on dört', 'yedi yüz on beş', 'yedi yüz on altı', 'yedi yüz on yedi', 'yedi yüz on sekiz', 'yedi yüz on dokuz', 'yedi yüz yirmi', 'yedi yüz yirmi bir', 'yedi yüz yirmi iki', 'yedi yüz yirmi üç', 'yedi yüz yirmi dört', 'yedi yüz yirmi beş', 'yedi yüz yirmi altı', 'yedi yüz yirmi yedi', 'yedi yüz yirmi sekiz', 'yedi yüz yirmi dokuz', 'yedi yüz otuz', 'yedi yüz otuz bir', 'yedi yüz otuz iki', 'yedi yüz otuz üç', 'yedi yüz otuz dört', 'yedi yüz otuz beş', 'yedi yüz otuz altı', 'yedi yüz otuz yedi', 'yedi yüz otuz sekiz', 'yedi yüz otuz dokuz', 'yedi yüz kırk', 'yedi yüz kırk bir', 'yedi yüz kırk iki', 'yedi yüz kırk üç', 'yedi yüz kırk dört', 'yedi yüz kırk beş', 'yedi yüz kırk altı', 'yedi yüz kırk yedi', 'yedi yüz kırk sekiz', 'yedi yüz kırk dokuz', 'yedi yüz elli', 'yedi yüz elli bir', 'yedi yüz elli iki', 'yedi yüz elli üç', 'yedi yüz elli dört', 'yedi yüz elli beş', 'yedi yüz elli altı', 'yedi yüz elli yedi', 'yedi yüz elli sekiz', 'yedi yüz elli dokuz', 'yedi yüz altmış', 'yedi yüz altmış bir', 'yedi yüz altmış iki', 'yedi yüz altmış üç', 'yedi yüz altmış dört', 'yedi yüz altmış beş', 'yedi yüz altmış altı', 'yedi yüz altmış yedi', 'yedi yüz altmış sekiz', 'yedi yüz altmış dokuz', 'yedi yüz yetmiş', 'yedi yüz yetmiş bir', 'yedi yüz yetmiş iki', 'yedi yüz yetmiş üç', 'yedi yüz yetmiş dört', 'yedi yüz yetmiş beş', 'yedi yüz yetmiş altı', 'yedi yüz yetmiş yedi', 'yedi yüz yetmiş sekiz', 'yedi yüz yetmiş dokuz', 'yedi yüz seksen', 'yedi yüz seksen bir', 'yedi yüz seksen iki', 'yedi yüz seksen üç', 'yedi yüz seksen dört', 'yedi yüz seksen beş', 'yedi yüz seksen altı', 'yedi yüz seksen yedi', 'yedi yüz seksen sekiz', 'yedi yüz seksen dokuz', 'yedi yüz doksan', 'yedi yüz doksan bir', 'yedi yüz doksan iki', 'yedi yüz doksan üç', 'yedi yüz doksan dört', 'yedi yüz doksan beş', 'yedi yüz doksan altı', 'yedi yüz doksan yedi', 'yedi yüz doksan sekiz', 'yedi yüz doksan dokuz', 'sekiz yüz', 'sekiz yüz bir', 'sekiz yüz iki', 'sekiz yüz üç', 'sekiz yüz dört', 'sekiz yüz beş', 'sekiz yüz altı', 'sekiz yüz yedi', 'sekiz yüz sekiz', 'sekiz yüz dokuz', 'sekiz yüz on', 'sekiz yüz on bir', 'sekiz yüz on iki', 'sekiz yüz on üç', 'sekiz yüz on dört', 'sekiz yüz on beş', 'sekiz yüz on altı', 'sekiz yüz on yedi', 'sekiz yüz on sekiz', 'sekiz yüz on dokuz', 'sekiz yüz yirmi', 'sekiz yüz yirmi bir', 'sekiz yüz yirmi iki', 'sekiz yüz yirmi üç', 'sekiz yüz yirmi dört', 'sekiz yüz yirmi beş', 'sekiz yüz yirmi altı', 'sekiz yüz yirmi yedi', 'sekiz yüz yirmi sekiz', 'sekiz yüz yirmi dokuz', 'sekiz yüz otuz', 'sekiz yüz otuz bir', 'sekiz yüz otuz iki', 'sekiz yüz otuz üç', 'sekiz yüz otuz dört', 'sekiz yüz otuz beş', 'sekiz yüz otuz altı', 'sekiz yüz otuz yedi', 'sekiz yüz otuz sekiz', 'sekiz yüz otuz dokuz', 'sekiz yüz kırk', 'sekiz yüz kırk bir', 'sekiz yüz kırk iki', 'sekiz yüz kırk üç', 'sekiz yüz kırk dört', 'sekiz yüz kırk beş', 'sekiz yüz kırk altı', 'sekiz yüz kırk yedi', 'sekiz yüz kırk sekiz', 'sekiz yüz kırk dokuz', 'sekiz yüz elli', 'sekiz yüz elli bir', 'sekiz yüz elli iki', 'sekiz yüz elli üç', 'sekiz yüz elli dört', 'sekiz yüz elli beş', 'sekiz yüz elli altı', 'sekiz yüz elli yedi', 'sekiz yüz elli sekiz', 'sekiz yüz elli dokuz', 'sekiz yüz altmış', 'sekiz yüz altmış bir', 'sekiz yüz altmış iki', 'sekiz yüz altmış üç', 'sekiz yüz altmış dört', 'sekiz yüz altmış beş', 'sekiz yüz altmış altı', 'sekiz yüz altmış yedi', 'sekiz yüz altmış sekiz', 'sekiz yüz altmış dokuz', 'sekiz yüz yetmiş', 'sekiz yüz yetmiş bir', 'sekiz yüz yetmiş iki', 'sekiz yüz yetmiş üç', 'sekiz yüz yetmiş dört', 'sekiz yüz yetmiş beş', 'sekiz yüz yetmiş altı', 'sekiz yüz yetmiş yedi', 'sekiz yüz yetmiş sekiz', 'sekiz yüz yetmiş dokuz', 'sekiz yüz seksen', 'sekiz yüz seksen bir', 'sekiz yüz seksen iki', 'sekiz yüz seksen üç', 'sekiz yüz seksen dört', 'sekiz yüz seksen beş', 'sekiz yüz seksen altı', 'sekiz yüz seksen yedi', 'sekiz yüz seksen sekiz', 'sekiz yüz seksen dokuz', 'sekiz yüz doksan', 'sekiz yüz doksan bir', 'sekiz yüz doksan iki', 'sekiz yüz doksan üç', 'sekiz yüz doksan dört', 'sekiz yüz doksan beş', 'sekiz yüz doksan altı', 'sekiz yüz doksan yedi', 'sekiz yüz doksan sekiz', 'sekiz yüz doksan dokuz', 'dokuz yüz', 'dokuz yüz bir', 'dokuz yüz iki', 'dokuz yüz üç', 'dokuz yüz dört', 'dokuz yüz beş', 'dokuz yüz altı', 'dokuz yüz yedi', 'dokuz yüz sekiz', 'dokuz yüz dokuz', 'dokuz yüz on', 'dokuz yüz on bir', 'dokuz yüz on iki', 'dokuz yüz on üç', 'dokuz yüz on dört', 'dokuz yüz on beş', 'dokuz yüz on altı', 'dokuz yüz on yedi', 'dokuz yüz on sekiz', 'dokuz yüz on dokuz', 'dokuz yüz yirmi', 'dokuz yüz yirmi bir', 'dokuz yüz yirmi iki', 'dokuz yüz yirmi üç', 'dokuz yüz yirmi dört', 'dokuz yüz yirmi beş', 'dokuz yüz yirmi altı', 'dokuz yüz yirmi yedi', 'dokuz yüz yirmi sekiz', 'dokuz yüz yirmi dokuz', 'dokuz yüz otuz', 'dokuz yüz otuz bir', 'dokuz yüz otuz iki', 'dokuz yüz otuz üç', 'dokuz yüz otuz dört', 'dokuz yüz otuz beş', 'dokuz yüz otuz altı', 'dokuz yüz otuz yedi', 'dokuz yüz otuz sekiz', 'dokuz yüz otuz dokuz', 'dokuz yüz kırk', 'dokuz yüz kırk bir', 'dokuz yüz kırk iki', 'dokuz yüz kırk üç', 'dokuz yüz kırk dört', 'dokuz yüz kırk beş', 'dokuz yüz kırk altı', 'dokuz yüz kırk yedi', 'dokuz yüz kırk sekiz', 'dokuz yüz kırk dokuz', 'dokuz yüz elli', 'dokuz yüz elli bir', 'dokuz yüz elli iki', 'dokuz yüz elli üç', 'dokuz yüz elli dört', 'dokuz yüz elli beş', 'dokuz yüz elli altı', 'dokuz yüz elli yedi', 'dokuz yüz elli sekiz', 'dokuz yüz elli dokuz', 'dokuz yüz altmış', 'dokuz yüz altmış bir', 'dokuz yüz altmış iki', 'dokuz yüz altmış üç', 'dokuz yüz altmış dört', 'dokuz yüz altmış beş', 'dokuz yüz altmış altı', 'dokuz yüz altmış yedi', 'dokuz yüz altmış sekiz', 'dokuz yüz altmış dokuz', 'dokuz yüz yetmiş', 'dokuz yüz yetmiş bir', 'dokuz yüz yetmiş iki', 'dokuz yüz yetmiş üç', 'dokuz yüz yetmiş dört', 'dokuz yüz yetmiş beş', 'dokuz yüz yetmiş altı', 'dokuz yüz yetmiş yedi', 'dokuz yüz yetmiş sekiz', 'dokuz yüz yetmiş dokuz', 'dokuz yüz seksen', 'dokuz yüz seksen bir', 'dokuz yüz seksen iki', 'dokuz yüz seksen üç', 'dokuz yüz seksen dört', 'dokuz yüz seksen beş', 'dokuz yüz seksen altı', 'dokuz yüz seksen yedi', 'dokuz yüz seksen sekiz', 'dokuz yüz seksen dokuz', 'dokuz yüz doksan', 'dokuz yüz doksan bir', 'dokuz yüz doksan iki', 'dokuz yüz doksan üç', 'dokuz yüz doksan dört', 'dokuz yüz doksan beş', 'dokuz yüz doksan altı', 'dokuz yüz doksan yedi', 'dokuz yüz doksan sekiz', 'dokuz yüz doksan dokuz']
6
7
  }
@@ -26,7 +26,7 @@ module Humanize
26
26
  sets << LOTS[locale][i] + (!sets.empty? ? (f ? ' ' + WORDS[locale][:and] : WORDS[locale][:comma]) : '') if !(r.zero? || i.zero?)
27
27
  f = true if i.zero? && r < 100
28
28
 
29
- sets << SUB_ONE_THOUSAND[locale][r] if !r.zero? && !exactly_one_thousand_in_french?(locale, r, sets)
29
+ sets << SUB_ONE_THOUSAND[locale][r] if !r.zero? && !exactly_one_thousand_in_french_or_turkish?(locale, r, sets)
30
30
  i = i.succ
31
31
 
32
32
  end
@@ -61,10 +61,11 @@ module Humanize
61
61
 
62
62
  private
63
63
 
64
- def exactly_one_thousand_in_french?(locale, r, sets)
65
- locale == :fr && r == 1 && sets.last.to_s.strip == 'mille'
64
+ def exactly_one_thousand_in_french_or_turkish?(locale, r, sets)
65
+ (locale == :fr || locale == :tr) && r == 1 && (sets.last.to_s.strip == 'mille' || sets.last.to_s.strip == 'bin')
66
66
  end
67
67
 
68
+
68
69
  class Configuration
69
70
  attr_accessor :default_locale, :decimals_as
70
71
 
@@ -2,5 +2,6 @@
2
2
 
3
3
  LOTS = {
4
4
  :en => ['', 'thousand', 'million', 'billion', 'trillion', 'quadrillion', 'quintillion', 'sextillion', 'septillion', 'octillion', 'nonillion', 'decillion', 'undecillion', 'duodecillion', 'tredecillion', 'quattuordecillion', 'quindecillion', 'sexdecillion', 'septendecillion', 'octodecillion', 'novemdecillion', 'vigintillion', 'unvigintillion', 'duovigintillion', 'trevigintillion', 'quattuortillion', 'quinvigintillion', 'sexvigintillion', 'septenvigintillion', 'octovigintillion', 'novemvigintillion', 'trigintillion', 'untrigintillion', 'duotrigintillion', 'trestrigintillion', 'quattuortrigintillion', 'quintrigintillion', 'sextrigintillion', 'septentrigintillion', 'octotrigintillion', 'novemtrigintillion', 'quadragintillion', 'unquadragintillion', 'duoquadragintillion', 'trequadragintillion', 'quattuorquadragintillion', 'quinquadragintillion', 'sesquadragintillion', 'septenquadragintillion', 'octoquadragintillion', 'novenquadragintillion', 'quinquagintillion'],
5
- :fr => ['', 'mille', 'million', 'milliard', 'billion', 'billiard', 'trillion', 'trilliard', 'quadrillion', 'quadrilliard', 'quintillion', 'quintilliard', 'sextillion', 'sextilliard', 'septillion', 'septilliard', 'octillion', 'octilliard', 'nonillion', 'nonilliard', 'décillion', 'décilliard', 'undécillion', 'undécilliard', 'duodécillion', 'duodécilliard', 'tredécillion', 'tredécilliard', 'quattuordécillion', 'quattuordécilliard', 'quindécillion', 'quindécilliard', 'sexdécillion', 'sexdécilliard', 'septendécillion', 'septendécilliard', 'octodécillion', 'octodécilliard', 'novemdécillion', 'novemdécilliard', 'vigintillion', 'vigintilliard', 'unvigintilliard', 'duovigintilliard', 'trevigintilliard', 'quattuorvigintilliard', 'quinvigintilliard', 'sexvigintilliard', 'septenvigintilliard', 'octovigintilliard', 'novemvigintilliard', 'quinquavigintilliard']
5
+ :fr => ['', 'mille', 'million', 'milliard', 'billion', 'billiard', 'trillion', 'trilliard', 'quadrillion', 'quadrilliard', 'quintillion', 'quintilliard', 'sextillion', 'sextilliard', 'septillion', 'septilliard', 'octillion', 'octilliard', 'nonillion', 'nonilliard', 'décillion', 'décilliard', 'undécillion', 'undécilliard', 'duodécillion', 'duodécilliard', 'tredécillion', 'tredécilliard', 'quattuordécillion', 'quattuordécilliard', 'quindécillion', 'quindécilliard', 'sexdécillion', 'sexdécilliard', 'septendécillion', 'septendécilliard', 'octodécillion', 'octodécilliard', 'novemdécillion', 'novemdécilliard', 'vigintillion', 'vigintilliard', 'unvigintilliard', 'duovigintilliard', 'trevigintilliard', 'quattuorvigintilliard', 'quinvigintilliard', 'sexvigintilliard', 'septenvigintilliard', 'octovigintilliard', 'novemvigintilliard', 'quinquavigintilliard'],
6
+ :tr => ['', 'bin', 'milyon', 'milyar', 'trilyon', 'katrilyon', 'kentilyon', 'seksilyon', 'septilyon', 'oktilyon', 'nonilyon', 'desilyon', 'undesilyon', 'dodesilyon', 'tredesilyon', 'katordesilyon', 'kendesilyon', 'seksdesilyon', 'septendesilyon', 'oktodesilyon', 'novemdesilyon', 'vigintilyon']
6
7
  }
@@ -14,5 +14,12 @@ WORDS = {
14
14
  :point => 'virgule',
15
15
  :and => '',
16
16
  :comma => ''
17
+ },
18
+ :tr => {
19
+ :negative => 'eksi',
20
+ :zero => 'sıfır',
21
+ :point => 'virgül',
22
+ :and => '',
23
+ :comma => ''
17
24
  }
18
25
  }
@@ -29,7 +29,7 @@ describe "Humanize" do
29
29
 
30
30
  describe 'french specific rules' do
31
31
 
32
- it 'one thousand and one equals "mille un"' do
32
+ it 'one thousand and two equals "mille deux"' do
33
33
  expect(1002.humanize(:locale => :fr)).to eql('mille deux')
34
34
  end
35
35
 
@@ -38,7 +38,23 @@ describe "Humanize" do
38
38
  end
39
39
 
40
40
  it 'ten thousand equals "dix mille"' do
41
- expect(2001.humanize(:locale => :fr)).to eql('deux mille un')
41
+ expect(10000.humanize(:locale => :fr)).to eql('dix mille')
42
+ end
43
+
44
+ end
45
+
46
+ describe 'turkish specific rules' do
47
+
48
+ it 'one thousand and two equals "bin iki"' do
49
+ expect(1002.humanize(:locale => :tr)).to eql('bin iki')
50
+ end
51
+
52
+ it 'two thousand and one equals "iki bin bir' do
53
+ expect(2001.humanize(:locale => :tr)).to eql('iki bin bir')
54
+ end
55
+
56
+ it 'ten thousand equals "on bin"' do
57
+ expect(10000.humanize(:locale => :tr)).to eql('on bin')
42
58
  end
43
59
 
44
60
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: humanize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jack Chen
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
113
  version: '0'
114
114
  requirements: []
115
115
  rubyforge_project:
116
- rubygems_version: 2.5.2
116
+ rubygems_version: 2.6.8
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Extension to Numeric to humanize numbers