add english translations for login

pull/1/head
ansuz 2016-12-16 15:21:37 +01:00
parent f13eb28252
commit 2ee5ef2289
1 changed files with 16 additions and 4 deletions

View File

@ -110,10 +110,6 @@ define(function () {
out.okButton = 'OK (enter)';
out.cancelButton = 'Cancel (esc)';
out.loginText = '<p>Your username and password are used to generate a unique key which is never known by our server.</p>\n' +
'<p>Be careful not to forget your credentials, as they are impossible to recover</p>';
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 = [
'<h1 id="warning">WARNING</h1>',
'<p>Cryptpad stores your personal information in an encrypted realtime document, as it does with all other types of realtime documents.</p>',
'<p>Your username and password are never sent to the server in an unencrypted form.</p>',
'<p>As such, if you forget your username or password, there is absolutely nothing that we can do to recover your lost information.</p>',
'<p><strong>Make sure you do not forget your username and password</strong></p>',
].join('\n');
out.loginText = '<p>Your username and password are used to generate a unique key which is never known by our server.</p>\n' +
'<p>Be careful not to forget your credentials, as they are impossible to recover</p>';
// index.html
out.main_p1 = 'CryptPad is the <strong>zero knowledge</strong> 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 <a href="https://en.wikipedia.org/wiki/Fragment_identifier">fragment identifier</a> 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.';