{{ 'notifications.delivery.title' | translate }}

{{ 'notifications.delivery.description' | translate }}

{{ 'notifications.enable.label' | translate }}

{{ 'notifications.enable.description' | translate }}

{{ 'notifications.showPreview.label' | translate }}

{{ 'notifications.showPreview.description' | translate }}

{{ 'notifications.respectBusy.label' | translate }}

{{ 'notifications.respectBusy.description' | translate }}

{{ 'notifications.serverOverrides.title' | translate }}

{{ 'notifications.serverOverrides.description' | translate }}

@if (rooms().length === 0) {
{{ 'notifications.serverOverrides.empty' | translate }}
} @else {
@for (room of rooms(); track trackRoom($index, room)) {

{{ room.name }}

@if (roomUnreadCount(room.id) > 0) { {{ 'notifications.serverOverrides.unread' | translate: { count: formatUnreadCount(roomUnreadCount(room.id)) } }} }

{{ room.description || ('notifications.serverOverrides.defaultRoomDescription' | translate) }}

{{ 'notifications.channels.title' | translate }}

{{ 'notifications.channels.mutedHint' | translate }}

@for (channel of textChannels(room); track channel.id) {
# {{ channel.name }} @if (channelUnreadCount(room.id, channel.id) > 0) { {{ formatUnreadCount(channelUnreadCount(room.id, channel.id)) }} }
}
}
}