From 376d34b21030cc9d36641a9976a7a68e4e6b394a Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 19 Oct 2016 16:01:58 +0200 Subject: [PATCH] Don't attempt to translate variables * stings should be translated (if applicable) where they happen * ChangePasswordController returns all its fixed strings already translated * local user backend does not throw HintException at all Signed-off-by: Arthur Schiwon --- settings/js/users/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/users/users.js b/settings/js/users/users.js index ee813b20e12ea..80556e359559b 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -685,7 +685,7 @@ $(document).ready(function () { if(!_.isEmpty(result.data.hint)) { message += "
" + _.escape(result.data.hint); } - OC.Notification.showTemporary(t('admin', message), {isHTML: true}); + OC.Notification.showTemporary(message, {isHTML: true}); } } ).fail(blurFunction);