1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-08 23:07:32 +02:00

reencrypt -> re-encrypt

This commit is contained in:
Helmut K. C. Tessarek
2020-03-13 20:52:28 -04:00
parent e399474b4e
commit 1ee88618e8
5 changed files with 11 additions and 11 deletions

View File

@@ -28,13 +28,13 @@ shared.refreshStats = async function(comp) {
};
shared.reencryptData = async function() {
const ok = confirm(_('Please confirm that you would like to reencrypt your complete database.'));
const ok = confirm(_('Please confirm that you would like to re-encrypt your complete database.'));
if (!ok) return;
await BaseItem.forceSyncAll();
reg.waitForSyncFinishedThenSync();
Setting.setValue('encryption.shouldReencrypt', Setting.SHOULD_REENCRYPT_NO);
alert(_('Your data is going to be reencrypted and synced again.'));
alert(_('Your data is going to be re-encrypted and synced again.'));
};
shared.dontReencryptData = function() {