Copy adjustments

This commit is contained in:
Mo Bitar
2019-12-04 10:00:11 -06:00
parent 4d00637000
commit 23464434b7
4 changed files with 7 additions and 7 deletions

View File

@@ -381,9 +381,9 @@ class AccountMenu {
$scope.encryptionStatusString = function() {
if(!authManager.offline()) {
return "End-to-end encryption is enabled. Your data is encrypted before syncing to your private account.";
return "End-to-end encryption is enabled. Your data is encrypted on your device first, then synced to your private cloud.";
} else if(passcodeManager.hasPasscode()) {
return "Encryption is enabled. Your data is encrypted using your passcode before saving to your device storage.";
return "Encryption is enabled. Your data is encrypted using your passcode before it is saved to your device storage.";
} else {
return "Encryption is not enabled. Sign in, register, or add a passcode lock to enable encryption.";
}

View File

@@ -125,7 +125,7 @@
.sk-button.info{"ng-click" => "addPasscodeClicked(); $event.stopPropagation();"}
.sk-label Add Passcode
%p.sk-p Add an app passcode to lock the app and encrypt on-device key storage.
%p.sk-p Add a passcode to lock the application and encrypt on-device key storage.
%div{"ng-if" => "!canAddPasscode"}
%p.sk-p Adding a passcode is not supported in temporary sessions. Please sign out, then sign back in with the "Stay signed in" option checked.

View File

@@ -63257,9 +63257,9 @@ function () {
$scope.encryptionStatusString = function () {
if (!authManager.offline()) {
return "End-to-end encryption is enabled. Your data is encrypted before syncing to your private account.";
return "End-to-end encryption is enabled. Your data is encrypted on your device first, then synced to your private cloud.";
} else if (passcodeManager.hasPasscode()) {
return "Encryption is enabled. Your data is encrypted using your passcode before saving to your device storage.";
return "Encryption is enabled. Your data is encrypted using your passcode before it is saved to your device storage.";
} else {
return "Encryption is not enabled. Sign in, register, or add a passcode lock to enable encryption.";
}
@@ -78940,7 +78940,7 @@ if (globalScope) {
"<div class='sk-label'>Add Passcode</div>\n" +
"</div>\n" +
"</div>\n" +
"<p class='sk-p'>Add an app passcode to lock the app and encrypt on-device key storage.</p>\n" +
"<p class='sk-p'>Add a passcode to lock the application and encrypt on-device key storage.</p>\n" +
"</div>\n" +
"<div ng-if='!canAddPasscode'>\n" +
"<p class='sk-p'>Adding a passcode is not supported in temporary sessions. Please sign out, then sign back in with the \"Stay signed in\" option checked.</p>\n" +

File diff suppressed because one or more lines are too long