diff --git a/lib/shared/thread-settings-notifications-utils.js b/lib/shared/thread-settings-notifications-utils.js --- a/lib/shared/thread-settings-notifications-utils.js +++ b/lib/shared/thread-settings-notifications-utils.js @@ -18,7 +18,7 @@ const threadSettingsNotificationsCopy = { BANNER_NOTIFS: 'Banner notifs', - BADGE_COUNT: 'Badge count', + NOTIF_COUNT: 'Notif count', IN_FOCUSED_TAB: 'Lives in Focused tab', IN_BACKGROUND_TAB: 'Lives in Background tab', FOCUSED: 'Focused (enabled)', diff --git a/native/chat/settings/thread-settings-notifications.react.js b/native/chat/settings/thread-settings-notifications.react.js --- a/native/chat/settings/thread-settings-notifications.react.js +++ b/native/chat/settings/thread-settings-notifications.react.js @@ -112,7 +112,7 @@ color={badgeCountIconColor} /> - {threadSettingsNotificationsCopy.BADGE_COUNT} + {threadSettingsNotificationsCopy.NOTIF_COUNT} diff --git a/web/modals/threads/notifications/notifications-modal.react.js b/web/modals/threads/notifications/notifications-modal.react.js --- a/web/modals/threads/notifications/notifications-modal.react.js +++ b/web/modals/threads/notifications/notifications-modal.react.js @@ -24,7 +24,7 @@ styleStatementBasedOnValidity: true, }, { - statement: threadSettingsNotificationsCopy.BADGE_COUNT, + statement: threadSettingsNotificationsCopy.NOTIF_COUNT, isStatementValid: true, styleStatementBasedOnValidity: true, }, @@ -42,7 +42,7 @@ styleStatementBasedOnValidity: true, }, { - statement: threadSettingsNotificationsCopy.BADGE_COUNT, + statement: threadSettingsNotificationsCopy.NOTIF_COUNT, isStatementValid: true, styleStatementBasedOnValidity: true, }, @@ -60,7 +60,7 @@ styleStatementBasedOnValidity: true, }, { - statement: threadSettingsNotificationsCopy.BADGE_COUNT, + statement: threadSettingsNotificationsCopy.NOTIF_COUNT, isStatementValid: false, styleStatementBasedOnValidity: true, },