From 2ee5ef22890fc6e310325ab5cf056f10f7439f72 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 16 Dec 2016 15:21:37 +0100 Subject: [PATCH] add english translations for login --- customize.dist/translations/messages.js | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/customize.dist/translations/messages.js b/customize.dist/translations/messages.js index 81c0eb0f8..975b201ea 100644 --- a/customize.dist/translations/messages.js +++ b/customize.dist/translations/messages.js @@ -110,10 +110,6 @@ define(function () { out.okButton = 'OK (enter)'; out.cancelButton = 'Cancel (esc)'; - - out.loginText = '

Your username and password are used to generate a unique key which is never known by our server.

\n' + - '

Be careful not to forget your credentials, as they are impossible to recover

'; - out.forget = "Forget"; // Polls @@ -211,6 +207,22 @@ define(function () { out.fo_moveFolderToChildError = "You can't move a folder into one of its descendants"; out.fo_unableToRestore = "Unable to restore that file to its original location. You can try to move it to a new location."; + // login + out.login_username = "your username"; + out.login_password = "your password"; + out.login_remember = "remember me"; + + out.login_warning = [ + '

WARNING

', + '

Cryptpad stores your personal information in an encrypted realtime document, as it does with all other types of realtime documents.

', + '

Your username and password are never sent to the server in an unencrypted form.

', + '

As such, if you forget your username or password, there is absolutely nothing that we can do to recover your lost information.

', + '

Make sure you do not forget your username and password

', + ].join('\n'); + + out.loginText = '

Your username and password are used to generate a unique key which is never known by our server.

\n' + + '

Be careful not to forget your credentials, as they are impossible to recover

'; + // index.html out.main_p1 = 'CryptPad is the zero knowledge realtime collaborative editor. Encryption carried out in your web browser protects the data from the server, the cloud, and the NSA. The secret encryption key is stored in the URL fragment identifier which is never sent to the server but is available to javascript so by sharing the URL, you give authorization to others who want to participate.';