diff --git a/packages/legacy/core/App/localization/en/index.ts b/packages/legacy/core/App/localization/en/index.ts index 6c4126b938..caf9da17dd 100644 --- a/packages/legacy/core/App/localization/en/index.ts +++ b/packages/legacy/core/App/localization/en/index.ts @@ -325,8 +325,6 @@ const translation = { "Welcome": "Welcome", "Notification": "Notification", "Notifications": "Notifications", - "OneNotification": "1 Notification", - "CountNotifications": "{{ count }} Notifications", "NoNewUpdates": "You have no new notifications.", "NoCredentials": "You have no credentials in your wallet.", "SeeAll": "See all", diff --git a/packages/legacy/core/App/localization/fr/index.ts b/packages/legacy/core/App/localization/fr/index.ts index bedd832fff..c4b73dc11d 100644 --- a/packages/legacy/core/App/localization/fr/index.ts +++ b/packages/legacy/core/App/localization/fr/index.ts @@ -324,8 +324,6 @@ const translation = { "Welcome": "Bienvenue", "Notification": "Notification", "Notifications": "Notifications", - "OneNotification": "1 Notification", - "CountNotifications": "{{ count }} Notification", "NoNewUpdates": "Vous n'avez pas de nouvelles notifications.", "NoCredentials": "Vous n'avez pas de justificatifs dans votre portefeuille.", "SeeAll": "Voir tout", diff --git a/packages/legacy/core/App/navigators/TabStack.tsx b/packages/legacy/core/App/navigators/TabStack.tsx index dccaedcc08..079edb1717 100644 --- a/packages/legacy/core/App/navigators/TabStack.tsx +++ b/packages/legacy/core/App/navigators/TabStack.tsx @@ -78,9 +78,7 @@ const TabStack: React.FC = () => { ), tabBarShowLabel: false, - tabBarAccessibilityLabel: `${t('TabStack.Home')} (${ - total === 1 ? t('Home.OneNotification') : t('Home.CountNotifications', { count: total || 0 }) - })`, + tabBarAccessibilityLabel: `${t('TabStack.Home')} (${total ?? 0})`, tabBarTestID: testIdWithKey(t('TabStack.Home')), tabBarBadge: total || undefined, tabBarBadgeStyle: {