about summary refs log tree commit diff
path: root/app/views/settings/preferences/appearance
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-02-09 04:15:38 +0100
committerGitHub <noreply@github.com>2022-02-09 04:15:38 +0100
commit3aebe711fd54d75c1ea35e65a5dc342e78508d15 (patch)
treedfcf0267428ea30cce194e58d201d5cabcc1e0cc /app/views/settings/preferences/appearance
parentfd3a45e3482e86dad3c1dfc069144864c4ff0b0b (diff)
Change languages to be listed under standard instead of native name in admin UI (#17485)
Diffstat (limited to 'app/views/settings/preferences/appearance')
-rw-r--r--app/views/settings/preferences/appearance/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/settings/preferences/appearance/show.html.haml b/app/views/settings/preferences/appearance/show.html.haml
index 14941d5fd..9e3964f21 100644
--- a/app/views/settings/preferences/appearance/show.html.haml
+++ b/app/views/settings/preferences/appearance/show.html.haml
@@ -7,7 +7,7 @@
 = simple_form_for current_user, url: settings_preferences_appearance_path, html: { method: :put, id: 'edit_user' } do |f|
   .fields-row
     .fields-group.fields-row__column.fields-row__column-6
-      = f.input :locale, collection: I18n.available_locales, wrapper: :with_label, include_blank: false, label_method: lambda { |locale| human_locale(locale) }, selected: I18n.locale, hint: false
+      = f.input :locale, collection: I18n.available_locales, wrapper: :with_label, include_blank: false, label_method: lambda { |locale| native_locale_name(locale) }, selected: I18n.locale, hint: false
     .fields-group.fields-row__column.fields-row__column-6
       = f.input :setting_theme, collection: Themes.instance.names, label_method: lambda { |theme| I18n.t("themes.#{theme}", default: theme) }, wrapper: :with_label, include_blank: false, hint: false