Implement wrong-password-try-again? flow

This commit is contained in:
Julia Friesel
2018-09-14 07:34:28 +02:00
parent b153f8d0ff
commit 8da8523558
4 changed files with 74 additions and 32 deletions
+7 -3
View File
@@ -3,7 +3,10 @@ export const shared = {
save: 'Save',
errorTitle: 'Error',
successTitle: 'Success',
warning: 'Warning'
warning: 'Warning',
incorrectPassword: 'Password incorrect',
incorrectPasswordMessage: 'That password is incorrect.',
tryAgain: 'Try again'
}
export const settings = {
@@ -52,8 +55,9 @@ export const settings = {
passwordSettings: {
title: 'App password',
explainerDisabled: "Encrypt the app's database with a password. You have to enter the password every time the app is started.",
explainerEnabled: "Your app's data is encrypted with your password.",
deletePassword: "Delete password"
explainerEnabled: "Password protection and database encryption is currently enabled",
deletePassword: "Delete password",
enterCurrent: "Please enter your current password",
}
}