We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we use our own fallback class for some custom translation logic:
class I18n::OurFallback def [](key) ... end end I18n.fallbacks = I18n::OurFallback.new
this class is not used any more because of this change here
i18n/lib/i18n/backend/fallbacks.rb
Line 23 in 71a51b3
is it possible to fix #534 with the other way around:
def fallbacks=(fallbacks) @@fallbacks = fallbacks.is_a?(Array) ? I18n::Locale::Fallbacks.new(fallbacks) : fallbacks end
thx, i'll prepare a PR for a possible fix
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What I tried to do
we use our own fallback class for some custom translation logic:
this class is not used any more because of this change here
i18n/lib/i18n/backend/fallbacks.rb
Line 23 in 71a51b3
is it possible to fix #534 with the other way around:
thx, i'll prepare a PR for a possible fix
The text was updated successfully, but these errors were encountered: