Object
Locale without information file. Contain only it code, empty title and data from default locale.
Is another locale has same code.
# File lib/r18n-core/unsupported_locale.rb, line 55 def ==(locale) @code.downcase == locale.code.downcase end
Locale RFC 3066 code.
# File lib/r18n-core/unsupported_locale.rb, line 45 def code @code end
Human readable locale code and title.
# File lib/r18n-core/unsupported_locale.rb, line 40 def inspect "Unsupported locale #{@code}" end
Proxy to default locale object.
# File lib/r18n-core/unsupported_locale.rb, line 60 def method_missing(name, *params) @base.send(name, *params) end
Is locale has information file. In this class always return false.
# File lib/r18n-core/unsupported_locale.rb, line 35 def supported? false end
Locale code as title.
# File lib/r18n-core/unsupported_locale.rb, line 50 def title @code end
Generated with the Darkfish Rdoc Generator 2.