Skip to content

Commit 530a19e

Browse files
Merge pull request nextcloud#14626 from nextcloud/simplify-e2ee-dialog-enter-passphrase-info-text
Improve E2EE dialog description for better clarity
2 parents 030838b + e814e47 commit 530a19e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/main/java/com/owncloud/android/ui/dialog/setupEncryption/SetupEncryptionDialogFragment.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ class SetupEncryptionDialogFragment : DialogFragment(), Injectable {
402402
binding.encryptionStatus.setText(R.string.common_error)
403403
}
404404
} else if (privateKey.isNotEmpty()) {
405-
binding.encryptionStatus.setText(R.string.end_to_end_encryption_enter_password)
405+
binding.encryptionStatus.setText(R.string.end_to_end_encryption_enter_passphrase_to_access_files)
406406
binding.encryptionPasswordInputContainer.visibility = View.VISIBLE
407407
positiveButton?.visibility = View.VISIBLE
408408
} else {

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@
846846
<string name="end_to_end_encryption_wrong_password">Error while decrypting. Wrong password?</string>
847847
<string name="end_to_end_encryption_decrypting">Decrypting…</string>
848848
<string name="end_to_end_encryption_retrieving_keys">Retrieving keys…</string>
849-
<string name="end_to_end_encryption_enter_password">Please enter password to decrypt private key.</string>
849+
<string name="end_to_end_encryption_enter_passphrase_to_access_files">Enter your passphrase to access your files</string>
850850
<string name="end_to_end_encryption_generating_keys">Generating new keys…</string>
851851
<string name="end_to_end_encryption_keywords_description">All 12 words together make a very strong password, letting only you view and make use of your encrypted files. Please write it down and keep it somewhere safe.</string>
852852
<string name="end_to_end_encryption_title">Set up encryption</string>

0 commit comments

Comments
 (0)