diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-02-14 11:06:37 +0900 |
---|---|---|
committer | Minseo Lee <itoupluk427@gmail.com> | 2024-02-14 11:06:37 +0900 |
commit | 3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159 (patch) | |
tree | ef4c3ae654f5be2708aaff1063994b4e7048ca53 /src/view/com/modals/DeleteAccount.tsx | |
parent | 836cff306e3485f894cba7c7a4245178745bbfa5 (diff) | |
download | voidsky-3f5bdd8be37efbe3bf7b1b60bea2bfa4e32aa159.tar.zst |
Mark more texts for localization
Diffstat (limited to 'src/view/com/modals/DeleteAccount.tsx')
-rw-r--r-- | src/view/com/modals/DeleteAccount.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx index 40d78cfe0..2301e7a66 100644 --- a/src/view/com/modals/DeleteAccount.tsx +++ b/src/view/com/modals/DeleteAccount.tsx @@ -173,7 +173,7 @@ export function Component({}: {}) { </Text> <TextInput style={[styles.textInput, pal.borderDark, pal.text, styles.mb20]} - placeholder="Confirmation code" + placeholder={_(msg`Confirmation code`)} placeholderTextColor={pal.textLight.color} keyboardAppearance={theme.colorScheme} value={confirmCode} @@ -192,7 +192,7 @@ export function Component({}: {}) { </Text> <TextInput style={[styles.textInput, pal.borderDark, pal.text]} - placeholder="Password" + placeholder={_(msg`Password`)} placeholderTextColor={pal.textLight.color} keyboardAppearance={theme.colorScheme} secureTextEntry @@ -228,7 +228,7 @@ export function Component({}: {}) { onPress={onCancel} accessibilityRole="button" accessibilityLabel={_(msg`Cancel account deletion`)} - accessibilityHint="Exits account deletion process" + accessibilityHint={_(msg`Exits account deletion process`)} onAccessibilityEscape={onCancel}> <Text type="button-lg" style={pal.textLight}> <Trans context="action">Cancel</Trans> |