diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-11-05 16:48:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-05 16:48:36 +0000 |
commit | b0c5a37daabc04570d33776de6c13be87a795491 (patch) | |
tree | 1b14b115368ff28b677ae2a9313b2255e2db0030 /src/view/shell/bottom-bar/BottomBar.tsx | |
parent | 97721163439765f6f33bf850c657c30f452e2c48 (diff) | |
download | voidsky-b0c5a37daabc04570d33776de6c13be87a795491.tar.zst |
Improve accessibility for navigation on web (#6120)
* improve accessibility for bottom bar tabs * improve a11y for left nav * group main content into <main> * use flex_1 rather than absoluteFill
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 |