Module: I18nSimpleBackendTestSetup

Instance Method Summary collapse

Instance Method Details

#add_datetime_translationsObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb', line 29

def add_datetime_translations
  @backend.store_translations :'de', {
    :date => {
      :formats => {
        :default => "%d.%m.%Y",
        :short => "%d. %b",
        :long => "%d. %B %Y",
      },
      :day_names => %w(Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag),
      :abbr_day_names => %w(So Mo Di Mi Do Fr  Sa),
      :month_names => %w(Januar Februar März April Mai Juni Juli August September Oktober November Dezember).unshift(nil),
      :abbr_month_names => %w(Jan Feb Mar Apr Mai Jun Jul Aug Sep Okt Nov Dez).unshift(nil),
      :order => [:day, :month, :year]
    },
    :time => {
      :formats => {
        :default => "%a, %d. %b %Y %H:%M:%S %z",
        :short => "%d. %b %H:%M",
        :long => "%d. %B %Y %H:%M",
      },
      :am => 'am',
      :pm => 'pm'
    },
    :datetime => {
      :distance_in_words => {
        :half_a_minute => 'half a minute',
        :less_than_x_seconds => {
          :one => 'less than 1 second',
          :other => 'less than {{count}} seconds'
        },
        :x_seconds => {
          :one => '1 second',
          :other => '{{count}} seconds'
        },
        :less_than_x_minutes => {
          :one => 'less than a minute',
          :other => 'less than {{count}} minutes'
        },
        :x_minutes => {
          :one => '1 minute',
          :other => '{{count}} minutes'
        },
        :about_x_hours => {
          :one => 'about 1 hour',
          :other => 'about {{count}} hours'
        },
        :x_days => {
          :one => '1 day',
          :other => '{{count}} days'
        },
        :about_x_months => {
          :one => 'about 1 month',
          :other => 'about {{count}} months'
        },
        :x_months => {
          :one => '1 month',
          :other => '{{count}} months'
        },
        :about_x_years => {
          :one => 'about 1 year',
          :other => 'about {{count}} year'
        },
        :over_x_years => {
          :one => 'over 1 year',
          :other => 'over {{count}} years'
        }
      }
    }
  }
end

#backend_get_translationsObject

def backend_reset_translations!

I18n::Backend::Simple::ClassMethods.send :class_variable_set, :@@translations, {}

end



24
25
26
27
# File 'lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb', line 24

def backend_get_translations
  # I18n::Backend::Simple::ClassMethods.send :class_variable_get, :@@translations
  @backend.instance_variable_get :@translations
end

#setup_backendObject Also known as: setup



12
13
14
15
16
17
# File 'lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb', line 12

def setup_backend
  # backend_reset_translations!
  @backend = I18n::Backend::Simple.new
  @backend.store_translations 'en', :foo => {:bar => 'bar', :baz => 'baz'}
  @locale_dir = File.dirname(__FILE__) + '/locale'
end