foodsoft/config/initializers/currency_display.rb

9 lines
341 B
Ruby
Raw Normal View History

# remove all currency translations, so that we can set the default language and
# have it shown in all other languages too
2023-01-06 16:12:41 +01:00
I18n.available_locales.each do |locale|
unless locale == I18n.default_locale
I18n.backend.store_translations(locale,
number: { currency: { format: { unit: nil } } })
end
end