You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.3 KiB
46 lines
2.3 KiB
- content_for :page_title do |
|
= t('settings.preferences') |
|
|
|
= simple_form_for current_user, url: settings_preferences_path, html: { method: :put } do |f| |
|
= render 'shared/error_messages', object: current_user |
|
|
|
.actions.actions--top |
|
= f.button :button, t('generic.save_changes'), type: :submit |
|
|
|
%h4= t 'preferences.languages' |
|
|
|
.fields-group |
|
= f.input :locale, collection: I18n.available_locales, wrapper: :with_label, include_blank: false, label_method: lambda { |locale| human_locale(locale) }, selected: I18n.locale |
|
|
|
= f.input :filtered_languages, collection: filterable_languages, wrapper: :with_block_label, include_blank: false, label_method: lambda { |locale| human_locale(locale) }, required: false, as: :check_boxes, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li' |
|
|
|
%h4= t 'preferences.publishing' |
|
|
|
.fields-group |
|
= f.input :setting_default_privacy, collection: Status.visibilities.keys - ['direct'], wrapper: :with_label, include_blank: false, label_method: lambda { |visibility| safe_join([I18n.t("statuses.visibilities.#{visibility}"), content_tag(:span, I18n.t("statuses.visibilities.#{visibility}_long"), class: 'hint')]) }, required: false, as: :radio_buttons, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li' |
|
|
|
= f.input :setting_default_sensitive, as: :boolean, wrapper: :with_label |
|
|
|
%h4= t 'preferences.other' |
|
|
|
.fields-group |
|
= f.input :setting_noindex, as: :boolean, wrapper: :with_label |
|
|
|
%h4= t 'preferences.web' |
|
|
|
.fields-group |
|
- if Themes.instance.names.size > 1 |
|
= f.input :setting_theme, collection: Themes.instance.names, label_method: lambda { |theme| I18n.t("themes.#{theme}", default: theme) }, wrapper: :with_label, include_blank: false |
|
|
|
= f.input :setting_unfollow_modal, as: :boolean, wrapper: :with_label |
|
= f.input :setting_boost_modal, as: :boolean, wrapper: :with_label |
|
= f.input :setting_delete_modal, as: :boolean, wrapper: :with_label |
|
|
|
.fields-group |
|
= f.input :setting_auto_play_gif, as: :boolean, wrapper: :with_label |
|
= f.input :setting_display_sensitive_media, as: :boolean, wrapper: :with_label |
|
= f.input :setting_reduce_motion, as: :boolean, wrapper: :with_label |
|
= f.input :setting_system_font_ui, as: :boolean, wrapper: :with_label |
|
|
|
.actions |
|
= f.button :button, t('generic.save_changes'), type: :submit
|
|
|