Skip to content

Commit

Permalink
Merge pull request #2694 from myxmaster/replace_passphrase_with_password
Browse files Browse the repository at this point in the history
Replace passphrase with password
  • Loading branch information
kaloudis authored Jan 2, 2025
2 parents 20cf230 + 7fadbc5 commit 474c2fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,8 @@
"views.LNDConnectConfigQRScanner.error": "Error fetching lndconnect config",
"views.LncQRScanner.error": "Error parsing LNC config",
"views.LNDHubQRScanner.text": "Scan a LNDHub or Blue Wallet QR code",
"views.Lockscreen.incorrect": "Incorrect Passphrase",
"views.Lockscreen.enterPassphrase": " Enter Passphrase",
"views.Lockscreen.incorrectPassword": "Incorrect Password",
"views.Lockscreen.enterPassword": " Enter Password",
"views.Lockscreen.login": "Log In",
"views.Lockscreen.pin": "Enter PIN",
"views.Lockscreen.incorrectPin": "Incorrect PIN",
Expand Down
6 changes: 2 additions & 4 deletions views/Lockscreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ export default class Lockscreen extends React.Component<
let incorrect = '';

if (passphrase) {
incorrect = localeString('views.Lockscreen.incorrect');
incorrect = localeString('views.Lockscreen.incorrectPassword');
} else {
incorrect = localeString('views.Lockscreen.incorrectPin');
}
Expand Down Expand Up @@ -441,9 +441,7 @@ export default class Lockscreen extends React.Component<
color: themeColor('text')
}}
>
{localeString(
'views.Lockscreen.enterPassphrase'
)}
{localeString('views.Lockscreen.enterPassword')}
</Text>
</View>
<View style={styles.inputContainer}>
Expand Down

0 comments on commit 474c2fc

Please sign in to comment.