You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This works as expected on my development environment, but on my staging (and production) environment, the labels are strange!
In my page I print out I18n.locale and I18n.default_locale, and both are "ja" as expected.
But the labels are: <option value="en">translation missing: en.dollar</option> <option selected="selected" value="ja">translation missing: en.yen</option>
Why it is looking for "en" despite that I18n.locale = "ja" ?
Even why it cannot find "en.dollar" despite that it exists in my locale file ?
The text was updated successfully, but these errors were encountered:
Here is my code in my model :
My locale files :
This works as expected on my development environment, but on my staging (and production) environment, the labels are strange!
In my page I print out I18n.locale and I18n.default_locale, and both are "ja" as expected.
But the labels are:
<option value="en">
translation missing: en.dollar</option>
<option selected="selected" value="ja">
translation missing: en.yen</option>
Why it is looking for "en" despite that I18n.locale = "ja" ?
Even why it cannot find "en.dollar" despite that it exists in my locale file ?
The text was updated successfully, but these errors were encountered: