Sha256: a971e1fe54bfb232c1a67609e581839e5cb778c11a4c5914d441de5a842e2058

Contents?: true

Size: 746 Bytes

Versions: 4

Compression:

Stored size: 746 Bytes

Contents

# -*- encoding: utf-8 -*-
module Humanize
  WORDS = {
    :de => {
      :negative => 'negativ',
      :zero => 'null',
      :point => 'Punkt',
      :and => 'und',
      :comma => ''
    },
    :en => {
      :negative => 'negative',
      :zero => 'zero',
      :point => 'point',
      :and => 'and',
      :comma => ','
    },
    :fr => {
      :negative => 'négatif',
      :zero => 'zéro',
      :point => 'virgule',
      :and => '',
      :comma => ''
    },
    :tr => {
      :negative => 'eksi',
      :zero => 'sıfır',
      :point => 'virgül',
      :and => '',
      :comma => ''
    },
    :id => {
      :negative => 'minus',
      :zero => 'nol',
      :point => 'koma',
      :and => '',
      :comma => ''
    }
  }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
humanize-1.7.0 lib/humanize/words.rb
humanize-1.6.1 lib/humanize/words.rb
humanize-1.6.0 lib/humanize/words.rb
humanize-1.5.0 lib/humanize/words.rb