Add 🇫🇷 French locale

Thanks @DaFray31 !
This commit is contained in:
Riccardo Graziosi
2022-07-25 15:47:10 +02:00
parent c8012977c5
commit 3bda6dee08
2 changed files with 2 additions and 1 deletions

View File

@@ -130,6 +130,7 @@ const GeneralSiteSettingsP = ({
<option value="en">🇬🇧 English</option>
<option value="it">🇮🇹 Italiano</option>
<option value="de">🇩🇪 Deutsch</option>
<option value="fr">🇫🇷 Français</option>
</select>
</div>

View File

@@ -1,5 +1,5 @@
# Configure I18n to look at subfolders too
I18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.yml')]
I18n.available_locales = [:en, :it, :de]
I18n.available_locales = [:en, :it, :de, :fr]
I18n.default_locale = :en