In the Rails docs there seem to be different default locations for I18N strings, depending if the I18N-lookup was initiated from a view, model / validation, controller, helper, ..., if it's a label, etc...

How can I see where Rails is trying to lookup things by default, e.g. when I just use t('.something') ?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You can monkey patch the I18N backend in development mode to print out the I18n keys that are looked up in the backend.

Check here:

http://unixgods.org/~tilo/Rails/where_is_Rails_trying_to_lookup_L10N_strings.html

link|improve this answer
feedback

the standalone I18n.t does not prefix your translation key in any way, here are the helper methods/modules that are responsible for the rails' magic:

(click on the "source" link below the methods' description to see what's happening inside)

ActionView:

http://api.rubyonrails.org/classes/ActionView/Helpers/TranslationHelper.html#method-i-t

scope_key_by_partial

ActiveModel:

http://api.rubyonrails.org/classes/ActiveModel/Translation.html#method-i-i18n_scope

AbstractController

http://api.rubyonrails.org/classes/AbstractController/Translation.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown