diff --git a/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java b/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java
index 3fa4cb9e..48622121 100644
--- a/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java
+++ b/app/src/main/java/org/shadowice/flocke/andotp/Activities/MainActivity.java
@@ -365,13 +365,13 @@ public class MainActivity extends BaseActivity
adapter.saveEntries();
} else if (settings.getEncryption() == Constants.EncryptionType.PASSWORD) {
encryptionType = Constants.EncryptionType.PASSWORD;
- authenticate(R.string.auth_msg_confirm,true);
+ authenticate(R.string.auth_msg_confirm_encryption,true);
}
} else if (key.equals(getString(R.string.settings_key_auth)) ||
key.equals(getString(R.string.settings_key_auth_password_pbkdf2)) ||
key.equals(getString(R.string.settings_key_auth_pin_pbkdf2))) {
if (encryptionType == Constants.EncryptionType.PASSWORD)
- authenticate(R.string.auth_msg_confirm, true);
+ authenticate(R.string.auth_msg_confirm_encryption, true);
}
}
diff --git a/app/src/main/res/values/strings_auth.xml b/app/src/main/res/values/strings_auth.xml
index b4d8799d..bdba98ae 100644
--- a/app/src/main/res/values/strings_auth.xml
+++ b/app/src/main/res/values/strings_auth.xml
@@ -8,7 +8,8 @@
Please authenticate to start andOTP!
- Please confirm your authentication!
+ Please confirm your authentication to update the
+ encryption key!
Please set a password in the settings!