about summary refs log tree commit diff
path: root/src/components/Menu/index.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-03-19 12:29:57 -0700
committerPaul Frazee <pfrazee@gmail.com>2024-03-19 12:29:57 -0700
commit9e4f81b156456d96ab22e3c5dc0e0c66929c7bd0 (patch)
tree3c789effa60a94dc524a530ddf1e2b8950942906 /src/components/Menu/index.tsx
parentdac73cbeea3c346c255eec15d08bd9c585263bec (diff)
parent14982b93938c5b4141408e9b0887b261469eed4f (diff)
downloadvoidsky-9e4f81b156456d96ab22e3c5dc0e0c66929c7bd0.tar.zst
Merge branch 'quiple-patch-3' into main
Diffstat (limited to 'src/components/Menu/index.tsx')
-rw-r--r--src/components/Menu/index.tsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/Menu/index.tsx b/src/components/Menu/index.tsx
index 9be9dd86b..051e95b95 100644
--- a/src/components/Menu/index.tsx
+++ b/src/components/Menu/index.tsx
@@ -17,7 +17,7 @@ import {
   ItemIconProps,
 } from '#/components/Menu/types'
 import {Button, ButtonText} from '#/components/Button'
-import {msg} from '@lingui/macro'
+import {Trans, msg} from '@lingui/macro'
 import {useLingui} from '@lingui/react'
 import {isNative} from 'platform/detection'
 
@@ -209,7 +209,9 @@ function Cancel() {
       variant="ghost"
       color="secondary"
       onPress={() => control.close()}>
-      <ButtonText>Cancel</ButtonText>
+      <ButtonText>
+        <Trans>Cancel</Trans>
+      </ButtonText>
     </Button>
   )
 }