summaryrefslogtreecommitdiffstats
path: root/settings/js/personal.js
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2017-04-26 13:19:15 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-04-28 23:41:36 -0300
commit9a366dbe2e84bad7d6c40f284794aa6f34c2b0f5 (patch)
treee91741f25ad76c888946253d0e51ab57495dffe1 /settings/js/personal.js
parent08a33cc4751eebc4fc1384187677efac3ac6b1d0 (diff)
downloadnextcloud-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.js3
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');
});