diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-03-19 12:29:57 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-03-19 12:29:57 -0700 |
commit | 9e4f81b156456d96ab22e3c5dc0e0c66929c7bd0 (patch) | |
tree | 3c789effa60a94dc524a530ddf1e2b8950942906 /src/components/Menu/index.tsx | |
parent | dac73cbeea3c346c255eec15d08bd9c585263bec (diff) | |
parent | 14982b93938c5b4141408e9b0887b261469eed4f (diff) | |
download | voidsky-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.tsx | 6 |
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> ) } |