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
A small issue I have run into, with this kind of code
I18n.t("my.translation.#{mapping["key"]}")
The presence of both [ + " make this kind of error to be displayed when I run I18n-tasks unused
/usr/local/bundle/gems/i18n-tasks-1.0.12/lib/i18n/tasks/key_pattern_matching.rb:28:in `compile_key_pattern': premature end of char-class: /\\A(my\\.translation\\.mapping[)\\z/ (RegexpError)
If I use single quote it works
I18n.t("my.translation.#{mapping['key']}")
Best regards,
Sebastian
The text was updated successfully, but these errors were encountered:
Dear team,
Thank you so much for this amazing tool
A small issue I have run into, with this kind of code
The presence of both
[
+"
make this kind of error to be displayed when I runI18n-tasks unused
If I use single quote it works
Best regards,
Sebastian
The text was updated successfully, but these errors were encountered: