Couple missing translations
This commit is contained in:
@@ -216,7 +216,7 @@ export function Disable() {
|
|||||||
{state.error && <Admonition type="error">{state.error}</Admonition>}
|
{state.error && <Admonition type="error">{state.error}</Admonition>}
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
label={_(msg`Disable 2FAVerify`)}
|
label={_(msg`Disable 2FA`)}
|
||||||
size="large"
|
size="large"
|
||||||
variant="solid"
|
variant="solid"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
|||||||
@@ -98,13 +98,15 @@ export function Enable() {
|
|||||||
|
|
||||||
<View style={[a.gap_sm, gtPhone && [a.flex_row_reverse]]}>
|
<View style={[a.gap_sm, gtPhone && [a.flex_row_reverse]]}>
|
||||||
<Button
|
<Button
|
||||||
label={_(msg`Send verification email`)}
|
label={_(msg`Enable`)}
|
||||||
size="large"
|
size="large"
|
||||||
variant="solid"
|
variant="solid"
|
||||||
color="primary"
|
color="primary"
|
||||||
onPress={handleManageEmail2FA}
|
onPress={handleManageEmail2FA}
|
||||||
disabled={state.status === 'pending'}>
|
disabled={state.status === 'pending'}>
|
||||||
<ButtonText>Enable</ButtonText>
|
<ButtonText>
|
||||||
|
<Trans>Enable</Trans>
|
||||||
|
</ButtonText>
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
position="right"
|
position="right"
|
||||||
icon={
|
icon={
|
||||||
@@ -117,12 +119,14 @@ export function Enable() {
|
|||||||
/>
|
/>
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
label={_(msg`Send verification email`)}
|
label={_(msg`Cancel`)}
|
||||||
size="large"
|
size="large"
|
||||||
variant="solid"
|
variant="solid"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
onPress={() => control.close()}>
|
onPress={() => control.close()}>
|
||||||
<ButtonText>Cancel</ButtonText>
|
<ButtonText>
|
||||||
|
<Trans>Cancel</Trans>
|
||||||
|
</ButtonText>
|
||||||
</Button>
|
</Button>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|||||||
Reference in New Issue
Block a user