diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-05-31 16:52:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 16:52:52 +0200 |
commit | c1d0a6a7981b5fe74bdd03c958a558096ea3cde8 (patch) | |
tree | 56620c9a02f7875354714cadf3205a8ea874a4e1 /app | |
parent | bbda3592d8962e8d67de20c4f3db96c91fcb5ccc (diff) |
Make “Flavour and skin” admin setting label translatable (#1791)
Diffstat (limited to 'app')
-rw-r--r-- | app/views/admin/settings/edit.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/settings/edit.html.haml b/app/views/admin/settings/edit.html.haml index a47cb2a88..dd794b727 100644 --- a/app/views/admin/settings/edit.html.haml +++ b/app/views/admin/settings/edit.html.haml @@ -12,7 +12,7 @@ .fields-row .fields-row__column.fields-row__column-6.fields-group - = f.input :flavour_and_skin, collection: Themes.instance.flavours_and_skins, group_label_method: lambda { |(flavour, _)| I18n.t("flavours.#{flavour}.name", default: flavour) }, wrapper: :with_label, include_blank: false, as: :grouped_select, label_method: :last, value_method: lambda { |value| value.join('/') }, group_method: :last + = f.input :flavour_and_skin, collection: Themes.instance.flavours_and_skins, group_label_method: lambda { |(flavour, _)| I18n.t("flavours.#{flavour}.name", default: flavour) }, wrapper: :with_label, label: t('admin.settings.flavour_and_skin.title'), include_blank: false, as: :grouped_select, label_method: :last, value_method: lambda { |value| value.join('/') }, group_method: :last .fields-row__column.fields-row__column-6.fields-group = f.input :registrations_mode, collection: %w(open approved none), wrapper: :with_label, label: t('admin.settings.registrations_mode.title'), include_blank: false, label_method: lambda { |mode| I18n.t("admin.settings.registrations_mode.modes.#{mode}") } |