Couple missing translations

This commit is contained in:
Eric Bailey
2025-04-28 15:41:19 -05:00
parent 5c12f598a6
commit 6c79f2efaf
2 changed files with 9 additions and 5 deletions
@@ -216,7 +216,7 @@ export function Disable() {
{state.error && <Admonition type="error">{state.error}</Admonition>}
<Button
label={_(msg`Disable 2FAVerify`)}
label={_(msg`Disable 2FA`)}
size="large"
variant="solid"
color="primary"
@@ -98,13 +98,15 @@ export function Enable() {
<View style={[a.gap_sm, gtPhone && [a.flex_row_reverse]]}>
<Button
label={_(msg`Send verification email`)}
label={_(msg`Enable`)}
size="large"
variant="solid"
color="primary"
onPress={handleManageEmail2FA}
disabled={state.status === 'pending'}>
<ButtonText>Enable</ButtonText>
<ButtonText>
<Trans>Enable</Trans>
</ButtonText>
<ButtonIcon
position="right"
icon={
@@ -117,12 +119,14 @@ export function Enable() {
/>
</Button>
<Button
label={_(msg`Send verification email`)}
label={_(msg`Cancel`)}
size="large"
variant="solid"
color="secondary"
onPress={() => control.close()}>
<ButtonText>Cancel</ButtonText>
<ButtonText>
<Trans>Cancel</Trans>
</ButtonText>
</Button>
</View>
</View>