Sha256: 52fbc04f4000adb622c4422b0f5151664f65da660b31544024bc0ab64c0de45f
Contents?: true
Size: 902 Bytes
Versions: 4
Compression:
Stored size: 902 Bytes
Contents
# encoding: utf-8 module Formtastic # @private module I18n DEFAULT_SCOPE = [:formtastic].freeze DEFAULT_VALUES = YAML.load_file(File.expand_path("../../locale/en.yml", __FILE__))["en"]["formtastic"].freeze SCOPES = [ '%{model}.%{nested_model}.%{action}.%{attribute}', '%{model}.%{nested_model}.%{attribute}', '%{nested_model}.%{action}.%{attribute}', '%{nested_model}.%{attribute}', '%{model}.%{action}.%{attribute}', '%{model}.%{attribute}', '%{attribute}' ] class << self def translate(*args) key = args.shift.to_sym options = args.extract_options! options.reverse_merge!(:default => DEFAULT_VALUES[key]) options[:scope] = [DEFAULT_SCOPE, options[:scope]].flatten.compact ::I18n.translate(key, *args, **options) end alias :t :translate end end end
Version data entries
4 entries across 4 versions & 2 rubygems