MESSENGER-3157 third notification settings option

This commit is contained in:
Arnfried Griesert
2023-03-07 13:28:09 +00:00
committed by Frank Rotermund
parent a50402d361
commit 89f8644abc
10 changed files with 49 additions and 11 deletions
@@ -32,11 +32,20 @@ extension RoomNotificationState {
var title: String {
switch self {
case .all:
return VectorL10n.roomNotifsSettingsAllMessages
return BWIL10n.roomNotifsSettingsAllMessages
case .mentionsAndKeywordsOnly:
return VectorL10n.roomNotifsSettingsMentionsAndKeywords
case .mute:
return VectorL10n.roomNotifsSettingsNone
return BWIL10n.roomNotifsSettingsNone
}
}
var subtitle: String {
switch self {
case .all:
return BWIL10n.roomNotifsSettingsAllDescription
default:
return ""
}
}
}