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/view/com/modals/ChangePassword.tsx | |
parent | dac73cbeea3c346c255eec15d08bd9c585263bec (diff) | |
parent | 14982b93938c5b4141408e9b0887b261469eed4f (diff) | |
download | voidsky-9e4f81b156456d96ab22e3c5dc0e0c66929c7bd0.tar.zst |
Merge branch 'quiple-patch-3' into main
Diffstat (limited to 'src/view/com/modals/ChangePassword.tsx')
-rw-r--r-- | src/view/com/modals/ChangePassword.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/view/com/modals/ChangePassword.tsx b/src/view/com/modals/ChangePassword.tsx index d8add9794..4badc88aa 100644 --- a/src/view/com/modals/ChangePassword.tsx +++ b/src/view/com/modals/ChangePassword.tsx @@ -137,7 +137,9 @@ export function Component() { <View> <View style={styles.titleSection}> <Text type="title-lg" style={[pal.text, styles.title]}> - {stage !== Stages.Done ? 'Change Password' : 'Password Changed'} + {stage !== Stages.Done + ? _(msg`Change Password`) + : _(msg`Password Changed`)} </Text> </View> @@ -180,7 +182,7 @@ export function Component() { <TextInput testID="codeInput" style={[pal.text, styles.textInput]} - placeholder="Reset code" + placeholder={_(msg`Reset code`)} placeholderTextColor={pal.colors.textLight} value={resetCode} onChangeText={setResetCode} @@ -207,7 +209,7 @@ export function Component() { <TextInput testID="codeInput" style={[pal.text, styles.textInput]} - placeholder="New password" + placeholder={_(msg`New password`)} placeholderTextColor={pal.colors.textLight} onChangeText={setNewPassword} secureTextEntry |