diff --git a/plugins/chat/assets/javascripts/discourse/templates/components/chat-channel-settings-view.hbs b/plugins/chat/assets/javascripts/discourse/templates/components/chat-channel-settings-view.hbs index 26c7cd45152..875e816ec05 100644 --- a/plugins/chat/assets/javascripts/discourse/templates/components/chat-channel-settings-view.hbs +++ b/plugins/chat/assets/javascripts/discourse/templates/components/chat-channel-settings-view.hbs @@ -6,7 +6,9 @@
{{#if this.savedMuted}} - ✓ {{i18n "saved"}} + + {{d-icon "check"}} {{i18n "saved"}} + {{/if}}
@@ -19,7 +21,9 @@
{{#if this.savedDesktopNotificationLevel}} - ✓ {{i18n "saved"}} + + {{d-icon "check"}} {{i18n "saved"}} + {{/if}}
@@ -31,7 +35,9 @@
{{#if this.savedMobileNotificationLevel}} - ✓ {{i18n "saved"}} + + {{d-icon "check"}} {{i18n "saved"}} + {{/if}}
diff --git a/plugins/chat/assets/stylesheets/common/chat-channel-info.scss b/plugins/chat/assets/stylesheets/common/chat-channel-info.scss index e6c448ab4ab..67985b146b5 100644 --- a/plugins/chat/assets/stylesheets/common/chat-channel-info.scss +++ b/plugins/chat/assets/stylesheets/common/chat-channel-info.scss @@ -46,6 +46,10 @@ .channel-settings-view__saved { color: var(--success); padding-left: 0.5rem; + + .d-icon-check { + margin-right: 0.25rem; + } } .channel-settings-view__desktop-notification-level-selector, diff --git a/plugins/chat/config/locales/client.en.yml b/plugins/chat/config/locales/client.en.yml index d987b6d32f9..af7167e0520 100644 --- a/plugins/chat/config/locales/client.en.yml +++ b/plugins/chat/config/locales/client.en.yml @@ -46,6 +46,10 @@ en: leave_channel: "Leave channel" join: "Join" leave: "Leave" + save_label: + mute_channel: "Mute channel preference saved" + desktop_notification: "Desktop notification preference saved" + mobile_notification: "Mobile push notification preference saved" channel_archive: title: "Archive Channel" instructions: "

Archiving a channel puts it into read-only mode and moves all messages from the channel into a new or existing topic. No new messages can be sent, and no existing messages can be edited or deleted.

Are you sure you want to archive the %{channelTitle} channel?

"