2011-03-30 20:31:39 -04:00
|
|
|
I18n.load_path += Dir[File.join(File.dirname(__FILE__), 'locale', '*.yml')]
|
|
|
|
|
|
|
|
module Ransack
|
|
|
|
module Translate
|
|
|
|
def self.word(key, options = {})
|
2013-08-04 09:13:41 -04:00
|
|
|
I18n.translate(:"ransack.#{key}", default: key.to_s)
|
2011-03-30 20:31:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.predicate(key, options = {})
|
2013-08-04 09:13:41 -04:00
|
|
|
I18n.translate(:"ransack.predicates.#{key}", default: key.to_s)
|
2011-03-30 20:31:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.attribute(key, options = {})
|
|
|
|
unless context = options.delete(:context)
|
2011-08-13 16:36:40 -04:00
|
|
|
raise ArgumentError, "A context is required to translate attributes"
|
2011-03-30 20:31:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
original_name = key.to_s
|
|
|
|
base_class = context.klass
|
2013-08-04 09:13:41 -04:00
|
|
|
base_ancestors = base_class.ancestors.
|
|
|
|
select { |x| x.respond_to?(:model_name) }
|
2011-06-06 21:32:03 -04:00
|
|
|
predicate = Predicate.detect_from_string(original_name)
|
2011-03-30 20:31:39 -04:00
|
|
|
attributes_str = original_name.sub(/_#{predicate}$/, '')
|
|
|
|
attribute_names = attributes_str.split(/_and_|_or_/)
|
|
|
|
combinator = attributes_str.match(/_and_/) ? :and : :or
|
|
|
|
defaults = base_ancestors.map do |klass|
|
2013-03-01 15:29:40 -05:00
|
|
|
:"ransack.attributes.#{klass.model_name.singular}.#{original_name}"
|
2011-03-30 20:31:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
translated_names = attribute_names.map do |attr|
|
|
|
|
attribute_name(context, attr, options[:include_associations])
|
|
|
|
end
|
|
|
|
|
|
|
|
interpolations = {}
|
2013-08-04 09:13:41 -04:00
|
|
|
interpolations[:attributes] = translated_names.
|
|
|
|
join(" #{Translate.word(combinator)} ")
|
2011-03-30 20:31:39 -04:00
|
|
|
|
|
|
|
if predicate
|
|
|
|
defaults << "%{attributes} %{predicate}"
|
|
|
|
interpolations[:predicate] = Translate.predicate(predicate)
|
|
|
|
else
|
|
|
|
defaults << "%{attributes}"
|
|
|
|
end
|
|
|
|
|
|
|
|
defaults << options.delete(:default) if options[:default]
|
2013-08-04 09:13:41 -04:00
|
|
|
options.reverse_merge! count: 1, default: defaults
|
2011-03-30 20:31:39 -04:00
|
|
|
I18n.translate(defaults.shift, options.merge(interpolations))
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.association(key, options = {})
|
|
|
|
unless context = options.delete(:context)
|
|
|
|
raise ArgumentError, "A context is required to translate associations"
|
|
|
|
end
|
|
|
|
|
2013-08-04 09:13:41 -04:00
|
|
|
defaults = key.blank? ? [:"#{context.klass.i18n_scope}.models.#{
|
|
|
|
context.klass.model_name.singular}"] : [
|
|
|
|
:"ransack.associations.#{context.klass.model_name.singular
|
|
|
|
}.#{key}"]
|
2011-03-30 20:31:39 -04:00
|
|
|
defaults << context.traverse(key).model_name.human
|
2013-08-04 09:13:41 -04:00
|
|
|
options = {count: 1, default: defaults}
|
2011-03-30 20:31:39 -04:00
|
|
|
I18n.translate(defaults.shift, options)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def self.attribute_name(context, name, include_associations = nil)
|
|
|
|
assoc_path = context.association_path(name)
|
|
|
|
associated_class = context.traverse(assoc_path) if assoc_path.present?
|
|
|
|
attr_name = name.sub(/^#{assoc_path}_/, '')
|
|
|
|
interpolations = {}
|
|
|
|
interpolations[:attr_fallback_name] = I18n.translate(
|
2013-08-04 09:13:41 -04:00
|
|
|
(associated_class ?
|
|
|
|
:"ransack.attributes.#{associated_class.model_name.singular}.#{attr_name}" :
|
2013-03-01 15:29:40 -05:00
|
|
|
:"ransack.attributes.#{context.klass.model_name.singular}.#{attr_name}"
|
2011-03-30 20:31:39 -04:00
|
|
|
),
|
2013-08-04 09:13:41 -04:00
|
|
|
default: [
|
|
|
|
(associated_class ?
|
|
|
|
:"#{associated_class.i18n_scope}.attributes.#{associated_class.model_name.singular}.#{attr_name}" :
|
2013-03-01 15:29:40 -05:00
|
|
|
:"#{context.klass.i18n_scope}.attributes.#{context.klass.model_name.singular}.#{attr_name}"
|
2011-03-30 20:31:39 -04:00
|
|
|
),
|
2013-05-23 08:56:48 -04:00
|
|
|
:".attributes.#{attr_name}",
|
2011-03-30 20:31:39 -04:00
|
|
|
attr_name.humanize
|
|
|
|
]
|
|
|
|
)
|
|
|
|
defaults = [
|
2013-03-01 15:29:40 -05:00
|
|
|
:"ransack.attributes.#{context.klass.model_name.singular}.#{name}"
|
2011-03-30 20:31:39 -04:00
|
|
|
]
|
|
|
|
if include_associations && associated_class
|
|
|
|
defaults << '%{association_name} %{attr_fallback_name}'
|
2013-08-04 09:13:41 -04:00
|
|
|
interpolations[:association_name] = association(
|
|
|
|
assoc_path,
|
|
|
|
context: context
|
|
|
|
)
|
2011-03-30 20:31:39 -04:00
|
|
|
else
|
|
|
|
defaults << '%{attr_fallback_name}'
|
|
|
|
end
|
2013-08-04 09:13:41 -04:00
|
|
|
options = {count: 1, default: defaults}
|
2011-03-30 20:31:39 -04:00
|
|
|
I18n.translate(defaults.shift, options.merge(interpolations))
|
|
|
|
end
|
|
|
|
end
|
2013-03-01 15:29:40 -05:00
|
|
|
end
|