about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-09-05 17:29:57 +0300
committerGitHub <noreply@github.com>2025-09-05 07:29:57 -0700
commitc26906e15c72b80f0f4c5b33a42101b53e722071 (patch)
treeaffd3852f0e6e2091a319beb28cc4f463d5b6600
parent0c4b9080207b0ca35a85ffa1e4f6a67189314ac8 (diff)
downloadvoidsky-c26906e15c72b80f0f4c5b33a42101b53e722071.tar.zst
add translation context for "saved" (#8982)
-rw-r--r--src/view/shell/Drawer.tsx2
-rw-r--r--src/view/shell/desktop/LeftNav.tsx7
2 files changed, 7 insertions, 2 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx
index 10817407f..4a797e578 100644
--- a/src/view/shell/Drawer.tsx
+++ b/src/view/shell/Drawer.tsx
@@ -568,7 +568,7 @@ let BookmarksMenuItem = ({
           <Bookmark style={[t.atoms.text]} width={iconWidth} />
         )
       }
-      label={_(msg`Saved`)}
+      label={_(msg({message: 'Saved', context: 'link to bookmarks screen'}))}
       onPress={onPress}
     />
   )
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx
index c1e429c73..5c22198c8 100644
--- a/src/view/shell/desktop/LeftNav.tsx
+++ b/src/view/shell/desktop/LeftNav.tsx
@@ -760,7 +760,12 @@ export function DesktopLeftNav() {
                 width={NAV_ICON_WIDTH}
               />
             }
-            label={_(msg`Saved`)}
+            label={_(
+              msg({
+                message: 'Saved',
+                context: 'link to bookmarks screen',
+              }),
+            )}
           />
           <NavItem
             href={currentAccount ? makeProfileLink(currentAccount) : '/'}