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
The file, application_helper.rb includes several if I18n.locale == 'fr_CA' statements. However, this statement seems to evaluate to false, even when the app is set to French.
A cause for this issue may be that I18n.locale.class evaluates to a Symbol, rather than a String. Additionally, when the app is set to French, I18n.locale.to_s returns “fr-CA” rather than “fr_CA”.
The text was updated successfully, but these errors were encountered:
The file, application_helper.rb includes several
if I18n.locale == 'fr_CA'
statements. However, this statement seems to evaluate to false, even when the app is set to French.A cause for this issue may be that I18n.locale.class evaluates to a Symbol, rather than a String. Additionally, when the app is set to French, I18n.locale.to_s returns “fr-CA” rather than “fr_CA”.
The text was updated successfully, but these errors were encountered: