ruby-gettext / gettext

Gettext gem is a pure Ruby Localization(L10n) library and tool which is modeled after the GNU gettext package.
https://ruby-gettext.github.io/
69 stars 28 forks source link

is Rails 6 supported? #82

Closed mathieujobin closed 3 years ago

mathieujobin commented 3 years ago

Has anyone been able to use this with Rails 6?

I used this gem back in the days with Rails 1. When I upgraded to Rails 4, I switch to FastGettext which now seems unmaintained and broken.

anyone else in a similar situation?

Or should I just convert my po files to rails yaml?

MichaelHoste commented 3 years ago

We use this as a dependency of translation/rails and it works great with Rails 6.

It seems that FastGettext uses a very old bundled version of this gem (https://github.com/grosser/fast_gettext/tree/master/lib/fast_gettext/vendor), and that could be your issue.

mathieujobin commented 3 years ago

Indeed, I should standardize back into using this gem instead. Thank you