From 7a4895757f1176b967b8f5ded62b2be41492c0ee Mon Sep 17 00:00:00 2001 From: yflory Date: Tue, 2 Jul 2019 14:45:50 +0200 Subject: [PATCH] Remove XXX --- www/admin/inner.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/admin/inner.js b/www/admin/inner.js index e83efd491..e2edb9ad5 100644 --- a/www/admin/inner.js +++ b/www/admin/inner.js @@ -232,11 +232,11 @@ define([ create['support-init'] = function () { var $div = makeBlock('support-init'); if (!supportKey) { - $div.append(h('p', Messages.admin_supportInitHelp || "Your server is not configured to have a support mailbox. If you want a support mailbox to receive messages from your users, you should ask your server administrator to run the script located in './scripts/generate-admin-keys.js', store the public key in the 'config.js' file, and send you the private key.")); // XXX + $div.append(h('p', Messages.admin_supportInitHelp)); return $div; } if (!APP.privateKey || !checkAdminKey(APP.privateKey)) { - $div.append(h('p', Messages.admin_supportInitPrivate || "Your CryptPad instance is configured to use a support mailbox but your account doesn't have the correct private key to access it. Please use the following form to add or update the private key to your account")); // XXX + $div.append(h('p', Messages.admin_supportInitPrivate)); var error = h('div.cp-admin-support-error'); var input = h('input.cp-admin-add-private-key');