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 issue has been marked as stale because it has not had recent activity. @bmsatierf sorry nobody answered your question.
Thank you for your contributions.
In case anyone is landing on this issue (like I did) when investigating a similar issue, just note that the issue was fixed at i18n level. The following pull request was merged in Feb. 2019, and I can confirm that latest versions of i18n fix the problem : ruby-i18n/i18n#468
According to the standard lib, the flag
^
should upcase the result string, so considering the following setup:The statement
I18n.l '6/7/2015'.to_date
results inJulho 06, 2015
, which is OK.Now, considering the following setup:
The statement
I18n.l '6/7/2015'.to_date
results inJULY 06, 2015
.Note that the flag
^
was properly applied (upcase), but the translation failed, as it should beJULHO
.Am I missing something?
The text was updated successfully, but these errors were encountered: