diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2017-04-26 13:19:15 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-28 23:41:36 -0300 |
commit | 9a366dbe2e84bad7d6c40f284794aa6f34c2b0f5 (patch) | |
tree | e91741f25ad76c888946253d0e51ab57495dffe1 /settings/js/personal.js | |
parent | 08a33cc4751eebc4fc1384187677efac3ac6b1d0 (diff) | |
download | nextcloud-server-9a366dbe2e84bad7d6c40f284794aa6f34c2b0f5.tar.gz nextcloud-server-9a366dbe2e84bad7d6c40f284794aa6f34c2b0f5.zip |
add missing translation and other small fixes
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'settings/js/personal.js')
-rw-r--r-- | settings/js/personal.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js index b67211b274a..094fc36ceaf 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -211,13 +211,12 @@ $(document).ready(function () { $(".verify-action").click(function () { var account = $(this); var accountId = $(this).attr('id'); - $.ajax( OC.generateUrl('/settings/users/{account}/verify', {account: accountId}), {method: 'GET'} ).done(function(data) { showVerifyDialog(data.msg, data.code); - account.attr('title', 'Verifying...'); + account.attr('title', t('core', 'Verifying …')); account.attr('src', OC.imagePath('core', 'actions/verifying.svg')); account.removeClass('verify-action'); }); |