Merge pull request #8597 from owncloud/l10n-fix-typo
fix typo encryption
This commit is contained in:
commit
3daaf6ba4f
1 changed files with 2 additions and 2 deletions
|
@ -321,7 +321,7 @@ OC.Encryption = {
|
|||
},
|
||||
|
||||
deleteKeys: function() {
|
||||
var message = t('settings', 'Delete encryptin keys permanently.');
|
||||
var message = t('settings', 'Delete encryption keys permanently.');
|
||||
OC.Encryption.msg.start('#restoreBackupKeys .msg', message);
|
||||
$.post('ajax/deletekeys.php', null, function(data) {
|
||||
if (data.status === "error") {
|
||||
|
@ -335,7 +335,7 @@ OC.Encryption = {
|
|||
},
|
||||
|
||||
restoreKeys: function() {
|
||||
var message = t('settings', 'Restore encryptin keys.');
|
||||
var message = t('settings', 'Restore encryption keys.');
|
||||
OC.Encryption.msg.start('#restoreBackupKeys .msg', message);
|
||||
$.post('ajax/restorekeys.php', {}, function(data) {
|
||||
if (data.status === "error") {
|
||||
|
|
Loading…
Reference in a new issue