default_locale()
click to toggle source
def default_locale
::I18n.default_locale
end
default_locale=(new_locale)
click to toggle source
def default_locale=(new_locale)
::I18n.default_locale = new_locale
end
ensure_locales_enforced_or_not()
click to toggle source
def ensure_locales_enforced_or_not
return unless ::I18n.respond_to?(:enforce_available_locales)
return unless ::I18n.enforce_available_locales == nil
::I18n.enforce_available_locales = ::I18n.available_locales != []
end
i18n_translations_for(locale)
click to toggle source
def i18n_translations_for(locale)
ensure_locales_enforced_or_not
::I18n.translate("stringex", locale: locale, default: {})
end
initial_translation(scope, key, locale)
click to toggle source
def initial_translation(scope, key, locale)
translations[locale][scope][key.to_sym]
end
load_translations(locale = nil)
click to toggle source
def load_translations(locale = nil)
locale ||= self.locale
path = Dir[File.join(LOAD_PATH_BASE, "#{locale}.yml")]
::I18n.load_path |= Dir[File.join(LOAD_PATH_BASE, "#{locale}.yml")]
::I18n.backend.load_translations
reset_translations_cache
end
locale()
click to toggle source
def locale
@locale || ::I18n.locale
end
locale=(new_locale)
click to toggle source
def locale=(new_locale)
@locale = new_locale
end
reset!()
click to toggle source
def reset!
super
@locale = nil
::I18n.reload! if defined?(::I18n) && ::I18n.respond_to?(:reload!)
end
reset_translations_cache()
click to toggle source
def reset_translations_cache
@translations = nil
end
store_translations(locale, scope, data)
click to toggle source
def store_translations(locale, scope, data)
::I18n.backend.store_translations(locale, {stringex: {scope => data}})
reset_translations_cache
end
translations()
click to toggle source
def translations
@translations ||= Hash.new { |hsh, locale| hsh[locale] = Hash.new({}).merge(i18n_translations_for(locale)) }
end
with_locale(new_locale, &block)
click to toggle source
def with_locale(new_locale, &block)
::I18n.with_locale new_locale, &block
end