refactor(i18n): reuse login.login_button instead of new login.login alias

login.login duplicated login.login_button (both 'Log In'). Point the TV
password modal at the existing key and drop the redundant source key.
Addresses CodeRabbit (en.json:29).
This commit is contained in:
Gauvino
2026-06-01 13:06:03 +02:00
parent f325d04666
commit 59c5195120
3 changed files with 3 additions and 5 deletions

View File

@@ -280,7 +280,7 @@ export const TVPasswordEntryModal: React.FC<TVPasswordEntryModalProps> = ({
<View style={styles.buttonContainer}>
<TVSubmitButton
onPress={handleSubmit}
label={t("login.login")}
label={t("login.login_button")}
loading={isLoading}
disabled={!password}
/>