2016-10-13 19:28:49 -05:00
|
|
|
- content_for :page_title do
|
2016-11-15 16:02:57 -06:00
|
|
|
= t('settings.preferences')
|
2016-10-13 19:28:49 -05:00
|
|
|
|
2019-06-10 12:26:43 -05:00
|
|
|
= simple_form_for current_user, url: settings_preferences_other_path, html: { method: :put } do |f|
|
2016-10-18 09:37:15 -05:00
|
|
|
= render 'shared/error_messages', object: current_user
|
|
|
|
|
2017-07-14 09:41:02 -05:00
|
|
|
.fields-group
|
|
|
|
= f.input :setting_noindex, as: :boolean, wrapper: :with_label
|
|
|
|
|
2018-05-17 19:26:51 -05:00
|
|
|
.fields-group
|
|
|
|
= f.input :setting_hide_network, as: :boolean, wrapper: :with_label
|
|
|
|
|
2019-02-02 12:18:15 -06:00
|
|
|
.fields-group
|
2019-06-06 20:39:24 -05:00
|
|
|
= f.input :setting_aggregate_reblogs, as: :boolean, wrapper: :with_label, recommended: true
|
2019-02-02 12:18:15 -06:00
|
|
|
|
2019-06-06 20:39:24 -05:00
|
|
|
%h4= t 'preferences.posting_defaults'
|
2017-10-01 03:52:39 -05:00
|
|
|
|
2018-10-16 07:07:54 -05:00
|
|
|
.fields-row
|
|
|
|
.fields-group.fields-row__column.fields-row__column-6
|
2019-06-06 20:39:24 -05: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 07:07:54 -05:00
|
|
|
.fields-group.fields-row__column.fields-row__column-6
|
2019-06-06 20:39:24 -05:00
|
|
|
= f.input :setting_default_language, collection: [nil] + filterable_languages.sort, wrapper: :with_label, label_method: lambda { |locale| locale.nil? ? I18n.t('statuses.language_detection') : human_locale(locale) }, required: false, include_blank: false, hint: false
|
2017-10-01 03:52:39 -05:00
|
|
|
|
2019-05-25 14:27:00 -05:00
|
|
|
.fields-group
|
2019-06-06 20:39:24 -05:00
|
|
|
= f.input :setting_default_sensitive, as: :boolean, wrapper: :with_label
|
2019-05-25 14:27:00 -05:00
|
|
|
|
2018-09-18 09:45:58 -05:00
|
|
|
.fields-group
|
2019-06-06 20:39:24 -05:00
|
|
|
= f.input :setting_show_application, as: :boolean, wrapper: :with_label, recommended: true
|
2017-04-11 09:10:16 -05:00
|
|
|
|
2019-06-06 20:39:24 -05:00
|
|
|
%h4= t 'preferences.public_timelines'
|
2018-12-09 06:03:01 -06:00
|
|
|
|
2017-04-17 05:14:03 -05:00
|
|
|
.fields-group
|
2019-06-06 20:39:24 -05:00
|
|
|
= f.input :chosen_languages, collection: filterable_languages.sort, 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'
|
2017-04-17 05:14:03 -05:00
|
|
|
|
2016-10-13 19:28:49 -05:00
|
|
|
.actions
|
2016-11-15 16:02:57 -06:00
|
|
|
= f.button :button, t('generic.save_changes'), type: :submit
|