Sha256: 60e2f259d3c4c9e83db77d71551e4e7c6aea2c0cafac022666d1e98bf25d427d

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 KB

Contents

# -*- encoding: utf-8 -*-
module Humanize
  WORDS = {
    :de => {
      :group_by => 1_000,
      :infinity => 'Unendlich',
      :undefined => 'undefiniert',
      :negative => 'negativ',
      :zero => 'null',
      :point => 'Punkt',
      :and => 'und',
      :comma => ''
    },
    :en => {
      :group_by => 1_000,
      :infinity => 'infinity',
      :undefined => 'undefined',
      :negative => 'negative',
      :zero => 'zero',
      :point => 'point',
      :and => 'and',
      :comma => ','
    },
    :fr => {
      :group_by => 1_000,
      :infinity => 'infini',    # Needs verification from native french speaker. Send
      :undefined => 'indéfini', # PR to correct (if wrong) and remove these 2 line comments.
      :negative => 'négatif',
      :zero => 'zéro',
      :point => 'virgule',
      :and => '',
      :comma => ''
    },
    :az => {
      :group_by => 1_000,
      :infinity => 'sonsuz',
      :undefined => 'undefined',
      :negative => 'mənfi',
      :zero => 'sıfır',
      :point => 'vergül',
      :and => '',
      :comma => ''
    },
    :tr => {
      :group_by => 1_000,
      :infinity => 'sonsuz',
      :undefined => 'tanımsız',
      :negative => 'eksi',
      :zero => 'sıfır',
      :point => 'virgül',
      :and => '',
      :comma => ''
    },
    :id => {
      :group_by => 1_000,
      :infinity => 'tak terhingga',
      :undefined => 'tak terdefinisi',
      :negative => 'minus',
      :zero => 'nol',
      :point => 'koma',
      :and => '',
      :comma => ''
    }
  }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
humanize-1.8.1 lib/humanize/words.rb
humanize-1.8.0 lib/humanize/words.rb