2016-10-14 00:28:49 +00:00
|
|
|
- content_for :page_title do
|
2016-11-15 22:02:57 +00:00
|
|
|
= t('settings.preferences')
|
2016-10-14 00:28:49 +00:00
|
|
|
|
2020-03-08 15:04:03 +00:00
|
|
|
- content_for :heading_actions do
|
|
|
|
= button_tag t('generic.save_changes'), class: 'button', form: 'edit_preferences'
|
|
|
|
|
|
|
|
= simple_form_for current_user, url: settings_preferences_other_path, html: { method: :put, id: 'edit_preferences' } do |f|
|
2016-10-18 14:37:15 +00:00
|
|
|
= render 'shared/error_messages', object: current_user
|
|
|
|
|
2017-07-14 14:41:02 +00:00
|
|
|
.fields-group
|
|
|
|
= f.input :setting_noindex, as: :boolean, wrapper: :with_label
|
|
|
|
|
2019-02-02 18:18:15 +00:00
|
|
|
.fields-group
|
2019-06-07 01:39:24 +00:00
|
|
|
= f.input :setting_aggregate_reblogs, as: :boolean, wrapper: :with_label, recommended: true
|
2019-02-02 18:18:15 +00:00
|
|
|
|
2019-06-10 16:30:41 +00:00
|
|
|
- unless Setting.hide_followers_count
|
|
|
|
.fields-group
|
2022-11-12 09:09:27 +00:00
|
|
|
= f.input :setting_hide_followers_count, as: :boolean, wrapper: :with_label, glitch_only: true
|
2019-06-10 16:30:41 +00:00
|
|
|
|
2019-06-07 01:39:24 +00:00
|
|
|
%h4= t 'preferences.posting_defaults'
|
2017-10-01 08:52:39 +00:00
|
|
|
|
2018-10-16 12:07:54 +00:00
|
|
|
.fields-row
|
|
|
|
.fields-group.fields-row__column.fields-row__column-6
|
2019-06-07 01:39:24 +00:00
|
|
|
= f.input :setting_default_privacy, collection: Status.selectable_visibilities, wrapper: :with_label, include_blank: false, label_method: lambda { |visibility| safe_join([I18n.t("statuses.visibilities.#{visibility}"), I18n.t("statuses.visibilities.#{visibility}_long")], ' - ') }, required: false, hint: false
|
|
|
|
|
2018-10-16 12:07:54 +00:00
|
|
|
.fields-group.fields-row__column.fields-row__column-6
|
2022-02-09 03:15:38 +00:00
|
|
|
= f.input :setting_default_language, collection: [nil] + filterable_languages, wrapper: :with_label, label_method: lambda { |locale| locale.nil? ? I18n.t('statuses.default_language') : native_locale_name(locale) }, required: false, include_blank: false, hint: false
|
2017-10-01 08:52:39 +00:00
|
|
|
|
2019-05-25 19:27:00 +00:00
|
|
|
.fields-group
|
2019-06-07 01:39:24 +00:00
|
|
|
= f.input :setting_default_sensitive, as: :boolean, wrapper: :with_label
|
2019-05-25 19:27:00 +00:00
|
|
|
|
2018-09-18 14:45:58 +00:00
|
|
|
.fields-group
|
2019-06-07 01:39:24 +00:00
|
|
|
= f.input :setting_show_application, as: :boolean, wrapper: :with_label, recommended: true
|
2017-04-11 14:10:16 +00:00
|
|
|
|
2019-06-10 16:30:41 +00:00
|
|
|
.fields-group
|
2022-11-12 09:09:27 +00:00
|
|
|
= f.input :setting_default_content_type, collection: ['text/plain', 'text/markdown', 'text/html'], wrapper: :with_label, include_blank: false, label_method: lambda { |item| safe_join([t("simple_form.labels.defaults.setting_default_content_type_#{item.split('/')[1]}"), content_tag(:span, t("simple_form.hints.defaults.setting_default_content_type_#{item.split('/')[1]}"), class: 'hint')]) }, required: false, as: :radio_buttons, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li', glitch_only: true
|
2019-06-10 16:30:41 +00:00
|
|
|
|
2019-06-07 01:39:24 +00:00
|
|
|
%h4= t 'preferences.public_timelines'
|
2018-12-09 12:03:01 +00:00
|
|
|
|
2017-04-17 10:14:03 +00:00
|
|
|
.fields-group
|
2022-02-09 03:15:38 +00:00
|
|
|
= f.input :chosen_languages, collection: filterable_languages, wrapper: :with_block_label, include_blank: false, label_method: lambda { |locale| native_locale_name(locale) }, required: false, as: :check_boxes, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li'
|
2017-04-17 10:14:03 +00:00
|
|
|
|
2016-10-14 00:28:49 +00:00
|
|
|
.actions
|
2016-11-15 22:02:57 +00:00
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|