Sha256: 9300a7a8c23bdf816e6312bec3aaf4edc840f2658918d41091695170f8afa91e
Contents?: true
Size: 1.59 KB
Versions: 5
Compression:
Stored size: 1.59 KB
Contents
require File.expand_path("../config", __FILE__) require File.expand_path("../constant", __FILE__) require File.expand_path("../initializer", __FILE__) require File.expand_path("../word_for", __FILE__) require File.expand_path("../authentication", __FILE__) module WhowishWord include WhowishWord::Constant include WhowishWord::Initializer include WhowishWord::WordFor # include WhowishWord::Authentication attr_accessor :config_file_dir def init(config_file_dir = File.join(Rails.root, 'config', 'locales', 'whowish_word')) install_route install_hook load_rails @config_file_dir = config_file_dir Rails.configuration.i18n.load_path = Dir[File.join(@config_file_dir, '**', '*.{rb,yml}')] I18n.class_eval do class << self def translations backend.send(:translations) end end end I18n::MissingTranslation::Base.class_eval do def html_message key = keys.last.to_s.gsub('_', ' ').gsub(/\b('?[a-z])/) { $1 } key end end I18n.class_eval do class << self def interpolate_hash(string, values) string.gsub(I18n::INTERPOLATION_PATTERN) do |match| if match == '%%' '%' else key = ($1 || $2).to_sym value = values.key?(key) ? values[key] : "%{#{key}}" #raise(MissingInterpolationArgument.new(values, string)) value = value.call(values) if value.respond_to?(:call) $3 ? sprintf("%#{$3}", value) : value end end end end end end extend self end
Version data entries
5 entries across 5 versions & 1 rubygems