diff options
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBar.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBar.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index 028b194c3..855ba21b2 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -200,7 +200,7 @@ export function BottomBar({navigation}: BottomTabBarProps) { accessibilityLabel={_(msg`Chat`)} accessibilityHint={ numUnreadMessages.count > 0 - ? `${numUnreadMessages.numUnread} unread` + ? _(msg`${numUnreadMessages.numUnread} unread items`) : '' } /> @@ -227,7 +227,7 @@ export function BottomBar({navigation}: BottomTabBarProps) { accessibilityHint={ numUnreadNotifications === '' ? '' - : `${numUnreadNotifications} unread` + : _(msg`${numUnreadNotifications} unread items`) } /> <Btn |