about summary refs log tree commit diff
path: root/src/view/com/lightbox/Lightbox.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-03-19 12:29:22 -0700
committerPaul Frazee <pfrazee@gmail.com>2024-03-19 12:29:22 -0700
commit14982b93938c5b4141408e9b0887b261469eed4f (patch)
tree3c789effa60a94dc524a530ddf1e2b8950942906 /src/view/com/lightbox/Lightbox.tsx
parentdac73cbeea3c346c255eec15d08bd9c585263bec (diff)
parentad43d594c9f63fc85e6927d23cd3f3f21406b002 (diff)
downloadvoidsky-14982b93938c5b4141408e9b0887b261469eed4f.tar.zst
Merge branch 'patch-3' of https://github.com/quiple/social-app into quiple-patch-3
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, _],