about summary refs log tree commit diff
path: root/src/view/com/lightbox/Lightbox.tsx
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-02-14 11:06:37 +0900
committerMinseo Lee <itoupluk427@gmail.com>2024-02-14 11:06:37 +0900
commit3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159 (patch)
treeef4c3ae654f5be2708aaff1063994b4e7048ca53 /src/view/com/lightbox/Lightbox.tsx
parent836cff306e3485f894cba7c7a4245178745bbfa5 (diff)
downloadvoidsky-3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159.tar.zst
Mark more texts for localization
Diffstat (limited to 'src/view/com/lightbox/Lightbox.tsx')
-rw-r--r--src/view/com/lightbox/Lightbox.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx
index 2ee5b8d59..5bab643ca 100644
--- a/src/view/com/lightbox/Lightbox.tsx
+++ b/src/view/com/lightbox/Lightbox.tsx
@@ -78,9 +78,9 @@ function LightboxFooter({imageIndex}: {imageIndex: number}) {
 
       try {
         await saveImageToMediaLibrary({uri})
-        Toast.show('Saved to your camera roll.')
+        Toast.show(_(msg`Saved to your camera roll.`))
       } catch (e: any) {
-        Toast.show(`Failed to save image: ${String(e)}`)
+        Toast.show(_(msg`Failed to save image: ${String(e)}`))
       }
     },
     [permissionResponse, requestPermission, _],