fix registration page not offering all translations
This commit is contained in:
		| @@ -29,7 +29,12 @@ | ||||
|     <%= select( | ||||
|       f, | ||||
|       :locale, | ||||
|       [{gettext("English"), "en_US"}], | ||||
|       [ | ||||
|         {"English", "en_US"}, | ||||
|         {"Deutsch", "de"}, | ||||
|         {"Français", "fr"}, | ||||
|         {"Español", "es"} | ||||
|       ], | ||||
|       class: "input input-primary col-span-2" | ||||
|     ) %> | ||||
|     <%= error_tag(f, :locale) %> | ||||
|   | ||||
| @@ -124,10 +124,10 @@ | ||||
|       f, | ||||
|       :locale, | ||||
|       [ | ||||
|         {gettext("English"), "en_US"}, | ||||
|         {gettext("German"), "de"}, | ||||
|         {gettext("French"), "fr"}, | ||||
|         {gettext("Spanish"), "es"} | ||||
|         {"English", "en_US"}, | ||||
|         {"Deutsch", "de"}, | ||||
|         {"Français", "fr"}, | ||||
|         {"Español", "es"} | ||||
|       ], | ||||
|       class: "mx-2 my-1 min-w-md input input-primary col-span-3" | ||||
|     ) %> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user