summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz
Side-by-side diff
Diffstat (limited to 'frontend/beta/js/Clipperz') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Compact/CompactHeader.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js32
-rw-r--r--frontend/beta/js/Clipperz/PM/Main.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js2
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js2
12 files changed, 42 insertions, 12 deletions
diff --git a/frontend/beta/js/Clipperz/PM/Components/Compact/CompactHeader.js b/frontend/beta/js/Clipperz/PM/Components/Compact/CompactHeader.js
index 14e42a5..9fda202 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Compact/CompactHeader.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Compact/CompactHeader.js
@@ -17,65 +17,65 @@ refer to http://www.clipperz.com.
See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public
License along with Clipperz. If not, see http://www.gnu.org/licenses/.
*/
if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
if (typeof(Clipperz.PM.Components) == 'undefined') { Clipperz.PM.Components = {}; }
if (typeof(Clipperz.PM.Components.Compact) == 'undefined') { Clipperz.PM.Components.Compact = {}; }
Clipperz.PM.Components.Compact.CompactHeader = function(anElement, args) {
Clipperz.PM.Components.Compact.CompactHeader.superclass.constructor.call(this, anElement, args);
this.render();
return this;
};
YAHOO.extendX(Clipperz.PM.Components.Compact.CompactHeader, Clipperz.PM.Components.BaseComponent, {
'toString': function() {
return "Clipperz.PM.Components.Compact.CompactHeader";
},
//-----------------------------------------------------
'render': function() {
this.element().update("");
Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'div', children:[
{tag:'img', src:'./images/logo.gif'},
{tag:'div', id:'lockBlock', children:[
{tag:'input', type:'checkbox', id:'autolock'},
{tag:'span', html:'auto'},
{tag:'a', href:'#', htmlString:Clipperz.PM.Strings['lockMenuLabel'], id:'lock'}
]}
]});
Clipperz.YUI.DomHelper.append(this.element().dom,
{tag:'div', id:'compactMiscLinks', children:[
{tag:'a', id:'donateHeaderIconLink', target:'_blank', href:Clipperz.PM.Strings['donateHeaderLinkUrl'], children:[
{tag:'img', id:'donateHeaderLinkIcon', src:'./images/smiles_small.gif'}
]},
{tag:'ul', children:[
{tag:'li', children:[{tag:'a', id:'donateHeaderLink', html:'donate', target:'_blank'}]},
- {tag:'li', children:[{tag:'a', id:'creditsHeaderLink', html:'credits', target:'_blank'}]},
+// {tag:'li', children:[{tag:'a', id:'creditsHeaderLink', html:'credits', target:'_blank'}]},
{tag:'li', children:[{tag:'a', id:'feedbackHeaderLink', html:'feedback', target:'_blank'}]},
{tag:'li', children:[{tag:'a', id:'helpHeaderLink', html:'help', target:'_blank'}]},
{tag:'li', children:[{tag:'a', id:'forumHeaderLink', html:'forum', target:'_blank'}]}
]}
]}
);
YAHOO.ext.Element.get('lockBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
Clipperz.NotificationCenter.notify(this, 'switchLanguage');
},
//-----------------------------------------------------
__syntaxFix__: '__syntaxFix__'
});
diff --git a/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js b/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js
index c19a8a3..bab5fba 100644
--- a/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js
+++ b/frontend/beta/js/Clipperz/PM/Components/Panels/MainPanel.js
@@ -38,155 +38,185 @@ Clipperz.PM.Components.Panels.MainPanel = function(anElement, args) {
this._recordDetailComponent = null;
this._recordListGrid = null;
this._directLinkItemTemplate = null;
this._recordItemTemplate = null;
this._addNewRecordButton = null;
this._deleteRecordButton = null;
this._creationWizard = null;
Clipperz.NotificationCenter.register(null, 'selectAndEnterEditMode', this, 'selectRecordAndEnterEditModeHandler');
Clipperz.NotificationCenter.register(null, 'recordAdded', this, 'recordAddedHandler');
Clipperz.NotificationCenter.register(null, 'recordUpdated', this, 'recordUpdatedHandler');
Clipperz.NotificationCenter.register(null, 'recordRemoved', this, 'recordRemovedHandler');
Clipperz.NotificationCenter.register(null, 'directLoginAdded', this, 'directLoginAddedHandler');
Clipperz.NotificationCenter.register(null, 'directLoginUpdated', this, 'directLoginUpdatedHandler');
Clipperz.NotificationCenter.register(null, 'directLoginRemoved', this, 'directLoginRemovedHandler');
Clipperz.NotificationCenter.register(null, 'accountLocked', this, 'accountLockedHandler');
MochiKit.Signal.connect(MochiKit.DOM.currentWindow(), 'onresize', this, 'resizeModalMask');
this.render();
return this;
}
//=============================================================================
YAHOO.extendX(Clipperz.PM.Components.Panels.MainPanel, Clipperz.PM.Components.Panels.BasePanel, {
'toString': function() {
return "Clipperz.PM.Components.Panels.MainPanel component";
},
//-------------------------------------------------------------------------
'render': function() {
this.element().update("");
Clipperz.YUI.DomHelper.append(this.element().dom, {tag:'table', id:'mainPanelTABLE', border:'0', cellspacing:'0', cellpadding:'0', children:[
{tag:'tbody', children:[
{tag:'tr', children:[
{tag:'td', width:'15', children:[
{tag:'div', cls:'mainPanelMinHeightDiv'}
]},
{tag:'td', valign:'top', id:'directLoginsTD', width:'200', children:[
+ {tag:'div', id:'accountStatus', children:[
+ {tag:'div', cls:'header', children:[{tag:'h5', cls:'title', htmlString:"Account info"}]},
+// {tag:'div', cls:'accountStatus', html:"early adopter"},
+ {tag:'div', cls:'accountLevel', children:[
+ {tag:'span', cls:'label', html:"status"},
+ {tag:'span', cls:'status', html:"early adopter"}
+ ]},
+ {tag:'div', cls:'accountLevel', children:[
+ {tag:'span', cls:'label', html:"level"},
+// {tag:'span', cls:'level', html:"★☆☆☆"}
+ {tag:'span', cls:'level', html:"☆☆☆☆"}
+ ]},
+ {tag:'div', cls:'accountExpiration', children:[
+ {tag:'span', cls:'label', html:"expires"},
+// {tag:'span', cls:'expriation', html:"on 26 April 2014"}
+ {tag:'span', cls:'expriation', html:"never"}
+ ]},
+// {tag:'div', cls:'payButton', children:[
+// {tag:'a', href:'#', cls:'info', html:"info"}
+// ]}
+ {tag:'div', id:'payButton', cls:'payButton'}
+ ]},
{tag:'div', id:'directLoginsBlock', children:[
{tag:'div', cls:'directLoginsBlockHeaderBox', children:[{tag:'h3', id:'directLoginTitle', htmlString:Clipperz.PM.Strings['mainPanelDirectLoginBlockLabel']}]},
{tag:'div', id:'directLoginsDescription', htmlString:Clipperz.PM.Strings['mainPanelDirectLoginBlockDescription']},
{tag:'ul', id:'directLogins'}
]}
]},
{tag:'td', width:'15', children:[
{tag:'div', cls:'mainPanelMinHeightDiv'}
]},
{tag:'td', valign:'top', children:[
{tag:'div', id:'mainContent', children:[
{tag:'div', id:'recordListBlockHeader'},
{tag:'div', id:'recordListAndDetailBlock', children:[
{tag:'table', id:'recordListAndDetailBlockTABLE', border:'0', cellspacing:'0', cellpadding:'0', children:[
{tag:'tbody', children:[
{tag:'tr', children:[
{tag:'td', valign:'top', width:'250', children:[
{tag:'div', id:'recordListBlock', children:[
{tag:'div', id:'recordListFilterHeader'},
{tag:'ul', id:'records'}
]}
]},
{tag:'td', id:'recordDetailSeparatorTD', rowspan:'2', valign:'top', bgcolor:'#ddddff', html:' '},
{tag:'td', valign:'top', children:[
{tag:'div', id:'recordDetailMainBlock', children:[
{tag:'div', id:'recordTitleTopBlock'},
{tag:'div', id:'recordDetailBlock', children:[
{tag:'div', id:'recordDetail'}
]}
]},
{tag:'div', id:'recordCreationWizardMainBlock', children:[
{tag:'div', id:'recordCreationWizard', html:"WIZARD"}
]}
]}
]},
{tag:'tr', children:[
{tag:'td', id:'cardBoxLowerLeftTD', html:' '},
{tag:'td', id:'cardBoxLowerRightTD', html:' '}
]}
]}
]}
]}
]}
]},
{tag:'td', width:'15', html:" "}
]}
]}
]});
this.renderRecordListBlockHeader();
// this.renderRecordListFilterHeader();
YAHOO.ext.Element.get('directLogins').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
-
+ // TODO
+ new YAHOO.ext.Button('payButton', {text:"Info", handler:this.payButtonHandler, scope:this});
+
this.recordDetailComponent();
YAHOO.ext.Element.get('recordDetailMainBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).show();
YAHOO.ext.Element.get('recordCreationWizardMainBlock').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide();
},
+
+ //-------------------------------------------------------------------------
+
+ 'payButtonHandler': function(anEvent) {
+ window.open('https://www.clipperz.com/pricing/', '_blank');
+ },
//-------------------------------------------------------------------------
'addNewRecordButton': function() {
return this._addNewRecordButton;
},
'setAddNewRecordButton': function(aValue) {
this._addNewRecordButton = aValue;
},
'deleteRecordButton': function() {
return this._deleteRecordButton;
},
'setDeleteRecordButton': function(aValue) {
this._deleteRecordButton = aValue;
},
//-------------------------------------------------------------------------
'addNewRecord': function(anEvent) {
var deferredResult;
// var currentNumberOfRecords;
deferredResult = new MochiKit.Async.Deferred();
// currentNumberOfRecords = MochiKit.Base.keys(this.user().records()).length;
/*
// if ((this.user().preferences().shouldShowDonationPanel()) && (currentNumberOfRecords > 0) && ((currentNumberOfRecords%10) == 0)) {
// if (true) {
if ((this.user().preferences().shouldShowDonationPanel()) && (currentNumberOfRecords >= 5)) {
deferredResult.addCallback(Clipperz.PM.showDonationSplashScreen, this.user(), 'recordListAddRecordButton');
}
*/
deferredResult.addCallback(MochiKit.Base.bind(function() {
var currentlySelectedRecord;
currentlySelecedRecord = this.selectedRecord();
this.setSelectedRecord(null);
YAHOO.ext.Element.get('recordDetailMainBlock').hide();
YAHOO.ext.Element.get('recordCreationWizardMainBlock').show();
this.setCreationWizard(new Clipperz.PM.Components.RecordDetail.CreationWizard(YAHOO.ext.Element.get('recordCreationWizardMainBlock'), {previouslySelectedRecord:currentlySelecedRecord, mainComponent:this}));
this.enterModalView();
}, this));
diff --git a/frontend/beta/js/Clipperz/PM/Main.js b/frontend/beta/js/Clipperz/PM/Main.js
index 3dded31..3329a8e 100644
--- a/frontend/beta/js/Clipperz/PM/Main.js
+++ b/frontend/beta/js/Clipperz/PM/Main.js
@@ -8,97 +8,97 @@ refer to http://www.clipperz.com.
* Clipperz is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
* Clipperz is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public
License along with Clipperz. If not, see http://www.gnu.org/licenses/.
*/
if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
Clipperz.PM.VERSION = "0.1";
Clipperz.PM.NAME = "Clipperz.PM";
//#############################################################################
Clipperz.PM.Main = function() {
this._loginPanel = null;
this._user = null;
this._isRunningCompact = false;
Clipperz.NotificationCenter.register(null, 'userConnected', this, 'userConnectedCallback');
Clipperz.NotificationCenter.register(null, 'switchLanguage', this, 'switchLanguageHandler');
Clipperz.NotificationCenter.register(null, 'EXCEPTION', this, 'reportException');
return this;
}
//=============================================================================
MochiKit.Base.update(Clipperz.PM.Main.prototype, {
'toString': function() {
return "Clipperz.PM.Main";
},
'switchLanguageHandler': function() {
//MochiKit.Logging.logDebug(">>> main.switchLanguageHandler");
YAHOO.ext.Element.get('donateHeaderIconLink').dom.href = Clipperz.PM.Strings['donateHeaderLinkUrl'];
YAHOO.ext.Element.get('donateHeaderLink').update(Clipperz.PM.Strings['donateHeaderLinkLabel']).dom.href = Clipperz.PM.Strings['donateHeaderLinkUrl'];
- YAHOO.ext.Element.get('creditsHeaderLink').update(Clipperz.PM.Strings['creditsHeaderLinkLabel']).dom.href = Clipperz.PM.Strings['creditsHeaderLinkUrl'];
+// YAHOO.ext.Element.get('creditsHeaderLink').update(Clipperz.PM.Strings['creditsHeaderLinkLabel']).dom.href = Clipperz.PM.Strings['creditsHeaderLinkUrl'];
YAHOO.ext.Element.get('feedbackHeaderLink').update(Clipperz.PM.Strings['feedbackHeaderLinkLabel']).dom.href = Clipperz.PM.Strings['feedbackHeaderLinkUrl'];
YAHOO.ext.Element.get('helpHeaderLink').update(Clipperz.PM.Strings['helpHeaderLinkLabel']).dom.href = Clipperz.PM.Strings['helpHeaderLinkUrl'];
YAHOO.ext.Element.get('forumHeaderLink').update(Clipperz.PM.Strings['forumHeaderLinkLabel']).dom.href = Clipperz.PM.Strings['forumHeaderLinkUrl'];
if (YAHOO.ext.Element.get('logout') != null) {
YAHOO.ext.Element.get('logout').update(Clipperz.PM.Strings['logoutMenuLabel']);
YAHOO.ext.Element.get('lock').update(Clipperz.PM.Strings['lockMenuLabel']);
YAHOO.ext.Element.get('recordsTabAnchor').update(Clipperz.PM.Strings['recordMenuLabel']);
YAHOO.ext.Element.get('accountTabAnchor').update(Clipperz.PM.Strings['accountMenuLabel']);
YAHOO.ext.Element.get('dataTabAnchor').update(Clipperz.PM.Strings['dataMenuLabel']);
// YAHOO.ext.Element.get('contactsTabAnchor').update(Clipperz.PM.Strings['contactsMenuLabel']);
YAHOO.ext.Element.get('toolsTabAnchor').update(Clipperz.PM.Strings['toolsMenuLabel']);
}
//MochiKit.Logging.logDebug("<<< main.switchLanguageHandler");
},
//-------------------------------------------------------------------------
'fixToDrawTheMainTabsCorrectlyOnSafari': function() {
this.switchLanguageHandler();
},
//-------------------------------------------------------------------------
'run': function(shouldShowRegistrationForm) {
var mainElement;
Clipperz.NotificationCenter.register(null, 'updatedProgressState', this, 'updateProgressDialogStatus');
YAHOO.ext.Element.get('recordDetailEditModeHeaderMask').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide().unmask();
YAHOO.ext.Element.get('recordDetailEditModeVerticalMask').setVisibilityMode(YAHOO.ext.Element.DISPLAY).hide().unmask();
//MochiKit.Logging.logDebug(">>> Main.run");
mainElement = YAHOO.ext.Element.get('main');
if (Clipperz.PM.Proxy.defaultProxy.isReadOnly()) {
YAHOO.ext.Element.get('applicationVersionType').dom.className = "readOnly";
}
mainElement.update("");
Clipperz.YUI.DomHelper.append(mainElement.dom, {tag:'ul', cls:'clipperzTabPanels', children:[
{tag:'li', id:'loginPanel'}
]})
this.setLoginPanel(new Clipperz.PM.Components.Panels.LoginPanel(YAHOO.ext.Element.get('loginPanel')));
//MochiKit.Logging.logDebug("--- Main.run - selecting active form to show ...");
if (shouldShowRegistrationForm == true) {
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js
index 0ca4b51..1e2cb50 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js
@@ -23,97 +23,97 @@ refer to http://www.clipperz.com.
Clipperz.PM.Strings.Languages['de-DE'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
'clipperzServiceDescription': "<h2>Privatsphäre für Deine Daten</h2> <ul> <li> <h3>Clipperz heißt:</h3> <ul> <li> <p>sichere und einfache zu bedienene Passwortverwaltung</p> </li> <li> <p>eine effektive Lösung des einmaligen Anmeldens</p> </li> <li> <p>eine digitale Brieftasche für Deine vertraulichen Daten</p> </li> </ul> </li> <li> <h3>Clipperz bietet Dir:</h3> <ul> <li> <p>einfaches Speichern und Verwalten von Passwörtern und Webzugangsdaten</p> </li> <li> <p>schnelles unkompliziertes einloggen, ohne Eingabe des Benutzernamen und Passworts, bei Webdiensten</p> </li> <li> <p>Schutz aller Deiner persönlichen Daten: Zutrittscodes, PINs, Benutzernamen, Passwörter, Kreditkartennummern, &hellip;</p> </li> <li> <p>Deine Geheimnisse mit Familienmitgliedern und Freunden zu teilen (mehr dazu in Kürze)</p> </li> </ul> </li> <li> <h3>Clipperz ist:</h3> <ul> <li> <p>kostenlos und absolut anonym</p> </li> <li> <p>unkomplizierter Zugriff zu jeder Zeit von jedem Rechner</p> </li> <li> <p>ohne Download und Installation verwendbar</p> </li> <li> <p>ein Schutz gegen das Speichern von Passwörtern auf Deinem PC oder das Notieren auf Papier</p> </li> </ul> </li> <li> <h3>Clipperz Sicherheit:</h3> <ul> <li> <p>Deine sensiblen persönlichen Informationen werden lokal durch Deinen Browser verschlüsselt, bevor sie an Clipperz über das Internet gesendet werden</p> </li> <li> <p>Der Schlüssel für diese Daten ist der Sicherheitssatz, den nur Du kennst</p> </li> <li> <p>Clipperz speichert Deine sensiblen Daten nur in verschlüsselter Form und kann zu keinem Zeitpunkt diese entschlüssel und in ihrer ursprünglichen Klartextform zugänglich machen</p> </li> <li> <p>Clipperz basiert auf standart Verschlüsselungsverfahren. Nichts ausergewöhnliches – oder hand gestricktes</p> </li> <li> <p>Du kannst den Quellcode zu jeder Zeit anschauen, aber Du brauchst nichts von Kryptographie zu verstehen um ein glücklicher Anwender zu sein!</p> </li> </ul> </li> <li> <a href=\"http://www.clipperz.com\" target=\"_blank\">Weitere Informationen</a> </li> </ul> ",
'loginFormTitle': "Login zu Deinem Clipperz Konto",
'loginFormUsernameLabel': "Benutzernamen",
'loginFormPassphraseLabel': "Sicherheitssatz",
'loginFormDontHaveAnAccountLabel': "Du hast noch kein Clipperz Konto?",
'loginFormCreateOneLabel': "Konto erstellen",
'loginFormForgotYourCredentialsLabel': "Zugangsdaten vergessen?",
'loginFormAarghThatsBadLabel': "Misst! Dass ist schlecht!",
'loginFormAfraidOfMaliciousScriptsLabel': "verängstigt von bösartigen Scripts?",
'loginFormVerifyTheCodeLabel': "begutachte den Quellcode",
'loginFormButtonLabel': "Einloggen",
'loginPanelSwithLanguageDescription': "<h5>Wechsel zu Deiner vervorzugten Sprache</h5> ",
'browserCompatibilityDescription': "<p>Bessere und sicherere Clipperz-Erfahrung mit Firefox. Clipperz funktioniert auch mit Safari, Opera und MS Internet Explorer!</p> ",
'loginMessagePanelInitialTitle': "Du wirst eingeloggt…",
'loginMessagePanelInitialButtonLabel': "Abbruch",
'loginMessagePanelConnectedTitle': "Verbunden",
'loginMessagePanelConnectedText': "Fertig",
'loginMessagePanelFailureTitle': "Fehler",
'loginMessagePanelFailureText': "Login fehlgeschlagen",
'loginMessagePanelFailureButtonLabel': "Schließen",
'connectionLoginSendingCredentialsMessageTitle': "Prüfe Zugangsdaten",
'connectionLoginSendingCredentialsMessageText': "Sende Zugangsdaten",
'connectionLoginCredentialsVerificationMessageTitle': "Prüfe Zugangsdaten",
'connectionLoginCredentialsVerificationMessageText': "Führe SRP Authentifizierung durch",
'connectionLoginDoneMessageTitle': "Prüfe Zugangsdaten",
'connectionLoginDoneMessageText': "Verbunden",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Prüfe Zugangsdaten",
'userLoginPanelUpgradingUserCredentialsMessageText': "Aktualisierung Deiner Zugangsdaten auf ein neues Authentifizierungsschema",
'userLoginPanelConnectedMessageTitle': "Benutzer authentifiziert",
'userLoginPanelConnectedMessageText': "Login erfolgreich",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Prüfe Zugangsdaten",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Probiere älteres Authentifizierungsschema",
'userLoginPanelLoadingUserDataMessageTitle': "Benutzer authentifiziert",
'userLoginPanelLoadingUserDataMessageText': "Lade verschlüsselte Kartendaten von Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "Benutzer authentifiziert",
'userLoginPanelDecryptingUserDataMessageText': "Lokale Entschlüsselung der Kartendaten",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Benutzer authentifiziert",
'userLoginPanelDecryptingUserStatisticsMessageText': "Lokale Entschlüsselung der Benutzerstatisik",
'splashAlertTitle': "Willkommen bei Clipperz!",
'splashAlertText': "<p>Sicherheitshinweis</p> <ul> <li> <p>Die Speicherung von Informationen bei Clipperz ist so sicher, wie der Sicherheitssatz den Du zum Schutz gewählt hast. Ist der Sicherheitssatz nicht bekannt, können keine Informationen abgefragt werden.</p> </li> <li> <p>Solltest Du Clipperz nutzen, um sensible und kritische persönliche Daten abzuspeichern, so empfehlen wir in jedem Fall die Nutzung eines langen Sicherheitssatzes als Passwort und die Nutzung von Sonderzeichen, Zahlen, Groß- und Kleinbuchstaben.</p> </li> <li> <p>Clipperz kann einen verlorenen Sicherheitssatz nicht wiederherstellen!</p> </li> </ul> <p>Weitere Informationen findest Du bei <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a>.</p> ",
'splashAlertCloseButtonLabel': "Ok",
'registrationFormTitle': "Erstelle Dein Konto",
'registrationFormUsernameLabel': "Benutzernamen",
'registrationFormPassphraseLabel': "Sicherheitssatz",
'registrationFormRetypePassphraseLabel': "Wiederhole Sicherheitssatz",
'registrationFormSafetyCheckLabel': "Ich akzeptiere dass es Clipperz nicht möglich ist, einen verlorenen Sicherheitssatz wiederherzustellen.",
-'registrationFormTermsOfServiceCheckLabel': "Ich habe die <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Nutzungsbedingungen</a> gelesen, verstanden und akzeptiere diese.",
+'registrationFormTermsOfServiceCheckLabel': "Ich habe die <a href='https://www.clipperz.com/terms_service' target='_blank'>Nutzungsbedingungen</a> gelesen, verstanden und akzeptiere diese.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "Hast Du bereits einen Zugang?",
'registrationFormSimplyLoginLabel': "Einloggen",
'registrationFormButtonLabel': "Anmelden",
'registrationFormWarningMessageNotMatchingPassphrases': "Deine Sicherheitssätze stimmen nicht überein. Bitte erneut eingeben.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Bitte lese die Bedingungen und akzeptiere die Auswahlboxen weiter unten.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Du musst die Nutzungsbedingungen akzeptieren.",
'registrationMessagePanelInitialTitle': "Benutzer wird angelegt…",
'registrationMessagePanelInitialButtonLabel': "Abbruch",
'registrationMessagePanelRegistrationDoneTitle': "Anmeldung",
'registrationMessagePanelRegistrationDoneText': "Fertig",
'registrationMessagePanelFailureTitle': "Anmerldung fehlgeschlagen",
'registrationMessagePanelFailureButtonLabel': "Schließen",
'connectionRegistrationSendingRequestMessageText': "Zugangsdaten werden geprüft",
'connectionRegistrationSendingCredentialsMessageText': "Sende Zugangsdaten",
'registrationSplashPanelTitle': "Sicherheitshinweis",
'registrationSplashPanelDescription': "<p>Dies sind Deine Clipperz Zugangsdaten, pass sehr gut auf sie auf. Clipperz wird diese kein zweites und weiteres mal anzeigen!</p> ",
'registrationSplashPanelUsernameLabel': "Benutzernamen",
'registrationSplashPanelPassphraseLabel': "Schlüsselsatz",
'donateHeaderLinkLabel': "spende",
'creditsHeaderLinkLabel': "credits",
'feedbackHeaderLinkLabel': "feedback",
'helpHeaderLinkLabel': "hilfe",
'forumHeaderLinkLabel': "forum",
'recordMenuLabel': "Karten",
'accountMenuLabel': "Benutzer",
'dataMenuLabel': "Daten",
'contactsMenuLabel': "Kontakt",
'bookmarkletMenuLabel': "Bookmarklet",
'logoutMenuLabel': "Ausloggen",
'lockMenuLabel': "Sperren",
'lockTitle': "Dieses Konto ist gesperrt",
'lockDescription': "<p>Bitte gebe Deinen Sicherheitssatz ein, um das Clipperz-Konto zu entsperren.</p> ",
'unlockButtonLabel': "Entsperren",
'changePasswordTabLabel': "Sicherheitssatz ändern",
'changePasswordTabTitle': "Sicherheitssatz ändern",
'changePasswordFormUsernameLabel': "Benutzername",
'changePasswordFormOldPassphraseLabel': "Alter Sicherheitssatz",
'changePasswordFormNewPassphraseLabel': "Neuer Sicherheitssatz",
'changePasswordFormRetypePassphraseLabel': "Wiederholdung neuen Sicherheitssatz",
'changePasswordFormSafetyCheckboxLabel': "Ich akzeptiere dass es Clipperz nicht möglich ist, einen verlorenen Sicherheitssatz wiederherzustellen.",
'changePasswordFormSubmitLabel': "Sicherheitssatz ändern",
'changePasswordFormWrongUsernameWarning': "Falscher Benutzername",
'changePasswordFormWrongPassphraseWarning': "Falscher Sicherheitssatz",
'changePasswordFormWrongRetypePassphraseWarning': "Deine Sicherheitssätze stimmen nicht überein. Bitte erneut eingeben.",
'changePasswordFormSafetyCheckWarning': "Bitte ließ die folgenden Hinweise und akzeptiere diese.",
'changePasswordFormProgressDialogTitle': "Ändere Zugangsdaten",
'changePasswordFormProgressDialogConnectedMessageTitle': "Verbunden",
'changePasswordFormProgressDialogConnectedMessageText': "Fertig",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js
index f7a7583..42ecf53 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js
@@ -104,97 +104,97 @@ Clipperz.PM.Strings.Languages['el-gr'] = MochiKit.Base.merge(Clipperz.PM.Strings
'loginMessagePanelConnectedTitle': "Συνδεθήκατε",
'loginMessagePanelConnectedText': "Ολοκληρώθηκε",
'loginMessagePanelFailureTitle': "Λάθος",
'loginMessagePanelFailureText': "Η σύνδεση χρήστη απέτυχε",
'loginMessagePanelFailureButtonLabel': "Κλείσιμο",
// Login message panel - connection
'connectionLoginSendingCredentialsMessageTitle': "Γίνεται επαλήθευση διαπιστευτηρίων",
'connectionLoginSendingCredentialsMessageText': "Αποστέλλονται διαπιστευτήρια",
'connectionLoginCredentialsVerificationMessageTitle': "Γίνεται επαλήθευση διαπιστευτηρίων",
'connectionLoginCredentialsVerificationMessageText': "Εκτέλεση πιστοποίησης SRP ",
'connectionLoginDoneMessageTitle': "Γίνεται επαλήθευση διαπιστευτηρίων",
'connectionLoginDoneMessageText': "Συνδεδεμένος",
// Login message panel - user
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Γίνεται επαλήθευση διαπιστευτηρίων",
'userLoginPanelUpgradingUserCredentialsMessageText': "Αναβάθμηση των διαπιστευτηρίων σας σε ένα νέο σζήμα πιστοποίησης",
'userLoginPanelConnectedMessageTitle': "Χρήστης πιστοποιήθηκε ",
'userLoginPanelConnectedMessageText': "Συνδεθήκατε με επιτυχία",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Γίνεται επαλήθευση διαπιστευτηρίων",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Trying an older authentication schema",
'userLoginPanelLoadingUserDataMessageTitle': "Χρήστης πιστοποιήθηκε ",
'userLoginPanelLoadingUserDataMessageText': "Downloading encrypted card headers from Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "Χρήστης πιστοποιήθηκε ",
'userLoginPanelDecryptingUserDataMessageText': "Local decryption of card headers",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Χρήστης πιστοποιήθηκε ",
'userLoginPanelDecryptingUserStatisticsMessageText': "Local decryption of usage statistics",
//-----------------------------------------------------
// Registration page - splash alert
'splashAlertTitle': "Καλώς ήλθατε στο Clipperz!",
'splashAlertTextConfig': [
{tag:'p', html:'Μερικές συμβουλές ασφαλείας'},
{tag:'ul', children:[
{tag:'li', children:[{tag:'span', html:'Η αποθήκευση των δεδομένων σας στο Clipperz είναι τόσο ασφαλής, όσο η κωδική φράση που επιλέγετε για να τα προστατεύσετε. Κανένας δεν θα έχει πρόσβαση σε αυτά, εκτός αν γνωρίζει την κωδική φράση σας.'}]},
{tag:'li', children:[{tag:'span', html:'Αν πρόκειται να χρησιμοποιήσετε το Clipperz για ασφαλή προστασία ευαίσθητων ή σημαντικών πληροφοριών, βεβαιωθείτε ότι θα χρησιμοποιήσετε μία “γερή” κωδική φράση. Όσο μεγαλύτερη, τόσο καλύτερη!'}]},
{tag:'li', children:[{tag:'span', html:'Το Clipperz δεν θα έχει τη δυνατότητα να ανακτήσει μία χαμένη κωδική φράση!'}]}
]},
{tag:'p', html:'Για περισσότερες πληροφορίες, παρακαλώ ανατρέξτε στο <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a>.'}
],
'splashAlertCloseButtonLabel': "Εντάξει",
// Registration page - form
'registrationFormTitle': "Δημιουργήστε λογαριασμό",
'registrationFormUsernameLabel': "Όνομα χρήστη",
'registrationFormPassphraseLabel': "Κωδική φράση",
'registrationFormRetypePassphraseLabel': "Εισάγετε ξανά την κωδική φράση",
'registrationFormSafetyCheckLabel': "Κατανοώ πως το Clipperz δεν θα μπορεί να ανακτήσει μία χαμένη κωδική φράση.",
- 'registrationFormTermsOfServiceCheckLabel': "Έχω διαβάσει και αποδέχομαι τους Όρους Χρήσης <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Όρους Χρήσης</a>.",
+ 'registrationFormTermsOfServiceCheckLabel': "Έχω διαβάσει και αποδέχομαι τους Όρους Χρήσης <a href='https://www.clipperz.com/terms_service' target='_blank'>Όρους Χρήσης</a>.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "Έχετε ήδη έναν λογαριασμό?",
'registrationFormSimplyLoginLabel': "απλώς συνδεθείτε",
'registrationFormButtonLabel': "Εγγραφείτε",
// Registration page - warning messages
'registrationFormWarningMessageNotMatchingPassphrases': "Οι κωδικές φράσεις που εισάγατε δεν ταιριάζουν. Παρακαλώ ξαναπροσπαθήστε.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Παρακαλώ διαβάστε και επιλέξτε όλες τις παρακάτω επιλογές.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Πρέπει να αποδεχθείτε τους Όρους Χρήσης.",
// Registration message panel
'registrationMessagePanelInitialTitle': "Δημιουργία λογαριασμού ...",
'registrationMessagePanelInitialButtonLabel': "Ακύρωση",
'registrationMessagePanelRegistrationDoneTitle': "Εγγραφή",
'registrationMessagePanelRegistrationDoneText': "Ολοκληρώθηκε",
'registrationMessagePanelFailureTitle': "Η εγγραφή απέτυχε",
'registrationMessagePanelFailureButtonLabel': "Κλείσιμο",
// Registration - connection
'connectionRegistrationSendingRequestMessageText': "Γίνεται επαλήθευση διαπιστευτηρίων",
'connectionRegistrationSendingCredentialsMessageText': "Αποστέλλονται διαπιστευτήρια",
//-----------------------------------------------------
// Registration splash panel
'registrationSplashPanelTitle': "Συμβουλές Ασφαλείας",
'registrationSplashPanelDescriptionConfig': [
{tag:'p', html:'Αυτά είναι τα διαπιστευτήριά σας στο Clipperz, δείτε τα προσεκτικά. Το Clipperz δεν θα απεικονίσει το όνομα χρήστη και την κωδική σας φράση δεύτερη φορά!'}
],
'registrationSplashPanelUsernameLabel': "όνομα χρήστη",
'registrationSplashPanelPassphraseLabel': "κωδική φράση",
//-----------------------------------------------------
// Header links
'donateHeaderLinkLabel': "donate",
'creditsHeaderLinkLabel': "credits",
'feedbackHeaderLinkLabel': "feedback",
'helpHeaderLinkLabel': "Βοήθεια",
'forumHeaderLinkLabel': "forum",
//-----------------------------------------------------
// Menu labels
'recordMenuLabel': "cards",
'accountMenuLabel': "Λογαριασμός",
'dataMenuLabel': "Δεδομένα",
'contactsMenuLabel': "Επαφές",
'bookmarkletMenuLabel': "bookmarklet",
'logoutMenuLabel': "Αποσύνδεση",
'lockMenuLabel': "lock",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js
index 97543a4..ce8dd85 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js
@@ -114,97 +114,97 @@ Clipperz.PM.Strings.Languages['en-us'] = {
'loginMessagePanelInitialButtonLabel': "Cancel",
'loginMessagePanelConnectedTitle': "Connected",
'loginMessagePanelConnectedText': "Done",
'loginMessagePanelFailureTitle': "Error",
'loginMessagePanelFailureText': "Login failed",
'loginMessagePanelFailureButtonLabel': "Close",
// Regular login - message panel - connection
'connectionLoginSendingCredentialsMessageTitle': "Verifying credentials",
'connectionLoginSendingCredentialsMessageText': "Sending credentials",
'connectionLoginCredentialsVerificationMessageTitle': "Verifying credentials",
'connectionLoginCredentialsVerificationMessageText': "Performing SRP authentication",
'connectionLoginDoneMessageTitle': "Verifying credentials",
'connectionLoginDoneMessageText': "Connected",
// Regular login - message panel - user
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Verifying credentials",
'userLoginPanelUpgradingUserCredentialsMessageText': "Upgrading your credentials to a new authentication schema",
'userLoginPanelConnectedMessageTitle': "User authenticated",
'userLoginPanelConnectedMessageText': "Successfully logged in",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Verifying credentials",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Trying an older authentication schema",
'userLoginPanelLoadingUserDataMessageTitle': "User authenticated",
'userLoginPanelLoadingUserDataMessageText': "Downloading encrypted card headers from Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "User authenticated",
'userLoginPanelDecryptingUserDataMessageText': "Local decryption of card headers",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "User authenticated",
'userLoginPanelDecryptingUserStatisticsMessageText': "Local decryption of usage statistics",
// Registration page - splash alert
'splashAlertTitle': "Welcome to Clipperz!",
'splashAlertText': "\
<!-- FIX CSS DONE! --> \
<p>Some security advice</p>\
<ul>\
<li><p>Storing your data at Clipperz is as secure as the passphrase you choose to protect them. Nobody can access them unless they know your passphrase.</p></li>\
<li><p>If you are going to use Clipperz for safeguarding sensitive and critical information please make sure to use a strong passphrase. The longer the better!</p></li>\
<li><p>Clipperz will not be able to recover a lost passphrase!</p></li>\
</ul>\
<p>For any further information, please refer to <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a> website.</p>",
'splashAlertCloseButtonLabel': "Ok",
// Registration page - form
'registrationFormTitle': "create your account",
'registrationFormUsernameLabel': "username",
'registrationFormPassphraseLabel': "passphrase",
'registrationFormRetypePassphraseLabel': "re-enter passphrase",
'registrationFormSafetyCheckLabel': "I understand that Clipperz will not be able to recover a lost passphrase.",
-'registrationFormTermsOfServiceCheckLabel': "I have read and agreed to the <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Terms of Service</a>.",
+'registrationFormTermsOfServiceCheckLabel': "I have read and agreed to the <a href='https://www.clipperz.com/terms_service' target='_blank'>Terms of Service</a>.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "do you already have an account?",
'registrationFormSimplyLoginLabel': "simply login",
'registrationFormButtonLabel': "Register",
// Registration page - warning messages
'registrationFormWarningMessageNotMatchingPassphrases': "Your passphrases don't match, please re-type them.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Please read and check all the boxes below.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "You need to agree to the Terms of Service.",
// Registration page - message panel
'registrationMessagePanelInitialTitle': "Creating account …",
'registrationMessagePanelInitialText': "---",
'registrationMessagePanelInitialButtonLabel': "Cancel",
'registrationMessagePanelRegistrationDoneTitle': "Registration",
'registrationMessagePanelRegistrationDoneText': "Done",
'registrationMessagePanelFailureTitle': "Registration failed",
'registrationMessagePanelFailureButtonLabel': "Close",
// Registration page - message panel - connection
'connectionRegistrationSendingRequestMessageText': "Verifying credentials",
'connectionRegistrationSendingCredentialsMessageText': "Sending credentials",
// Registration page - splash panel
'registrationSplashPanelTitle': "Security advice",
'registrationSplashPanelDescription': "<p>These are your Clipperz credentials, take good care of them. Clipperz will never display your username and passphrase a second time!</p>",
'registrationSplashPanelUsernameLabel': "username",
'registrationSplashPanelPassphraseLabel': "passphrase",
'registrationSplashPanelShowPassphraseButtonLabel': "show passphrase",
// Header links
'donateHeaderLinkLabel': "donate",
'creditsHeaderLinkLabel': "credits",
'feedbackHeaderLinkLabel': "feedback",
'helpHeaderLinkLabel': "help",
'forumHeaderLinkLabel': "forum",
// Menu labels
'recordMenuLabel': "cards",
'accountMenuLabel': "account",
'dataMenuLabel': "data",
'contactsMenuLabel': "contacts",
'toolsMenuLabel': "tools",
'logoutMenuLabel': "logout",
'lockMenuLabel': "lock",
// Lock dialog
'lockTitle': "The account is locked",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js
index 2090913..34bdbec 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js
@@ -30,97 +30,97 @@ Clipperz.PM.Strings.Languages['es-ES'.toLowerCase()] = MochiKit.Base.merge(Clipp
'loginFormCreateOneLabel': "crear una",
'loginFormForgotYourCredentialsLabel': "¿perdió sus credenciales?",
'loginFormAarghThatsBadLabel': "¡Ahhh! ¡eso es malo!",
'loginFormAfraidOfMaliciousScriptsLabel': "¿evitar scripts maliciosos?",
'loginFormVerifyTheCodeLabel': "verificar el código",
'loginFormButtonLabel': "Ingresar",
'loginFormOneTimePasswordCheckboxLabel': "usar una frase clave desechable",
'loginPanelSwithLanguageDescription': "<h5>Cambiar a su lenguaje preferido</h5> ",
'browserCompatibilityDescription': "<p>Obtenga una mejor y más segura experiencia con Firefox. De todas maneras Clipperz funciona también con Opera y MS Explorer!</p> ",
'OTPloginMessagePanelInitialTitle': "Ingresar usando una frase clave desechable",
'OTPloginMessagePanelInitialText': "Enviando credenciales OTP ...",
'OTPloginMessagePanelLoadingTitle': "Ingresar usando una frase clave desechable",
'OTPloginMessagePanelLoadingText': "Descargando datos de autenticación encriptados desde el servidor ...",
'OTPloginMessagePanelProcessingTitle': "Ingresar usando una frase clave desechable",
'OTPloginMessagePanelProcessingText': "Desencriptación local de datos de autenticación ...",
'loginMessagePanelInitialTitle': "Ingresando ...",
'loginMessagePanelInitialButtonLabel': "Cancelar",
'loginMessagePanelConnectedTitle': "Conectado",
'loginMessagePanelConnectedText': "Hecho",
'loginMessagePanelFailureTitle': "Error",
'loginMessagePanelFailureText': "Ingreso fallido",
'loginMessagePanelFailureButtonLabel': "Cerrar",
'connectionLoginSendingCredentialsMessageTitle': "Verificando credenciales",
'connectionLoginSendingCredentialsMessageText': "Enviando credenciales",
'connectionLoginCredentialsVerificationMessageTitle': "Verificando credenciales",
'connectionLoginCredentialsVerificationMessageText': "Realizando una autenticación SRP",
'connectionLoginDoneMessageTitle': "Verificando credenciales",
'connectionLoginDoneMessageText': "Conectado",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Verificando credenciales",
'userLoginPanelUpgradingUserCredentialsMessageText': "Actualizando sus credenciales al nuevo esquema de autenticación",
'userLoginPanelConnectedMessageTitle': "Usuario autenticado",
'userLoginPanelConnectedMessageText': "Exitosamente logueado",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Verifying credentials",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Probando un esquema de autenticación antiguo",
'userLoginPanelLoadingUserDataMessageTitle': "Usuario autenticado",
'userLoginPanelLoadingUserDataMessageText': "Descargando encabezamientos encriptados desde Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "Usuario autenticado",
'userLoginPanelDecryptingUserDataMessageText': "Desencriptación local de datos",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Usuario autenticado",
'userLoginPanelDecryptingUserStatisticsMessageText': "Desencriptación local de estadísticas de uso",
'splashAlertTitle': "¡Bienvenido a Clipperz!",
'splashAlertText': "<p>Algunas advertencias sobre seguridad</p> <ul> <li> <p>Almacenar sus datos en Clipperz es tan seguro como la frase clave que usted elija para protegerlos. Nadie puede acceder a ellos a no ser que conozca la frase clave.</p> </li> <li> <p>Si usted va a usar Clipperz para guardar información sensible y crítica, esté seguro de elegir una frase clave fuerte. ¡Cuanto más larga mejor!</p> </li> <li> <p>Clipperz no le permitirá recuperar una frase clave perdida.</p> </li> </ul> <p>Si necesita más información, por favor visite el sitio de <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a>.</p> ",
'splashAlertCloseButtonLabel': "Aceptar",
'registrationFormTitle': "Abrir su cuenta",
'registrationFormUsernameLabel': "usuario",
'registrationFormPassphraseLabel': "frase clave",
'registrationFormRetypePassphraseLabel': "reingrese la frase clave",
'registrationFormSafetyCheckLabel': "Yo entiendo que Clipperz no me permite recuperar frases clave perdidas",
-'registrationFormTermsOfServiceCheckLabel': "He leído y estoy de acuerdo con los <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Términos de Servicio</a>.",
+'registrationFormTermsOfServiceCheckLabel': "He leído y estoy de acuerdo con los <a href='https://www.clipperz.com/terms_service' target='_blank'>Términos de Servicio</a>.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "¿usted ya tiene una cuenta?",
'registrationFormSimplyLoginLabel': "ingreso simple",
'registrationFormButtonLabel': "Registrarse",
'registrationFormWarningMessageNotMatchingPassphrases': "Su frase clave no coincide, por favor reescríbala.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Por favor, lea y chequee todas las casillas debajo.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Usted necesita estar de acuerdo con los Términos de Servicio.",
'registrationMessagePanelInitialTitle': "Creando cuenta ...",
'registrationMessagePanelInitialButtonLabel': "Cancelar",
'registrationMessagePanelRegistrationDoneTitle': "Registración",
'registrationMessagePanelRegistrationDoneText': "Hecho",
'registrationMessagePanelFailureTitle': "Registración fallada",
'registrationMessagePanelFailureButtonLabel': "Cerrar",
'connectionRegistrationSendingRequestMessageText': "Verificando credenciales",
'connectionRegistrationSendingCredentialsMessageText': "Enviando credenciales",
'registrationSplashPanelTitle': "Aviso de seguridad",
'registrationSplashPanelDescriptionConfig': "<p>Estas son sus credenciales de Clipperz, cuídelas. ¡Clipperz nunca más le mostrará su cuenta y frase clave por segunda vez!</p> ",
'registrationSplashPanelUsernameLabel': "usuario",
'registrationSplashPanelPassphraseLabel': "frase clave",
'registrationSplashPanelShowPassphraseButtonLabel': " mostrar frase clave",
'donateHeaderLinkLabel': "donaciones",
'creditsHeaderLinkLabel': "créditos",
'feedbackHeaderLinkLabel': "contacto",
'helpHeaderLinkLabel': "ayuda",
'forumHeaderLinkLabel': "foro",
'recordMenuLabel': "tarjetas",
'accountMenuLabel': "cuenta",
'dataMenuLabel': "datos",
'contactsMenuLabel': "contactos",
'toolsMenuLabel': "herramientas",
'logoutMenuLabel': "salir",
'lockMenuLabel': "bloquear",
'lockTitle': "La cuenta está bloqueada",
'lockDescriptionConfig': "<p>Para desbloquear su cuenta, por favor ingrese su frase clave</p> ",
'unlockButtonLabel': "desbloquear",
'changePasswordTabLabel': "Cambiar su frase clave",
'changePasswordTabTitle': "Cambiar su frase clave",
'changePasswordFormUsernameLabel': "usuario",
'changePasswordFormOldPassphraseLabel': "frase clave anterior",
'changePasswordFormNewPassphraseLabel': "nueva frase clave",
'changePasswordFormRetypePassphraseLabel': "reingrese su nueva frase clave",
'changePasswordFormSafetyCheckboxLabel': "Yo entiendo que Clipperz no me permite recuperar una frase clave perdida.",
'changePasswordFormSubmitLabel': "Cambiar",
'changePasswordFormWrongUsernameWarning': "Usuario incorrecto",
'changePasswordFormWrongPassphraseWarning': "Frase clave incorrecta",
'changePasswordFormWrongRetypePassphraseWarning': "Sus frases claves no coinciden, por favor reescríbalas.",
'changePasswordFormSafetyCheckWarning': "Por favor lea y seleccione la casilla de abajo.",
'changePasswordFormProgressDialogTitle': "Cambiando credenciales de usuario",
'changePasswordFormProgressDialogConnectedMessageTitle': "Conectado",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js
index 08f0c21..71ea987 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js
@@ -23,97 +23,97 @@ refer to http://www.clipperz.com.
Clipperz.PM.Strings.Languages['fr-FR'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
'clipperzServiceDescription': "<h2>Gardez le pour vous!</h2> <ul> <li> <h3>Clipperz est:</h3> <ul> <li> <p>un gestionnaire de mots de passe sécurisé</p> </li> <li> <p>une solution fiable d’authentification unique</p> </li> <li> <p>une chambre forte numérique pour vos données confidentielles</p> </li> </ul> </li> <li> <h3>Avec Clipperz vous pouvez:</h3> <ul> <li> <p>enregistrer et gérer vos mots de passe et autres informations d'identification en ligne</p> </li> <li> <p>vous identifier sur vos sites web sans avoir besoin de saisir votre nom d’utilisateur ou votre mot de passe</p> </li> <li> <p>protéger toutes vos données sensibles: codes d’alarmes, PINs (téléphone portable), carte de crédits, &hellip;</p> </li> <li> <p>partager certaines données confidentielles avec vos proches et vos associés (bientôt disponible!)</p> </li> </ul> </li> <li> <h3>Les avantages de Clipperz:</h3> <ul> <li> <p>c'est gratuit et totalement anonyme</p> </li> <li> <p>accéder à vos données depuis n’importe quel ordinateur</p> </li> <li> <p>vous n'avez besoin d'aucun logiciel et rien n'est à installer sur votre poste</p> </li> <li> <p>cela vous évite de garder des mots de passe sur votre PC ou sur des bouts de papier</p> </li> </ul> </li> <li> <h3>La sécurité de Clipperz:</h3> <ul> <li> <p>vos mots de passe sont localement chiffrés par votre navigateur avant d’être téléchargé à Clipperz</p> </li> <li> <p>la clé de cryptage est une phrase secrète détenue uniquement par vous même</p> </li> <li> <p>héberge vos données sensibles dans des formulaires cryptés et ne peuvent être consultées directement en clair</p> </li> <li> <p>est développé sur des standard de cryptage réputé sans aucune fantaisie ni de bricolage fait maison</p> </li> <li> <p>vous pouvez consulter le code source autant que vous le souhaitez</p> </li> </ul> </li> <li> <a href=\"http://www.clipperz.com\" target=\"_blank\">Plus d’informations</a> </li> </ul> ",
'loginFormTitle': "identifiez-vous avec votre compte Clipperz",
'loginFormUsernameLabel': "nom d’utilisateur",
'loginFormPassphraseLabel': "phrase secrète",
'loginFormDontHaveAnAccountLabel': "vous n’avez pas de compte?",
'loginFormCreateOneLabel': "créez votre compte",
'loginFormForgotYourCredentialsLabel': "vous avez oublié votre certificat?",
'loginFormAarghThatsBadLabel': "c’est fort dommage pour vous!",
'loginFormAfraidOfMaliciousScriptsLabel': "vous avez peur des script malicieux?",
'loginFormVerifyTheCodeLabel': "vérifiez le code",
'loginFormButtonLabel': "S’identifer",
'loginPanelSwithLanguageDescription': "<p>Sélectionnez votre langue préféré</p> ",
'browserCompatibilityDescription': "<p>Have a better and safer Clipperz experience with Firefox. However Clipperz works just fine also with Opera and MS Internet Explorer!</p> ",
'loginMessagePanelInitialTitle': "En cours d’identification ...",
'loginMessagePanelInitialButtonLabel': "Annuler",
'loginMessagePanelConnectedTitle': "Connecté",
'loginMessagePanelConnectedText': "Terminé",
'loginMessagePanelFailureTitle': "Erreur",
'loginMessagePanelFailureText': "Identification échoué",
'loginMessagePanelFailureButtonLabel': "Fermer",
'connectionLoginSendingCredentialsMessageTitle': "Vérification des identifiants",
'connectionLoginSendingCredentialsMessageText': "Envoi des identifiants",
'connectionLoginCredentialsVerificationMessageTitle': "Vérification des identifiants",
'connectionLoginCredentialsVerificationMessageText': "Authentification SRP en cours",
'connectionLoginDoneMessageTitle': "Vérification des identifiants",
'connectionLoginDoneMessageText': "Connecté",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Vérification des identifiants",
'userLoginPanelUpgradingUserCredentialsMessageText': "Mise à jour de vos identifiants à un nouveau schéma d’authentification",
'userLoginPanelConnectedMessageTitle': "Utilisateur identifié",
'userLoginPanelConnectedMessageText': "Vous vous êtes identifié avec succès",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Vérification des identifiants",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Nous essayons un ancien schéma d’authentification",
'userLoginPanelLoadingUserDataMessageTitle': "Utilisateur identifié",
'userLoginPanelLoadingUserDataMessageText': "Téléchargement des cartes d’en-têtes chiffrés depuis Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "Utilisateur identifié",
'userLoginPanelDecryptingUserDataMessageText': "Décryptage local des en-têtes chiffrés",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Utilisateur identifié",
'userLoginPanelDecryptingUserStatisticsMessageText': "Décryptage local des statistiques",
'splashAlertTitle': "Bienvenue sur Clipperz!",
'splashAlertText': "<p>Conseils de sécurité</p> <ul> <li> <p>Le stockage de vos mots de passe sur Clipperz est aussi sécurisé que la phrase que vous avez sélectionnée pour les protéger. Personne ne peux y accéder tant que personne ne connait votre phrase secrète.</p> </li> <li> <p>Si vous allez utiliser Clipperz pour sauvegarder des informations sensibles et critiques assurez-vous d’utiliser une phrase secrète compliquée. Plus elle sera longue mieux ce sera!</p> </li> <li> <p>Clipperz ne sera pas capable de récupérer votre phrase secrète!</p> </li> </ul> <p>Pour toute autre information, veuillez vous référer au site <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a>.</p> ",
'splashAlertCloseButtonLabel': "Ok",
'registrationFormTitle': "créer votre compte",
'registrationFormUsernameLabel': "nom d’utilisateur",
'registrationFormPassphraseLabel': "phrase secrète",
'registrationFormRetypePassphraseLabel': "re-saisissez votre phrase secrète",
'registrationFormSafetyCheckLabel': "J’accepte que Clipperz ne pourra pas récupérer ma phrase secrète.",
-'registrationFormTermsOfServiceCheckLabel': "J’ai lu et j’accepte les <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Conditions d’Utilisation du Service</a>.",
+'registrationFormTermsOfServiceCheckLabel': "J’ai lu et j’accepte les <a href='https://www.clipperz.com/terms_service' target='_blank'>Conditions d’Utilisation du Service</a>.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "avez-vous déjà un compte?",
'registrationFormSimplyLoginLabel': "identifiez-vous",
'registrationFormButtonLabel': "S’inscrire",
'registrationFormWarningMessageNotMatchingPassphrases': "Vos phrases secrètes ne correspondent pas, veuillez les saisir à nouveau.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Veuillez lire et cocher les cases-à-cocher ci-dessous.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Vous devez accepter les “Conditions d’Utilisation du Service”.",
'registrationMessagePanelInitialTitle': "Création du compte en cours ...",
'registrationMessagePanelInitialButtonLabel': "Annuler",
'registrationMessagePanelRegistrationDoneTitle': "Enregistrement",
'registrationMessagePanelRegistrationDoneText': "Terminé",
'registrationMessagePanelFailureTitle': "Enregistrement échoué",
'registrationMessagePanelFailureButtonLabel': "Fermer",
'connectionRegistrationSendingRequestMessageText': "Vérification en cours des identifiants",
'connectionRegistrationSendingCredentialsMessageText': "Envoi des identifiants",
'registrationSplashPanelTitle': "Conseils de sécurité",
'registrationSplashPanelDescription': "<p>Ce sont vos identifiants Clipperz, gardez les biens. Clipperz ne va plus jamais vous montrer votre nom d’utilisateur et votre phrase secrète!</p> ",
'registrationSplashPanelUsernameLabel': "nom d’utilisateur",
'registrationSplashPanelPassphraseLabel': "phrase secrète",
'registrationSplashPanelShowPassphraseButtonLabel': "afficher la phrase secrète",
'donateHeaderLinkLabel': "faites un don",
'creditsHeaderLinkLabel': "crédits",
'feedbackHeaderLinkLabel': "votre avis",
'helpHeaderLinkLabel': "aide",
'forumHeaderLinkLabel': "forum",
'recordMenuLabel': "cartes",
'accountMenuLabel': "compte",
'dataMenuLabel': "données",
'contactsMenuLabel': "contacts",
'toolsMenuLabel': "outils",
'logoutMenuLabel': "déconnexion",
'lockMenuLabel': "verrouiller",
'lockTitle': "Le compte est verrouillé",
'lockDescription': "<p>Pour déverrouiller votre compte, veuillez saisir votre phrase secrète</p> ",
'unlockButtonLabel': "Déverrouiller",
'changePasswordTabLabel': "Changer votre phrase secrète",
'changePasswordTabTitle': "Changer votre phrase secrète",
'changePasswordFormUsernameLabel': "nom d’utilisateur",
'changePasswordFormOldPassphraseLabel': "ancienne phrase secrète",
'changePasswordFormNewPassphraseLabel': "nouvelle phrase secrète",
'changePasswordFormRetypePassphraseLabel': "re-saisissez phrase secrète",
'changePasswordFormSafetyCheckboxLabel': "Je sais que Clipperz ne pourra pas récupérer ma phrase secrète.",
'changePasswordFormSubmitLabel': "Changer ma phrase secrète",
'changePasswordFormWrongUsernameWarning': "Nom d’utilisateur incorrect",
'changePasswordFormWrongPassphraseWarning': "Phrase secrète incorrect",
'changePasswordFormWrongRetypePassphraseWarning': "Votre phrase secrète ne correspond pas, veuillez la saisir à nouveau",
'changePasswordFormSafetyCheckWarning': "Veuillez lire et cocher la case-à-cocher ci-dessous",
'changePasswordFormProgressDialogTitle': "Changement des identifiants utilisateurs",
'changePasswordFormProgressDialogConnectedMessageTitle': "Connecté",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js
index 0499376..9dd0511 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js
@@ -32,97 +32,97 @@ Clipperz.PM.Strings.Languages['it-IT'.toLowerCase()] = MochiKit.Base.merge(Clipp
'loginFormAarghThatsBadLabel': "aargh! questo non è bello!",
'loginFormAfraidOfMaliciousScriptsLabel': "non ti fidi?",
'loginFormVerifyTheCodeLabel': "controlla il codice",
'loginFormButtonLabel': "Accedi",
'loginFormOneTimePasswordCheckboxLabel': "usa un codice “usa e getta”",
'loginFormOneTimePasswordCheckboxDescription': "",
'loginPanelSwithLanguageDescription': "<h5>Seleziona la tua lingua preferita</h5> ",
'browserCompatibilityDescription': "<p>Clipperz consiglia Firefox per una maggiore sicurezza. Clipperz supporta anche Opera ed Internet Explorer.</p> ",
'OTPloginMessagePanelInitialTitle': "Accesso con codice “usa e getta”",
'OTPloginMessagePanelInitialText': "Invio delle credenziali OTP ...",
'OTPloginMessagePanelLoadingTitle': "Accesso con codice “usa e getta”",
'OTPloginMessagePanelLoadingText': "Caricamento dei dati di autenticazione criptati ...",
'OTPloginMessagePanelProcessingTitle': "Accesso con codice “usa e getta”",
'OTPloginMessagePanelProcessingText': "Decodifica locale dei dati di autenticazione ...",
'loginMessagePanelInitialTitle': "Connessione in corso ...",
'loginMessagePanelInitialText': "---",
'loginMessagePanelInitialButtonLabel': "Annulla",
'loginMessagePanelConnectedTitle': "Connesso",
'loginMessagePanelConnectedText': "Fatto",
'loginMessagePanelFailureTitle': "Errore",
'loginMessagePanelFailureText': "Connessione fallita",
'loginMessagePanelFailureButtonLabel': "Chiudi",
'connectionLoginSendingCredentialsMessageTitle': "Verifica delle credenziali",
'connectionLoginSendingCredentialsMessageText': "Invio delle credenziali",
'connectionLoginCredentialsVerificationMessageTitle': "Verifica delle credenziali",
'connectionLoginCredentialsVerificationMessageText': "Esecuzione dell&#x27;autenticazione SRP ...",
'connectionLoginDoneMessageTitle': "Verifica delle credenziali",
'connectionLoginDoneMessageText': "Connesso",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Verifica delle credenziali",
'userLoginPanelUpgradingUserCredentialsMessageText': "Aggiornamento delle credenziali ad un nuovo schema di autenticazione",
'userLoginPanelConnectedMessageTitle': "Utente autenticato",
'userLoginPanelConnectedMessageText': "Autenticazione eseguita con successo",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Verifica delle credenziali",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Tentativo con vecchio schema di autenticazione",
'userLoginPanelLoadingUserDataMessageTitle': "Utente autenticato",
'userLoginPanelLoadingUserDataMessageText': "Scarica le intestazioni criptate delle schede da Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "Utente autenticato",
'userLoginPanelDecryptingUserDataMessageText': "Decodifica locale dell&#x27;intestazione delle schede",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Utente autenticato",
'userLoginPanelDecryptingUserStatisticsMessageText': "Decodifica locale delle statistiche d&#x27;uso",
'splashAlertTitle': "Benvenuto a Clipperz!",
'splashAlertText': "<p>Alcuni consigli per la sicurezza</p> <ul> <li> <p>La sicurezza dei tuoi dati dipende da quanto è sicura la frase segreta che usi per proteggerli. Nessuno può accedervi a meno che non conosca la frase segreta.</p> </li> <li> <p>Se hai intenzione di usare Clipperz per conservare informazioni sensibili e riservate, scegli attentamente una frase segreta complessa. Più è lunga, maggiore è la sicurezza!</p> </li> <li> <p>E non dimenticare che Clipperz non è in grado di recuperare la tua frase segreta in caso di smarrimento!</p> </li> </ul> <p>Per maggiori informazioni sulla sicurezza, consulta il sito <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a> (in lingua inglese).</p> ",
'splashAlertCloseButtonLabel': "Ok",
'registrationFormTitle': "crea il tuo utente",
'registrationFormUsernameLabel': "Utente",
'registrationFormPassphraseLabel': "frase segreta",
'registrationFormRetypePassphraseLabel': "ripeti frase segreta",
'registrationFormSafetyCheckLabel': "Sono consapevole che Clipperz non è in grado di recuperare una frase segreta dimenticata.",
-'registrationFormTermsOfServiceCheckLabel': "Dichiaro di aver letto e di accettare i <a href=\"http://www.clipperz.com/terms_of_service\" target=\"_blank\">Termini del Servizio</a> .",
+'registrationFormTermsOfServiceCheckLabel': "Dichiaro di aver letto e di accettare i <a href=\"https://www.clipperz.com/terms_service\" target=\"_blank\">Termini del Servizio</a> .",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "sei già un utente registrato?",
'registrationFormSimplyLoginLabel': "accedi subito",
'registrationFormButtonLabel': "Registrati",
'registrationFormWarningMessageNotMatchingPassphrases': "Le frasi segrete non corrispondono, ripeti l&#x27;inserimento.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Leggi e spunta le condizioni sotto riportate.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Per procedere devi accettare i Termini del Servizio.",
'registrationMessagePanelInitialTitle': "Registrazione in corso ...",
'registrationMessagePanelInitialText': "---",
'registrationMessagePanelInitialButtonLabel': "Annulla",
'registrationMessagePanelRegistrationDoneTitle': "Registrazione",
'registrationMessagePanelRegistrationDoneText': "Fatto",
'registrationMessagePanelFailureTitle': "Registrazione fallita",
'registrationMessagePanelFailureButtonLabel': "Chiudi",
'connectionRegistrationSendingRequestMessageText': "Verifica delle credenziali",
'connectionRegistrationSendingCredentialsMessageText': "Invio delle credenziali",
'registrationSplashPanelTitle': "Avviso di sicurezza",
'registrationSplashPanelDescription': "<p>Queste sono le tue credenziali di accesso a Clipperz, conservale con cura. Il tuo utente ed la tua frase segreta non ti verranno mostrati una seconda volta!</p> ",
'registrationSplashPanelUsernameLabel': "Utente",
'registrationSplashPanelPassphraseLabel': "frase segreta",
'registrationSplashPanelShowPassphraseButtonLabel': "mostra la frase segreta",
'donateHeaderLinkLabel': "donazioni",
'creditsHeaderLinkLabel': "credits",
'feedbackHeaderLinkLabel': "scrivici",
'helpHeaderLinkLabel': "aiuto",
'forumHeaderLinkLabel': "forum",
'recordMenuLabel': "Schede",
'accountMenuLabel': "profilo",
'dataMenuLabel': "dati",
'contactsMenuLabel': "Contatti",
'toolsMenuLabel': "strumenti",
'logoutMenuLabel': "esci",
'lockMenuLabel': "blocca",
'lockTitle': "Utente bloccato",
'lockDescription': "<p>Per sbloccare il tuo utente inserisci la frase segreta</p> ",
'unlockButtonLabel': "Sblocca",
'changePasswordTabLabel': "Cambia la tua frase segreta",
'changePasswordTabTitle': "Cambia la tua frase segreta",
'changePasswordFormUsernameLabel': "Utente",
'changePasswordFormOldPassphraseLabel': "attuale frase segreta",
'changePasswordFormNewPassphraseLabel': "nuova frase segreta",
'changePasswordFormRetypePassphraseLabel': "ripeti nuova frase segreta",
'changePasswordFormSafetyCheckboxLabel': "Sono consapevole che Clipperz non è in grado di recuperare una frase segreta dimenticata.",
'changePasswordFormSubmitLabel': "Cambia frase segreta",
'changePasswordFormWrongUsernameWarning': "Utente errato",
'changePasswordFormWrongPassphraseWarning': "Frase segreta errata",
'changePasswordFormWrongRetypePassphraseWarning': "Le frasi segrete non corrispondono, ripeti l&#x27;inserimento.",
'changePasswordFormSafetyCheckWarning': "Leggi e spunta le condizioni sotto riportate.",
'changePasswordFormProgressDialogTitle': "Aggiornamento credenziali",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js
index 8478c0d..e3c2fc7 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js
@@ -30,97 +30,97 @@ Clipperz.PM.Strings.Languages['pt-BR'.toLowerCase()] = MochiKit.Base.merge(Clipp
'loginFormCreateOneLabel': "criar uma",
'loginFormForgotYourCredentialsLabel': "esqueceu suas credenciais?",
'loginFormAarghThatsBadLabel': "xiiiii! isso é não é bom!",
'loginFormAfraidOfMaliciousScriptsLabel': "medo de scripts maliciosos?",
'loginFormVerifyTheCodeLabel': "verifique o código",
'loginFormButtonLabel': "Entrar",
'loginFormOneTimePasswordCheckboxLabel': "use uma frase chave descartável",
'loginPanelSwithLanguageDescription': "<h5>Mudar para sua linguagem preferida</h5> ",
'browserCompatibilityDescription': "<p>Tenha uma experiência melhor e mais segura com Clipperz, utilizando o Firefox. No entanto, Clipperz funciona bem também em Opera e MS Internet Explorer!</p> ",
'OTPloginMessagePanelInitialTitle': "Acessando usando a frase chave descartável",
'OTPloginMessagePanelInitialText': "Enviando credenciais descartáveis ...",
'OTPloginMessagePanelLoadingTitle': "Acessando usando a frase chave descartável",
'OTPloginMessagePanelLoadingText': "Buscando informação de autenticação codificada no servidor ...",
'OTPloginMessagePanelProcessingTitle': "Acessando usando a frase chave descartável",
'OTPloginMessagePanelProcessingText': "Decodificação local da informação de autenticação ...",
'loginMessagePanelInitialTitle': "Entrando ...",
'loginMessagePanelInitialButtonLabel': "Cancelar",
'loginMessagePanelConnectedTitle': "Conectado",
'loginMessagePanelConnectedText': "Concluído",
'loginMessagePanelFailureTitle': "Erro",
'loginMessagePanelFailureText': "Ocorreu uma falha",
'loginMessagePanelFailureButtonLabel': "Fechar",
'connectionLoginSendingCredentialsMessageTitle': "Verificando credenciais",
'connectionLoginSendingCredentialsMessageText': "Enviando credenciais",
'connectionLoginCredentialsVerificationMessageTitle': "Verificando credenciais",
'connectionLoginCredentialsVerificationMessageText': "Realizando autenticação SRP",
'connectionLoginDoneMessageTitle': "Verificando credenciais",
'connectionLoginDoneMessageText': "Conectado",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Verificando credenciais",
'userLoginPanelUpgradingUserCredentialsMessageText': "Upgrade de suas credenciais para um novo esquema de autenticação",
'userLoginPanelConnectedMessageTitle': "Usuário autenticado",
'userLoginPanelConnectedMessageText': "Logado com sucesso em",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Verificando credenciais",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Tentando esquema antigo de autenticação",
'userLoginPanelLoadingUserDataMessageTitle': "Usuário autenticado",
'userLoginPanelLoadingUserDataMessageText': "Baixando cabeçalhos de cartão codificados de Clipperz",
'userLoginPanelDecryptingUserDataMessageTitle': "Usuário autenticado",
'userLoginPanelDecryptingUserDataMessageText': "Descrição local de cabeçalhos dos cartões",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Usuário autenticado",
'userLoginPanelDecryptingUserStatisticsMessageText': "Descrição local de estatísticas de uso",
'splashAlertTitle': "Bem-vindo ao Clipperz!",
'splashAlertText': "<p>Alguns avisos de segurança</p> <ul> <li> <p>Guardar suas informações no Clipperz é tão seguro quanto a frase chave que você escolher para protege-los. Ninguém pode acessá-los sem essa frase chave.</p> </li> <li> <p>Se você vai utlizar Clipperz para armazenar suas informações confidenciais e críticas, escolha uma frase chave difícil de ser descoberta. Quanto mais longa, melhor!</p> </li> <li> <p>Clipperz não será capaz de recuperar frase chave perdidas!</p> </li> </ul> <p>Para mais informações, por favor vá até <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a> website.</p> ",
'splashAlertCloseButtonLabel': "Ok",
'registrationFormTitle': "crie sua conta",
'registrationFormUsernameLabel': "nome do usuário",
'registrationFormPassphraseLabel': "frase chave",
'registrationFormRetypePassphraseLabel': "entre novamente sua frase chave",
'registrationFormSafetyCheckLabel': "Eu compreendo que Clipperz não será capaz de recuperar senhas perdidas.",
-'registrationFormTermsOfServiceCheckLabel': "Eu li e concordo com os <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Termos do Serviço</a>.",
+'registrationFormTermsOfServiceCheckLabel': "Eu li e concordo com os <a href='https://www.clipperz.com/terms_service' target='_blank'>Termos do Serviço</a>.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "você já tem uma conta?",
'registrationFormSimplyLoginLabel': "login simples",
'registrationFormButtonLabel': "Registrar",
'registrationFormWarningMessageNotMatchingPassphrases': "Suas frases chaves não conferem, por favor tente novamente.",
'registrationFormWarningMessageSafetyCheckNotSelected': "Por favor leia e confira todos os campos abaixo.",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Você precisa concordar com os Termos do Serviço.",
'registrationMessagePanelInitialTitle': "Criando conta ...",
'registrationMessagePanelInitialText': "---",
'registrationMessagePanelInitialButtonLabel': "Cancelar",
'registrationMessagePanelRegistrationDoneTitle': "Registro",
'registrationMessagePanelRegistrationDoneText': "Concluído",
'registrationMessagePanelFailureTitle': "Registrou falhou",
'registrationMessagePanelFailureButtonLabel': "Fechar",
'connectionRegistrationSendingRequestMessageText': "Verificando credenciais",
'connectionRegistrationSendingCredentialsMessageText': "Enviando credenciais",
'registrationSplashPanelTitle': "Informe de segurança",
'registrationSplashPanelDescription': "<p>Essas são suas credenciais Clipperz, cuide delas com cuidado. Clipperz nunca vai mostrar seu nome de usuário e frase chave uma outra vez!</p> ",
'registrationSplashPanelUsernameLabel': "nome de usuário",
'registrationSplashPanelPassphraseLabel': "frase chave",
'registrationSplashPanelShowPassphraseButtonLabel': "mostrar frase chave",
'donateHeaderLinkLabel': "doar",
'creditsHeaderLinkLabel': "créditos",
'feedbackHeaderLinkLabel': "feedback",
'helpHeaderLinkLabel': "ajuda",
'forumHeaderLinkLabel': "fórum",
'recordMenuLabel': "cartões",
'accountMenuLabel': "conta",
'dataMenuLabel': "dados",
'contactsMenuLabel': "contatos",
'toolsMenuLabel': "ferramentas",
'logoutMenuLabel': "sair",
'lockMenuLabel': "bloquear",
'lockTitle': "A conta está bloqueada",
'lockDescription': "<p>Para desbloquear sua conta, por favor, entre com a frase chave</p> ",
'unlockButtonLabel': "desbloquear",
'changePasswordTabLabel': "Alterar sua frase chave",
'changePasswordTabTitle': "Alterar sua frase chave",
'changePasswordFormUsernameLabel': "nome de usuário",
'changePasswordFormOldPassphraseLabel': "frase chave antiga",
'changePasswordFormNewPassphraseLabel': "frase chave nova",
'changePasswordFormRetypePassphraseLabel': "re-inserir frase chave nova",
'changePasswordFormSafetyCheckboxLabel': "Eu compreendo que Clipperz não poderá recuperar a frase chave perdida.",
'changePasswordFormSubmitLabel': "Alterar frase chave",
'changePasswordFormWrongUsernameWarning': "Nome de usuário errado",
'changePasswordFormWrongPassphraseWarning': "Frase chave errada",
'changePasswordFormWrongRetypePassphraseWarning': "Suas frases chaves não conferem, por favor tente novamente.",
'changePasswordFormSafetyCheckWarning': "Por favor leia e confira todos os campos abaixo.",
'changePasswordFormProgressDialogTitle': "Alterando credenciais do usuário",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js
index 612e745..0d71345 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js
@@ -37,97 +37,97 @@ Clipperz.PM.Strings.Languages['ru-RU'.toLowerCase()] = MochiKit.Base.merge(Clipp
'loginFormCreateOneLabel': "создать сейчас",
'loginFormForgotYourCredentialsLabel': "забыли пароль?",
'loginFormAarghThatsBadLabel': "это плохо!",
'loginFormAfraidOfMaliciousScriptsLabel': "опасаетесь вредоносных скриптов?",
'loginFormVerifyTheCodeLabel': "проверить",
'loginFormButtonLabel': "Войти",
'loginFormOneTimePasswordCheckboxLabel': "использовать одноразовый пароль",
'loginPanelSwithLanguageDescription': "<h5>Переключить язык</h5> ",
'browserCompatibilityDescription': "<p>Clipperz адаптирован для Firefox. Но также совместим с Opera и MS Internet Explorer!</p> ",
'OTPloginMessagePanelInitialTitle': "Вход",
'OTPloginMessagePanelInitialText': "Передача данных учетной записи ...",
'OTPloginMessagePanelLoadingTitle': "Вход",
'OTPloginMessagePanelLoadingText': "Запрос аутентификационных данных с сервера ...",
'OTPloginMessagePanelProcessingTitle': "Вход",
'OTPloginMessagePanelProcessingText': "Расшифровка аутентификационных данных",
'loginMessagePanelInitialTitle': "Вход ...",
'loginMessagePanelInitialButtonLabel': "Отмена",
'loginMessagePanelConnectedTitle': "Соединен",
'loginMessagePanelConnectedText': "Выполнен",
'loginMessagePanelFailureTitle': "Ошибка",
'loginMessagePanelFailureText': "Ошибка при попытке входа",
'loginMessagePanelFailureButtonLabel': "Закрыть",
'connectionLoginSendingCredentialsMessageTitle': "Проверка учетной записи",
'connectionLoginSendingCredentialsMessageText': "Передача данных ...",
'connectionLoginCredentialsVerificationMessageTitle': "Проверка учетной записи",
'connectionLoginCredentialsVerificationMessageText': "Выполняем SRP-аутентификацию ...",
'connectionLoginDoneMessageTitle': "Проверка учетной записи",
'connectionLoginDoneMessageText': "Соединено",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "Проверка учетной записи",
'userLoginPanelUpgradingUserCredentialsMessageText': "Обновляем полномочия к новой схеме аутентификации",
'userLoginPanelConnectedMessageTitle': "Пользователь аутентифицирован",
'userLoginPanelConnectedMessageText': "Успешный вход",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "Проверка учетной записи",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "Пробуем войти по старой схеме",
'userLoginPanelLoadingUserDataMessageTitle': "Пользователь аутентифицирован",
'userLoginPanelLoadingUserDataMessageText': "Загрузка зашифрованных заголовков карточек",
'userLoginPanelDecryptingUserDataMessageTitle': "Пользователь аутентифицирован",
'userLoginPanelDecryptingUserDataMessageText': "Расшифровка заголовков карточек",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "Пользователь аутентифицирован",
'userLoginPanelDecryptingUserStatisticsMessageText': "Расшифровка статистики",
'splashAlertTitle': "Добро пожаловать в Clipperz!",
'splashAlertText': "<p>Несколько советов по безопасности:</p> <ul> <li> <p>Хранение данных в Clipperz зависит от того, насколько безопасен выбранный вами пароль</p> </li> <li> <p>Если собираетесь использовать Clipperz для защиты важных или критических данных, то убедитесь, что выбрали сложный пароль</p> </li> <li> <p>Clipperz не сможет восстановить забытый пароль</p> </li> </ul> <p>За дополнительной информацией обратитесь на <a href=\"http://www.clipperz.com\" target=\"_blank\">сайт</a> Clipperz.</p> ",
'splashAlertCloseButtonLabel': "OK",
'registrationFormTitle': "создать аккаунт",
'registrationFormUsernameLabel': "имя пользователя",
'registrationFormPassphraseLabel': "пароль",
'registrationFormRetypePassphraseLabel': "повторите пароль",
'registrationFormSafetyCheckLabel': "Я понимаю, что Clipperz не сможет восстановить забытый пароль",
-'registrationFormTermsOfServiceCheckLabel': "Я прочитал и согласен с <a href='http://www.clipperz.com/terms_of_service' target='_blank'>Условиями предоставления услуг</a>.",
+'registrationFormTermsOfServiceCheckLabel': "Я прочитал и согласен с <a href='https://www.clipperz.com/terms_service' target='_blank'>Условиями предоставления услуг</a>.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "у вас уже есть аккаунт?",
'registrationFormSimplyLoginLabel': "просто авторизируйтесь",
'registrationFormButtonLabel': "Зарегистрировать",
'registrationFormWarningMessageNotMatchingPassphrases': "Пароли не совпадают, пожайлуста, повторите ввод",
'registrationFormWarningMessageSafetyCheckNotSelected': "Прочитайте и проверьте все поля ниже",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "Вы должны принять Условия предоставления услуг",
'registrationMessagePanelInitialTitle': "Создание аккаунта",
'registrationMessagePanelInitialButtonLabel': "Отмена",
'registrationMessagePanelRegistrationDoneTitle': "Регистрация",
'registrationMessagePanelRegistrationDoneText': "Выполнено",
'registrationMessagePanelFailureTitle': "Ошибка регистрации",
'registrationMessagePanelFailureButtonLabel': "Закрыть",
'connectionRegistrationSendingRequestMessageText': "Проверка учетной записи",
'connectionRegistrationSendingCredentialsMessageText': "Передача данных",
'registrationSplashPanelTitle': "Совет",
'registrationSplashPanelDescription': "<p>Это ваши данные учетной записи, позаботесь об их безопасности. Clipperz никогда больше не покажет ваш логин и пароль!</p> ",
'registrationSplashPanelUsernameLabel': "имя пользователя",
'registrationSplashPanelPassphraseLabel': "пароль",
'registrationSplashPanelShowPassphraseButtonLabel': "показать пароль",
'donateHeaderLinkLabel': "помочь проекту",
'creditsHeaderLinkLabel': "авторы",
'feedbackHeaderLinkLabel': "обратная связь",
'helpHeaderLinkLabel': "помощь",
'forumHeaderLinkLabel': "форум",
'recordMenuLabel': "карточки",
'accountMenuLabel': "аккаунт",
'dataMenuLabel': "данные",
'contactsMenuLabel': "контакты",
'toolsMenuLabel': "инструменты",
'logoutMenuLabel': "выход",
'lockMenuLabel': "заблокировать",
'lockTitle': "Аккаунт заблокирован",
'lockDescription': "<p>Введите пароль для разблокировки</p> ",
'unlockButtonLabel': "разблокировать",
'changePasswordTabLabel': "Изменить пароль",
'changePasswordTabTitle': "Изменить пароль",
'changePasswordFormUsernameLabel': "логин",
'changePasswordFormOldPassphraseLabel': "старый пароль",
'changePasswordFormNewPassphraseLabel': "новый пароль",
'changePasswordFormRetypePassphraseLabel': "повторите пароль",
'changePasswordFormSafetyCheckboxLabel': "Я понимаю, что Clipperz не сможет восстановить забытый пароль.",
'changePasswordFormSubmitLabel': "Изменить",
'changePasswordFormWrongUsernameWarning': "Неправильный логин",
'changePasswordFormWrongPassphraseWarning': "Неверный пароль",
'changePasswordFormWrongRetypePassphraseWarning': "Пароли не совпадают, пожайлуста, повторите ввод.",
'changePasswordFormSafetyCheckWarning': "Прочитайте и проверьте все поля ниже.",
'changePasswordFormProgressDialogTitle': "Изменение учетной записи",
'changePasswordFormProgressDialogConnectedMessageTitle': "Соединено",
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js
index e880954..e1e2508 100644
--- a/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js
@@ -30,97 +30,97 @@ Clipperz.PM.Strings.Languages['zh-CN'.toLowerCase()] = MochiKit.Base.merge(Clipp
'loginFormCreateOneLabel': "创建一个新帐户",
'loginFormForgotYourCredentialsLabel': "忘记你的证书?",
'loginFormAarghThatsBadLabel': "呃?这下糟糕了",
'loginFormAfraidOfMaliciousScriptsLabel': "害怕有恶意脚本?",
'loginFormVerifyTheCodeLabel': "验证代码",
'loginFormButtonLabel': "登录",
'loginFormOneTimePasswordCheckboxLabel': "使用一次性密码短语",
'loginPanelSwithLanguageDescription': "<h5>选择你的第一语言</h5> ",
'browserCompatibilityDescription': "<p>使用 Firefox 将得到更快更安全的 Clipperz 服务。不过 Clipperz 同样可以很好的工作在 Opera 和 微软的 IE 中。</p> ",
'OTPloginMessagePanelInitialTitle': "用一次性密码短语登录",
'OTPloginMessagePanelInitialText': "发送 OTP 证书 ...",
'OTPloginMessagePanelLoadingTitle': "用一次性密码短语登录",
'OTPloginMessagePanelLoadingText': "从服务器读取加密认证数据 ...",
'OTPloginMessagePanelProcessingTitle': "用一次性密码短语登录",
'OTPloginMessagePanelProcessingText': "本地解密认证数据",
'loginMessagePanelInitialTitle': "登录中...",
'loginMessagePanelInitialButtonLabel': "取消",
'loginMessagePanelConnectedTitle': "连接成功",
'loginMessagePanelConnectedText': "完成",
'loginMessagePanelFailureTitle': "错误",
'loginMessagePanelFailureText': "登录失败",
'loginMessagePanelFailureButtonLabel': "取消",
'connectionLoginSendingCredentialsMessageTitle': "验证证书",
'connectionLoginSendingCredentialsMessageText': "传送证书",
'connectionLoginCredentialsVerificationMessageTitle': "验证证书",
'connectionLoginCredentialsVerificationMessageText': "进行 SRP 认证",
'connectionLoginDoneMessageTitle': "验证证书",
'connectionLoginDoneMessageText': "已连接",
'userLoginPanelUpgradingUserCredentialsMessageTitle': "验证证书",
'userLoginPanelUpgradingUserCredentialsMessageText': "升级证书到新的认证模式",
'userLoginPanelConnectedMessageTitle': "用户识别",
'userLoginPanelConnectedMessageText': "成功登录",
'userLoginPanelTryingAnOlderConnectionSchemaMessageTitle': "验证证书",
'userLoginPanelTryingAnOlderConnectionSchemaMessageText': "旧认证模式失效",
'userLoginPanelLoadingUserDataMessageTitle': "用户识别",
'userLoginPanelLoadingUserDataMessageText': "正在从 Clipperz 下载加密卡报头",
'userLoginPanelDecryptingUserDataMessageTitle': "用户识别",
'userLoginPanelDecryptingUserDataMessageText': "加密卡报头本地解密",
'userLoginPanelDecryptingUserStatisticsMessageTitle': "用户识别",
'userLoginPanelDecryptingUserStatisticsMessageText': "本地解密使用统计",
'splashAlertTitle': "Clipperz 欢迎您",
'splashAlertText': "<p>安全忠告</p> <ul> <li> <p>在 Clipperz ,用你选择的密码短语保存数据是安全的。没有人能够得到这些数据,除非他们有你的密码。</p> </li> <li> <p> 如果你决定使用 Clipperz 保护敏感数据和关键资料,请务必选用一个复杂的密码短语。越长越好</p> </li> <li> <p>注意:Clipperz将无法找回忘记的密码码短语!</p> </li> </ul> <p>获得更多的说明,请前往 <a href=\"http://www.clipperz.com\" target=\"_blank\">Clipperz</a> 网站.</p> ",
'splashAlertCloseButtonLabel': "确定",
'registrationFormTitle': "创建你的帐户",
'registrationFormUsernameLabel': "用户名",
'registrationFormPassphraseLabel': "密码短语",
'registrationFormRetypePassphraseLabel': "确认密码短语",
'registrationFormSafetyCheckLabel': "我明白 Clipperz 无法找回忘记的密码短语.",
-'registrationFormTermsOfServiceCheckLabel': "我同意接受 <a href='http://www.clipperz.com/terms_of_service' target='_blank'>服务条款</a> 款.",
+'registrationFormTermsOfServiceCheckLabel': "我同意接受 <a href='https://www.clipperz.com/terms_service' target='_blank'>服务条款</a> 款.",
'registrationFormDoYouAlreadyHaveAnAccountLabel': "如果已有一个 Clipperz 帐户",
'registrationFormSimplyLoginLabel': "在此登录",
'registrationFormButtonLabel': "注册",
'registrationFormWarningMessageNotMatchingPassphrases': "两次密码短语不同,请重新输入",
'registrationFormWarningMessageSafetyCheckNotSelected': "请阅读并检查下面的选项框",
'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "您需要同意服务条款",
'registrationMessagePanelInitialTitle': "创建账户...",
'registrationMessagePanelInitialButtonLabel': "取消",
'registrationMessagePanelRegistrationDoneTitle': "注册",
'registrationMessagePanelRegistrationDoneText': "完成",
'registrationMessagePanelFailureTitle': "注册失败",
'registrationMessagePanelFailureButtonLabel': "关闭",
'connectionRegistrationSendingRequestMessageText': "验证证书",
'connectionRegistrationSendingCredentialsMessageText': "传送证书",
'registrationSplashPanelTitle': "安全忠告",
'registrationSplashPanelDescription': "<p>这是你的 Clipperz 证书,请保存好。Clipperz 永远不会第二次显示你的用户名和密码短语</p> ",
'registrationSplashPanelUsernameLabel': "用户名",
'registrationSplashPanelPassphraseLabel': "密码短语",
'registrationSplashPanelShowPassphraseButtonLabel': "显示密码短语",
'donateHeaderLinkLabel': "捐赠",
'creditsHeaderLinkLabel': "致谢",
'feedbackHeaderLinkLabel': "反馈",
'helpHeaderLinkLabel': "帮助",
'forumHeaderLinkLabel': "论坛",
'recordMenuLabel': "密码卡片",
'accountMenuLabel': "账户",
'dataMenuLabel': "资料",
'contactsMenuLabel': "联系",
'toolsMenuLabel': "工具",
'logoutMenuLabel': "暂时离开",
'lockMenuLabel': "安全锁",
'lockTitle': "账户被锁定",
'lockDescription': "<p>请输入你的密码短语解开账户</p> ",
'unlockButtonLabel': "解锁",
'changePasswordTabLabel': "修改密码短语",
'changePasswordTabTitle': "修改密码短语",
'changePasswordFormUsernameLabel': "用户名",
'changePasswordFormOldPassphraseLabel': "旧密码短语",
'changePasswordFormNewPassphraseLabel': "新密码短语",
'changePasswordFormRetypePassphraseLabel': "确认密码短语",
'changePasswordFormSafetyCheckboxLabel': "我知道 Clipperz 不能找回丢失的密码短语",
'changePasswordFormSubmitLabel': "修改密码短语",
'changePasswordFormWrongUsernameWarning': "用户名错误",
'changePasswordFormWrongPassphraseWarning': "旧密码短语错误",
'changePasswordFormWrongRetypePassphraseWarning': "两次密码短语不同,请重新输入",
'changePasswordFormSafetyCheckWarning': "请阅读并检查下面的选项框",
'changePasswordFormProgressDialogTitle': "正在修改密码短语",
'changePasswordFormProgressDialogConnectedMessageTitle': "连接",