diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-14 19:18:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 19:18:08 +0100 |
commit | 08836ecbec9d47025fb1474ab772102df4ab0642 (patch) | |
tree | ad57b4963cfc01c8261825eadabce3cd9b0d18ab /src/view/shell/desktop/LeftNav.tsx | |
parent | 6b2635c87027331f82e0bb79b743f870458872ae (diff) | |
download | voidsky-08836ecbec9d47025fb1474ab772102df4ab0642.tar.zst |
[🐴] use "Chats" instead of "Messages" (#4013)
* use "Chats" instead of "Messages" * chats to chat * use messages in the header
Diffstat (limited to 'src/view/shell/desktop/LeftNav.tsx')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index b1f58afed..c0034e7be 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -341,7 +341,7 @@ export function DesktopLeftNav() { count={numUnreadMessages.numUnread} icon={<Message style={pal.text} width={iconWidth} />} iconFilled={<MessageFilled style={pal.text} width={iconWidth} />} - label={_(msg`Messages`)} + label={_(msg`Chat`)} /> )} <NavItem |