Created
October 31, 2020 14:50
-
-
Save osamu/331044e25173f44d95f621195d76057a to your computer and use it in GitHub Desktop.
Debug i18n on Rails
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
irb(main):002:0> I18n.t "views.mypage.menu.postguide" | |
D, [2020-10-31T14:34:36.213031 #1] DEBUG -- : [i18n-debug] ja.views.mypage.menu.postguide => "投稿した台本" | |
=> "投稿した台本" | |
irb(main):003:0> y = YAML.load_file('config/locales/ja.yml'); y['ja']['views']['mypage']['menu']['postguide'] | |
=> "ガイド管理" | |
結果 | |
config/locales/en.ymlに、 'ja'をkeyにしたツリーが混入 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment