Class: R18n::Locale

Inherits:
Object
  • Object
show all
Defined in:
lib/r18n-core/locale.rb

Overview

Information about locale (language, country and other special variant preferences). Locale was named by RFC 3066. For example, locale for French speaking people in Canada will be fr-CA.

Locale classes are placed in R18n::Locales module and storage install locales/ dir.

Each locale has sublocales – often known languages for people from this locale. For example, many Belorussians know Russian and English. If there is’t translation for Belorussian, it will be searched in Russian and next in English translations.

Usage

Get Russian locale and print it information

ru = R18n::Locale.load('ru')
ru.title #=> "Русский"
ru.code  #=> "ru"
ru.ltr?  #=> true

Available data

  • code – locale RFC 3066 code;

  • title – locale name on it language;

  • ltr? – true on left-to-right writing direction, false for Arabic and Hebrew);

  • sublocales – often known languages for people from this locale;

  • week_start – does week start from :monday or :sunday.

You can see more available data about locale in samples in locales/ dir.

Constant Summary collapse

LOCALES_DIR =
Pathname(__FILE__).dirname.expand_path + '../../locales/'
@@loaded =
{}

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.availableObject

Codes of all available locales.



63
64
65
66
67
# File 'lib/r18n-core/locale.rb', line 63

def self.available
  Dir.glob(File.join(LOCALES_DIR, '*.rb')).map do |i|
    File.basename(i, '.rb')
  end
end

.exists?(locale) ⇒ Boolean

Is locale has info file.

Returns:

  • (Boolean)


70
71
72
# File 'lib/r18n-core/locale.rb', line 70

def self.exists?(locale)
  File.exists?(File.join(LOCALES_DIR, locale.to_s + '.rb'))
end

.load(code) ⇒ Object

Load locale by RFC 3066 code.



75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/r18n-core/locale.rb', line 75

def self.load(code)
  original = code.to_s.gsub(/[^-_a-zA-Z]/, '')
  code = original.gsub('_', '-').downcase
  
  @@loaded[code] ||= begin
    if exists? code
      require LOCALES_DIR + "#{code}.rb"
      name = code.gsub(/[\w\d]+/) { |i| i.capitalize }.gsub('-', '')
      eval('R18n::Locales::' + name).new
    else
      UnsupportedLocale.new(original)
    end
  end
end

.set(properties) ⇒ Object

Set locale properties. Locale class will have methods for each propetry name, which return propetry value:

class R18n::Locales::En < R18n::Locale
  set :title => 'English',
      :code  => 'en'
end

locale = R18n::Locales::En.new
locale.title #=> "English"
locale.code  #=> "en"


101
102
103
104
105
# File 'lib/r18n-core/locale.rb', line 101

def self.set(properties)
  properties.each_pair do |key, value|
    define_method(key) { value }
  end
end

Instance Method Details

#==(locale) ⇒ Object

Is another locale has same code.



126
127
128
# File 'lib/r18n-core/locale.rb', line 126

def ==(locale)
  self.class == locale.class
end

#codeObject

Locale RFC 3066 code.



108
109
110
# File 'lib/r18n-core/locale.rb', line 108

def code
  self.class.name.split('::').last.downcase
end

#format_date_full(date, year = true, *params) ⇒ Object

Format date in most official form. For example, “December 31st, 2009”. For special cases you can replace it in locale’s class. If year is false date will be without year.



286
287
288
289
290
# File 'lib/r18n-core/locale.rb', line 286

def format_date_full(date, year = true, *params)
  format = full_format
  format = year_format.sub('_', format) if year
  strftime(date, format)
end

#format_date_human(date, i18n, now = Date.today, *params) ⇒ Object

Format date in human usable form. For example “5 days ago” or “yesterday”. In now you can set base time, which be used to get relative time. For special cases you can replace it in locale’s class.



260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/r18n-core/locale.rb', line 260

def format_date_human(date, i18n, now = Date.today, *params)
  days = (date - now).to_i
  case days
  when -6..-2
    i18n.human_time.days_ago(days.abs)
  when -1
    i18n.human_time.yesterday
  when 0
    i18n.human_time.today
  when 1
    i18n.human_time.tomorrow
  when 2..6
    i18n.human_time.after_days(days)
  else
    format_date_full(date, date.year != now.year)
  end
end

#format_date_standard(date, *params) ⇒ Object

Format date in compact form. For example, “12/31/09”.



279
280
281
# File 'lib/r18n-core/locale.rb', line 279

def format_date_standard(date, *params)
  strftime(date, date_format)
end

#format_float(float) ⇒ Object

Returns the float in String form, according to the rules of the locale. It will also put real typographic minus.



185
186
187
188
# File 'lib/r18n-core/locale.rb', line 185

def format_float(float)
  decimal = number_decimal
  self.format_integer(float.to_i) + decimal + float.to_s.split('.').last
end

#format_integer(integer) ⇒ Object

Returns the integer in String form, according to the rules of the locale. It will also put real typographic minus.



173
174
175
176
177
178
179
180
181
# File 'lib/r18n-core/locale.rb', line 173

def format_integer(integer)
  str = integer.to_s
  str[0] = '' if 0 > integer # Real typographic minus
  group = number_group
  
  str.gsub(/(\d)(?=(\d\d\d)+(?!\d))/) do |match|
    match + group
  end
end

#format_time(time) ⇒ Object

Format time without date. For example, “12:59”.



215
216
217
# File 'lib/r18n-core/locale.rb', line 215

def format_time(time)
  strftime(time, time_format)
end

#format_time_full(time, *params) ⇒ Object

Format time in most official form. For example, “December 31st, 2009 12:59”. For special cases you can replace it in locale’s class.



253
254
255
# File 'lib/r18n-core/locale.rb', line 253

def format_time_full(time, *params)
  format_date_full(time) + format_time(time)
end

#format_time_human(time, i18n, now = Time.now, *params) ⇒ Object

Format time in human usable form. For example “5 minutes ago” or “yesterday”. In now you can set base time, which be used to get relative time. For special cases you can replace it in locale’s class.



222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/r18n-core/locale.rb', line 222

def format_time_human(time, i18n, now = Time.now, *params)
  minutes = (time - now) / 60.0
  if time.mday != now.mday and minutes.abs > 720 # 12 hours
    format_date_human(R18n::Utils.to_date(time), i18n,
                      R18n::Utils.to_date(now)) + format_time(time)
  else
    case minutes
    when -60..-1
      i18n.human_time.minutes_ago(minutes.round.abs)
    when 1..60
      i18n.human_time.after_minutes(minutes.round)
    when -1..1
      i18n.human_time.now
    else
      hours = (minutes / 60.0).abs.floor
      if time > now
        i18n.human_time.after_hours(hours)
      else
        i18n.human_time.hours_ago(hours)
      end
    end
  end
end

#format_time_standard(time, *params) ⇒ Object

Format time in compact form. For example, “12/31/09 12:59”.



247
248
249
# File 'lib/r18n-core/locale.rb', line 247

def format_time_standard(time, *params)
  format_date_standard(time) + format_time(time)
end

#inspectObject

Human readable locale code and title.



136
137
138
# File 'lib/r18n-core/locale.rb', line 136

def inspect
  "Locale #{code} (#{title})"
end

#localize(obj, format = nil, *params) ⇒ Object

Convert object to String. It support Fixnum, Bignum, Float, Time, Date and DateTime.

For time classes you can set format in standard strftime form, :full (“01 Jule, 2009”), :human (“yesterday”), :standard (“07/01/09”) or :month for standalone month name. Default format is :standard.



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
# File 'lib/r18n-core/locale.rb', line 147

def localize(obj, format = nil, *params)
  case obj
  when Integer
    format_integer(obj)
  when Float
    format_float(obj)
  when Time, DateTime, Date
    return strftime(obj, format) if format.is_a? String
    return month_standalone[obj.month - 1] if :month == format
    return obj.to_s if :human == format and not params.first.is_a? I18n
    
    type = obj.is_a?(Date) ? 'date' : 'time'
    format = :standard unless format
    
    unless [:human, :full, :standard].include? format
      raise ArgumentError, "Unknown time formatter #{format}"
    end
      
    send "format_#{type}_#{format}", obj, *params
  else
    obj.to_s
  end
end

#ltr?Boolean

Is locale has left-to-right write direction.

Returns:

  • (Boolean)


123
# File 'lib/r18n-core/locale.rb', line 123

def ltr?; true; end

#month_standaloneObject



120
# File 'lib/r18n-core/locale.rb', line 120

def month_standalone; month_names; end

#pluralize(n) ⇒ Object

Return pluralization type for n items. This is simple form. For special cases you can replace it in locale’s class.



294
295
296
297
298
299
300
301
302
303
# File 'lib/r18n-core/locale.rb', line 294

def pluralize(n)
  case n
  when 0
    0
  when 1
    1
  else
    'n'
  end
end

#strftime(time, format) ⇒ Object

Same that Time.strftime, but translate months and week days names. In time you can use Time, DateTime or Date object. In format you can use standard strftime format.



193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'lib/r18n-core/locale.rb', line 193

def strftime(time, format)
  translated = ''
  format.scan(/%[EO]?.|./o) do |c|
    case c.sub(/^%[EO]?(.)$/o, '%\\1')
    when '%A'
      translated << wday_names[time.wday]
    when '%a'
      translated << wday_abbrs[time.wday]
    when '%B'
      translated << month_names[time.month - 1]
    when '%b'
      translated << month_abbrs[time.month - 1]
    when '%p'
      translated << (time.hour < 12 ? time_am : time_pm)
    else
      translated << c
    end
  end
  time.strftime(translated)
end

#supported?Boolean

Is locale has information file. In this class always return true.

Returns:

  • (Boolean)


131
132
133
# File 'lib/r18n-core/locale.rb', line 131

def supported?
  true
end