2016-10-06 20:34:07 +02:00
<div id="notification-settings" class="settings-section" data-name="notifications">
2017-04-26 04:45:56 +02:00
<form class="notification-settings-form">
2019-04-18 03:19:55 +02:00
<div class="notification-reminder tip"> {{ # tr this }} Desktop notifications are triggered for messages that are offscreen when they arrive. Mobile and email notifications are triggered once you have been away from Zulip for a few minutes. {{ / tr }} </div>
2017-04-26 04:45:56 +02:00
2018-03-23 19:47:41 +01:00
<div id="stream-notify-settings">
<h3 class="inline-block"> {{ t "Stream messages" }} </h3>
<div class="alert-notification" id="stream-notify-settings-status"></div>
<p> {{ t "Unless I say otherwise for a particular stream, I want:" }} </p>
2017-04-26 04:45:56 +02:00
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_stream_desktop_notifications"
"is_checked" page_params.enable_stream_desktop_notifications
"label" settings_label.enable_stream_desktop_notifications
"end_content" '<div class="propagate_stream_notifications_change"></div>'}}
2017-04-26 04:45:56 +02:00
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_stream_sounds"
"is_checked" page_params.enable_stream_sounds
"label" settings_label.enable_stream_sounds
"end_content" '<div class="propagate_stream_notifications_change"></div>'}}
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_stream_push_notifications"
"is_checked" page_params.enable_stream_push_notifications
"label" settings_label.enable_stream_push_notifications
2018-08-30 22:45:59 +02:00
"push_notifications_tooltip" true
2018-04-03 10:09:00 +02:00
"end_content" '<div class="propagate_stream_notifications_change"></div>'}}
2017-04-26 04:45:56 +02:00
2017-11-21 05:58:26 +01:00
{{ partial "settings_checkbox"
"setting_name" "enable_stream_email_notifications"
"is_checked" page_params.enable_stream_email_notifications
"label" settings_label.enable_stream_email_notifications
"end_content" '<div class="propagate_stream_notifications_change"></div>'}}
2018-03-23 19:47:41 +01:00
<p class="notification-settings-note">
{{ # tr this }} Change notification settings for individual streams on your <a href="/#streams">Streams page</a>. {{ / tr }}
</p>
</div>
2017-07-05 21:53:30 +02:00
2018-03-23 19:47:41 +01:00
<div id="pm-mention-notify-settings">
2019-04-17 01:31:44 +02:00
<h3 class="inline-block"> {{ t "Private messages, @-mentions, and alert words" }} </h3>
2018-03-23 19:47:41 +01:00
<div class="alert-notification" id="pm-mention-notify-settings-status"></div>
2017-04-26 04:45:56 +02:00
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_desktop_notifications"
"is_checked" page_params.enable_desktop_notifications
"label" settings_label.enable_desktop_notifications}}
2017-04-26 04:45:56 +02:00
2018-09-02 09:45:06 +02:00
{{ partial "settings_checkbox"
"setting_name" "pm_content_in_desktop_notifications"
"is_checked" page_params.pm_content_in_desktop_notifications
"is_parent_setting_enabled" page_params.enable_desktop_notifications
"is_nested" true
"label" settings_label.pm_content_in_desktop_notifications}}
2017-04-26 04:45:56 +02:00
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_sounds"
"is_checked" page_params.enable_sounds
"label" settings_label.enable_sounds}}
2017-04-26 04:45:56 +02:00
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_offline_push_notifications"
"is_checked" page_params.enable_offline_push_notifications
2018-08-30 22:45:59 +02:00
"label" settings_label.enable_offline_push_notifications
"push_notifications_tooltip" true}}
2017-04-26 04:45:56 +02:00
2019-04-17 01:36:06 +02:00
{{ partial "settings_checkbox"
"setting_name" "enable_offline_email_notifications"
"is_checked" page_params.enable_offline_email_notifications
"label" settings_label.enable_offline_email_notifications}}
2018-01-25 02:11:17 +01:00
</div>
2017-04-26 04:45:56 +02:00
2018-01-25 02:11:17 +01:00
<div id="other_notifications">
2018-03-07 23:08:42 +01:00
<h3 class="inline-block"> {{ t "Other notification settings" }} </h3>
<div class="alert-notification" id="other-notify-settings-status"></div>
2018-03-23 19:52:46 +01:00
2019-04-18 03:58:25 +02:00
{{ partial "settings_checkbox"
"setting_name" "enable_online_push_notifications"
"is_checked" page_params.enable_online_push_notifications
"label" settings_label.enable_online_push_notifications
"push_notifications_tooltip" true}}
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "enable_digest_emails"
"is_checked" page_params.enable_digest_emails
"label" settings_label.enable_digest_emails}}
2018-03-23 19:52:46 +01:00
2018-08-24 07:28:51 +02:00
{{ partial "settings_checkbox"
"setting_name" "enable_login_emails"
"is_checked" page_params.enable_login_emails
"label" settings_label.enable_login_emails}}
2018-09-02 20:31:05 +02:00
{{ partial "settings_checkbox"
"setting_name" "message_content_in_email_notifications"
"is_checked" page_params.message_content_in_email_notifications
"label" settings_label.message_content_in_email_notifications}}
2018-01-06 23:30:43 +01:00
2018-03-23 19:52:46 +01:00
{{ partial "settings_checkbox"
2018-04-03 10:09:00 +02:00
"setting_name" "realm_name_in_notifications"
"is_checked" page_params.realm_name_in_notifications
"label" settings_label.realm_name_in_notifications}}
2017-04-26 04:45:56 +02:00
</div>
2016-10-31 23:29:58 +01:00
2018-01-11 21:36:11 +01:00
<label for="notification_sound">
{{ t "Notification sound:" }}
</label>
<div class="input-group {{ # unless enable_sound_select }} control-label-disabled {{ / unless }} ">
<select name="notification_sound" id="notification_sound"
{{ # unless enable_sound_select }}
disabled
{{ / unless }} >
{{ # each page_params .available_notification_sounds }}
<option value=" {{ this }} "> {{ this }} </option>
{{ / each }}
</select>
<a id="play_notification_sound">
{{ t "Play sound" }}
</a>
</div>
</form>
2016-10-05 02:17:42 +02:00
</div>