Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolkan Gezer <volkangezer@gmail.com>2014-01-15 21:36:33 +0400
committerBjoern Schiessle <schiessle@owncloud.com>2014-01-16 15:23:34 +0400
commitaec0f06501312863fd719f01c72909a80cfa7d38 (patch)
tree756511d8af0064e0f1660b93a59da093884bda16
parentf9e4d0a5e228c8ac24f9942bd62d6cdcb663c41b (diff)
Fix untranslated text when deleting user
This should fix issue #6728
-rw-r--r--settings/js/users.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/users.js b/settings/js/users.js
index 6222c0e70cd..540b849875b 100644
--- a/settings/js/users.js
+++ b/settings/js/users.js
@@ -44,7 +44,7 @@ var UserList = {
// Provide user with option to undo
$('#notification').data('deleteuser', true);
- OC.Notification.showHtml(t('users', 'deleted') + ' ' + escapeHTML(uid) + '<span class="undo">' + t('users', 'undo') + '</span>');
+ OC.Notification.showHtml(t('settings', 'deleted') + ' ' + escapeHTML(uid) + '<span class="undo">' + t('settings', 'undo') + '</span>');
},
/**