module Locale::Info
Public Instance Methods
Returns the language for the given 2 or 3 digit code.
Need to require 'locale/info' or 'locale/language'.
# File lib/locale/info/language.rb, line 127 def get_language(code) @@lang_three_codes[code] || @@lang_two_codes[code] end
Returns the region for the given code.
You need to require 'locale/info' or 'locale/info/region'.
# File lib/locale/info/region.rb, line 63 def get_region(code) @@regions[code] end
Returns the language code is valid.
Need to require 'locale/info' or 'locale/language'.
# File lib/locale/info/language.rb, line 134 def language_code?(code) get_language(code) != nil end
Returns a hash of all the ISO regions. The hash is {String, Region} where the string is the 2 digit region code from the ISO 3166 data.
You need to require 'locale/info' or 'locale/region'.
# File lib/locale/info/region.rb, line 56 def regions @@regions end
Returns a hash of all the ISO languages. The hash is {String, language} where the string is the 3 digit language code from the ISO 639 data. This contains all of the data from the ISO 639-3 data (7600 Languages).
Need to require 'locale/info' or 'locale/language'.
# File lib/locale/info/language.rb, line 111 def three_languages @@lang_three_codes end
Returns a hash of all the ISO languages. The hash is {String, language} where the string is the 2 digit language code from the ISO 639-1 data. This contains all of the data from the ISO 639-1 data (186 Languages).
Need to require 'locale/info' or 'locale/language'.
# File lib/locale/info/language.rb, line 120 def two_languages @@lang_two_codes end
Returns the region code is valid.
You need to require 'locale/info' or 'locale/info/region'.
# File lib/locale/info/region.rb, line 70 def valid_region_code?(code) @@regions[code] != nil end