Allow users to set preferred locale in settings and provide basic date and time localization support (#1226)

* Add basic date and time localization

* Normalize translations

* Localize transaction dates

* Removed unsupported Rails locales
This commit is contained in:
Zach Gollwitzer
2024-10-02 14:02:17 -04:00
committed by GitHub
parent 7fabca4679
commit ab40289eb4
130 changed files with 25190 additions and 10 deletions

View File

@@ -0,0 +1,5 @@
class AddLocalePreference < ActiveRecord::Migration[7.2]
def change
add_column :families, :locale, :string, default: "en"
end
end