diff options
author | gnagno <gnagno@gmail.com> | 2011-07-23 08:26:18 -0700 |
---|---|---|
committer | gnagno <gnagno@gmail.com> | 2011-07-23 08:26:18 -0700 |
commit | 72df64b4e1229ddf05d75d17a0bc0eb1ad453910 (patch) | |
tree | 1277b287e5a9dbb4d67b77fbb971931d85516a91 /actionpack | |
parent | ace3723d2fcb1a96d51c2c82050594129328d7c0 (diff) | |
download | rails-72df64b4e1229ddf05d75d17a0bc0eb1ad453910.tar.gz rails-72df64b4e1229ddf05d75d17a0bc0eb1ad453910.tar.bz2 rails-72df64b4e1229ddf05d75d17a0bc0eb1ad453910.zip |
now the documentation reflects the actual returned value for a missing translation
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/translation_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/translation_helper.rb b/actionpack/lib/action_view/helpers/translation_helper.rb index 26b6e8b599..be64dc823e 100644 --- a/actionpack/lib/action_view/helpers/translation_helper.rb +++ b/actionpack/lib/action_view/helpers/translation_helper.rb @@ -25,7 +25,7 @@ module ActionView # * a titleized version of the last key segment as a text. # # E.g. the value returned for a missing translation key :"blog.post.title" will be - # <span class="translation_missing" title="translation missing: blog.post.title">Title</span>. + # <span class="translation_missing" title="translation missing: en.blog.post.title">Title</span>. # This way your views will display rather reasonable strings but it will still # be easy to spot missing translations. # |