summaryrefslogtreecommitdiff
path: root/frontend/beta/js/Clipperz/PM/Strings
authorGiulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
committer Giulio Cesare Solaroli <giulio.cesare@clipperz.com>2011-10-02 23:56:18 (UTC)
commitef68436ac04da078ffdcacd7e1f785473a303d45 (patch) (side-by-side diff)
treec403752d66a2c4775f00affd4fa8431b29c5b68c /frontend/beta/js/Clipperz/PM/Strings
parent597ecfbc0249d83e1b856cbd558340c01237a360 (diff)
downloadclipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.zip
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.gz
clipperz-ef68436ac04da078ffdcacd7e1f785473a303d45.tar.bz2
First version of the newly restructured repository
Diffstat (limited to 'frontend/beta/js/Clipperz/PM/Strings') (more/less context) (ignore whitespace changes)
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js389
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js352
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js701
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_en-CA.js43
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_en-GB.js43
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js1259
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js480
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js362
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_he-IL.js40
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js694
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_ja-JP.js808
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js478
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_pt-PT.js42
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js440
-rw-r--r--frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js477
15 files changed, 6608 insertions, 0 deletions
diff --git a/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js b/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js
new file mode 100644
index 0000000..446e96c
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/MessagePanelConfigurations.js
@@ -0,0 +1,389 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
+if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
+if (typeof(Clipperz.PM.Strings) == 'undefined') { Clipperz.PM.Strings = {}; }
+
+Clipperz.PM.Strings.messagePanelConfigurations = {
+
+
+ //-------------------------------------------------------------------------
+ //
+ // Registration - connection
+ //
+ 'registration_verify': function() {
+ return {
+ 'title': null,
+ 'text': Clipperz.PM.Strings['connectionRegistrationSendingRequestMessageText']
+ }
+ },
+
+ 'registration_sendingCredentials': function() {
+ return {
+ 'title': null,
+ 'text': Clipperz.PM.Strings['connectionRegistrationSendingCredentialsMessageText']
+ }
+ },
+
+ //-------------------------------------------------------------------------
+ //
+ // One Time Password login message panel
+ //
+
+ 'OTP_login_start': function() {
+ return {
+ 'title': Clipperz.PM.Strings['OTPloginMessagePanelInitialTitle'],
+ 'text': Clipperz.PM.Strings['OTPloginMessagePanelInitialText'],
+ 'steps': '+3',
+ 'buttons': {}
+ }
+ },
+
+ 'OTP_login_loadingOTP': function() {
+ return {
+ 'title': Clipperz.PM.Strings['OTPloginMessagePanelLoadingTitle'],
+ 'text': Clipperz.PM.Strings['OTPloginMessagePanelLoadingText']
+ }
+ },
+
+ 'OTP_login_extractingPassphrase': function() {
+ return {
+ 'title': Clipperz.PM.Strings['OTPloginMessagePanelProcessingTitle'],
+ 'text': Clipperz.PM.Strings['OTPloginMessagePanelProcessingText']
+ }
+ },
+
+
+ //-------------------------------------------------------------------------
+ //
+ // Login message panel
+ //
+ 'login_start': function() {
+ return {
+ 'title': Clipperz.PM.Strings['loginMessagePanelInitialTitle'],
+ 'text': Clipperz.PM.Strings['loginMessagePanelInitialText'],
+ 'steps': '+7',
+ 'buttons': {
+ 'ok': Clipperz.PM.Strings['loginMessagePanelInitialButtonLabel']
+ }
+ }
+ },
+
+ 'login_connected': function() {
+ return {
+ 'title': Clipperz.PM.Strings['loginMessagePanelConnectedTitle'],
+ 'text': Clipperz.PM.Strings['loginMessagePanelConnectedText'],
+ 'buttons': {}
+ }
+ },
+
+ 'login_failed': function() {
+ return {
+ 'title': Clipperz.PM.Strings['loginMessagePanelFailureTitle'],
+ 'text': Clipperz.PM.Strings['loginMessagePanelFailureText'],
+ 'button': Clipperz.PM.Strings['loginMessagePanelFailureButtonLabel']
+ }
+ },
+
+ //-------------------------------------------------------------------------
+ //
+ // Login message panel - connection
+ //
+ 'connection_sendingCredentials': function() {
+ return {
+ 'title': Clipperz.PM.Strings['connectionLoginSendingCredentialsMessageTitle'],
+ 'text': Clipperz.PM.Strings['connectionLoginSendingCredentialsMessageText']
+ }
+ },
+
+ 'connection_credentialVerification': function() {
+ return {
+ 'title': Clipperz.PM.Strings['connectionLoginCredentialsVerificationMessageTitle'],
+ 'text': Clipperz.PM.Strings['connectionLoginCredentialsVerificationMessageText']
+ }
+ },
+
+ 'connection_loggedIn': function() {
+ return {
+ 'title': Clipperz.PM.Strings['connectionLoginDoneMessageTitle'],
+ 'text': Clipperz.PM.Strings['connectionLoginDoneMessageText']
+ }
+ },
+
+ //-------------------------------------------------------------------------
+ //
+ // Login message panel - user
+ //
+ 'connection_upgrading': function() {
+ return {
+ 'title': Clipperz.PM.Strings['userLoginPanelUpgradingUserCredentialsMessageTitle'],
+ 'text': Clipperz.PM.Strings['userLoginPanelUpgradingUserCredentialsMessageText'],
+ 'steps': '+1'
+ }
+ },
+
+ 'connection_done': function() {
+ return {
+ 'title': Clipperz.PM.Strings['userLoginPanelConnectedMessageTitle'],
+ 'text': Clipperz.PM.Strings['userLoginPanelConnectedMessageText']
+ }
+ },
+
+ 'connection_tryOlderSchema': function() {
+ return {
+ 'title': Clipperz.PM.Strings['userLoginPanelTryingAnOlderConnectionSchemaMessageTitle'],
+ 'text': Clipperz.PM.Strings['userLoginPanelTryingAnOlderConnectionSchemaMessageText'],
+ 'steps': '+4'
+ }
+ },
+
+ 'connection_loadingUserData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['userLoginPanelLoadingUserDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['userLoginPanelLoadingUserDataMessageText']
+ }
+ },
+
+ 'connection_decryptingUserData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['userLoginPanelDecryptingUserDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['userLoginPanelDecryptingUserDataMessageText'],
+ 'steps': '+1'
+ }
+ },
+
+ 'connection_decryptingUserStatistics': function() {
+ return {
+ 'title': Clipperz.PM.Strings['userLoginPanelDecryptingUserStatisticsMessageTitle'],
+ 'text': Clipperz.PM.Strings['userLoginPanelDecryptingUserStatisticsMessageText']
+ }
+ },
+
+ 'collectingEntropy': function() {
+ return {
+ 'text': Clipperz.PM.Strings['panelCollectingEntryopyMessageText'],
+ 'steps': '+1'
+ }
+ },
+
+ //-------------------------------------------------------------------------
+ //
+ // Cards block - delete card panel
+ //
+ 'deleteRecord_collectData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['deleteRecordPanelCollectRecordDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['deleteRecordPanelCollectRecordDataMessageText']
+ }
+ },
+
+ 'deleteRecord_encryptData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['deleteRecordPanelEncryptUserDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['deleteRecordPanelEncryptUserDataMessageText']
+ }
+ },
+
+ 'deleteRecord_sendingData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['deleteRecordPanelSendingDataToTheServerMessageTitle'],
+ 'text': Clipperz.PM.Strings['deleteRecordPanelSendingDataToTheServerMessageText']
+ }
+ },
+
+ 'deleteRecord_updatingInterface': function() {
+ return {
+ 'title': Clipperz.PM.Strings['deleteRecordPanelUpdatingTheInterfaceMessageTitle'],
+ 'text': Clipperz.PM.Strings['deleteRecordPanelUpdatingTheInterfaceMessageText']
+ }
+ },
+
+
+ //-------------------------------------------------------------------------
+ //
+ // Cards block - save card panel
+ //
+ 'saveCard_collectRecordInfo': function() {
+ return {
+ 'title': Clipperz.PM.Strings['recordSaveChangesPanelCollectRecordInfoMessageTitle'],
+ 'text': Clipperz.PM.Strings['recordSaveChangesPanelCollectRecordInfoMessageText']
+ }
+ },
+
+ 'saveCard_encryptUserData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['recordSaveChangesPanelEncryptUserDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['recordSaveChangesPanelEncryptUserDataMessageText']
+ }
+ },
+
+ 'saveCard_encryptRecordData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['recordSaveChangesPanelEncryptRecordDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['recordSaveChangesPanelEncryptRecordDataMessageText']
+ }
+ },
+
+ 'saveCard_encryptRecordVersions': function() {
+ return {
+ 'title': Clipperz.PM.Strings['recordSaveChangesPanelEncryptRecordVersionDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['recordSaveChangesPanelEncryptRecordVersionDataMessageText']
+ }
+ },
+
+ 'saveCard_sendingData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['recordSaveChangesPanelSendingDataToTheServerMessageTitle'],
+ 'text': Clipperz.PM.Strings['recordSaveChangesPanelSendingDataToTheServerMessageText']
+ }
+ },
+
+ 'saveCard_updatingInterface': function() {
+ return {
+ 'title': Clipperz.PM.Strings['recordSaveChangesPanelUpdatingTheInterfaceMessageTitle'],
+ 'text': Clipperz.PM.Strings['recordSaveChangesPanelUpdatingTheInterfaceMessageText']
+ }
+ },
+
+ //-------------------------------------------------------------------------
+ //
+ // Account panel - user preferences
+ //
+ 'account_savingPreferences_1': function() {
+ return {
+ 'title': Clipperz.PM.Strings['accountPreferencesSavingPanelTitle_Step1'],
+ 'text': Clipperz.PM.Strings['accountPreferencesSavingPanelText_Step1'],
+ 'steps': '+3'
+ }
+ },
+
+ 'account_savingPreferences_2': function() {
+ return {
+ 'title': Clipperz.PM.Strings['accountPreferencesSavingPanelTitle_Step2'],
+ 'text': Clipperz.PM.Strings['accountPreferencesSavingPanelText_Step2']
+ }
+ },
+
+
+ //-------------------------------------------------------------------------
+ //
+ // Account panel - change credentials
+ //
+ 'changeCredentials_encryptingData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['changeCredentialsPanelEncryptingDataMessageTitle'],
+ 'text': Clipperz.PM.Strings['changeCredentialsPanelEncryptingDataMessageText']
+ }
+ },
+
+ 'changeCredentials_creatingNewCredentials': function() {
+ return {
+ 'title': Clipperz.PM.Strings['changeCredentialsPanelCreatingNewCredentialsMessageTitle'],
+ 'text': Clipperz.PM.Strings['changeCredentialsPanelCreatingNewCredentialsMessageText']
+ }
+ },
+
+ 'changeCredentials_sendingCredentials': function() {
+ return {
+ 'title': Clipperz.PM.Strings['changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle'],
+ 'text': Clipperz.PM.Strings['changeCredentialsPanelSendingNewCredentialsToTheServerMessageText']
+ }
+ },
+
+ 'changeCredentials_done': function() {
+ return {
+ 'title': Clipperz.PM.Strings['changeCredentialsPanelDoneMessageTitle'],
+ 'text': Clipperz.PM.Strings['changeCredentialsPanelDoneMessageText']
+ }
+ },
+
+
+ //-------------------------------------------------------------------------
+ //
+ // Account panel - change credentials
+ //
+ 'saveOTP_encryptUserData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['saveOTP_encryptUserDataTitle'],
+ 'text': Clipperz.PM.Strings['saveOTP_encryptUserDataText'],
+ 'steps': '+4'
+ }
+ },
+
+ 'saveOTP_encryptOTPData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['saveOTP_encryptOTPDataTitle'],
+ 'text': Clipperz.PM.Strings['saveOTP_encryptOTPDataText']
+ }
+ },
+
+ 'saveOTP_sendingData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['saveOTP_sendingDataTitle'],
+ 'text': Clipperz.PM.Strings['saveOTP_sendingDataText']
+ }
+ },
+
+ 'saveOTP_updatingInterface': function() {
+ return {
+ 'title': Clipperz.PM.Strings['saveOTP_updatingInterfaceTitle'],
+ 'text': Clipperz.PM.Strings['saveOTP_updatingInterfaceText']
+ }
+ },
+
+
+ //-------------------------------------------------------------------------
+ //
+ // Data panel - processingImportData
+ //
+ 'parseImportData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['importData_parsingDataTitle'],
+ 'text': Clipperz.PM.Strings['importData_parsingDataText']
+ }
+ },
+
+ 'previewImportData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['importData_previewingDataTitle'],
+ 'text': Clipperz.PM.Strings['importData_previewingDataText']
+ }
+ },
+
+ 'processingImportData': function() {
+ return {
+ 'title': Clipperz.PM.Strings['importData_processingDataTitle'],
+ 'text': Clipperz.PM.Strings['importData_processingDataText']
+ }
+ },
+
+ //-------------------------------------------------------------------------
+ __syntaxFix__: "syntax fix"
+
+}
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js
new file mode 100644
index 0000000..ecc8a36
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_de-DE.js
@@ -0,0 +1,352 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+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.",
+'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",
+'changePasswordFormProgressDialogErrorMessageTitle': "Fehler",
+'changePasswordFormProgressDialogErrorMessageText': "Ändern der Zugangsdaten fehlgeschlagen!",
+'changeCredentialsPanelEncryptingDataMessageTitle': "Ändere Sicherheitssatz",
+'changeCredentialsPanelEncryptingDataMessageText': "Lokale Verschlüsselung der Kartendaten",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Ändere Sicherheitssatz",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Aktualisiere Zugangsdaten",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Ändere Sicherheitssatz",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Sende verschlüsselte Zugangsdaten zu Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "Ändere Sicherheitssatz",
+'changeCredentialsPanelDoneMessageText': "Fertig",
+'manageOTPTabLabel': "Verwaltung des Sicheitssatzes für einmaliges Anmelden",
+'manageOTPTabTitle': "Verwaltung des Sicheitssatzes für einmaliges Anmelden",
+'manageOTPTabDescription': "<p>Der Sicherheitssatz für einmaliges Anmelden funktoniert wie Dein regulärer Sicherheitssatz, nur dass er nur einmal verwendet werden kann.</p> <p>Sollte der gleiche Sicherheitssatz zu einem späteren Zeitpunkt nocheinmal genutzt werden, wird dieser automatisch zurückgewießen und der Einlogvorgang scheitert.</p> <p>Sofort nach einem erfolgreichen Login wird der Sicherheitssatz für einmaliges Anmelden gelöscht und somit verhindert dass er ungewollt verwendet wird.</p> <p>Die Nutzung von Sicherheitssätzen für einmaliges Anmelden sind eine ideale Möglichkeit wenn Du verunsichert bist ob Trojaner, Spyware oder ähnliches auf Deinem Rechner vorhanden ist.</p> <p> <b>Es wird empfohlen Sicherheitssätze für einmaliges Anmelden beim Zugiff auf Clipperz zu verwenden, wenn man sich an öffentlichen Rechnern befindet, wie in Internet Cafes oder Bücherreien.</b> </p> <p> </p> <p> <b>Mehr dazu in Kürze ...</b> </p> ",
+'accountPreferencesLabel': "Einstellungen",
+'accountPreferencesTabTitle': "Einstellungen",
+'accountPreferencesLanguageTitle': "Sprachenauswahl",
+'accountPreferencesLanguageDescription': "<p>Wähle Deine bevorzugte Sprache, aus der unten stehenden Liste.</p> ",
+'accountPreferencesInterfaceTitle': "Personalisiere Dein persönliches Clipperz-Erscheinungsbild",
+'accountPreferencesInterfaceDescription': "<p>Passe dass Clipperz-Erscheinungsbild an Deine Wünsche an.</p> ",
+'saveUserPreferencesFormSubmitLabel': "Speichern",
+'cancelUserPreferencesFormSubmitLabel': "Abbruch",
+'accountPreferencesSavingPanelTitle_Step1': "Speichere Einstellungen",
+'accountPreferencesSavingPanelText_Step1': "Lokale Verschlüsselung der Einstellungen",
+'accountPreferencesSavingPanelTitle_Step2': "Speichere Einstellungen",
+'accountPreferencesSavingPanelText_Step2': "Sende verschlüsselte Einstellungen",
+'deleteAccountTabLabel': "Konto löschen",
+'deleteAccountTabTitle': "Konto löschen",
+'deleteAccountFormUsernameLabel': "Benutzername",
+'deleteAccountFormPassphraseLabel': "Sicherheitssatz",
+'deleteAccountFormSafetyCheckboxLabel': "Ich bin mir bewusst, dass alle meine Daten gelöscht werden und dieser Vorgang in keinem Falle rückgängig gemacht werden kann.",
+'deleteAccountFormSubmitLabel': "Konto löschens",
+'deleteAccountFormWrongUsernameWarning': "Falscher Benutzername",
+'deleteAccountFormWrongPassphraseWarning': "Falscher Sicherheitssatz",
+'deleteAccountFormSafetyCheckWarning': "Bitte lese die Bedingungen und akzeptiere die Auswahlboxen weiter unten.",
+'accountPanelDeletingAccountPanelConfirmationTitle': "ACHTUNG",
+'accountPanelDeleteAccountPanelConfirmationText': "Bist Du sicher, dass Du den Zugang löschen möchtest?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "Ja",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "Nein",
+'offlineCopyTabLabel': "Offline Kopie",
+'offlineCopyTabTitle': "Offline Kopie",
+'offlineCopyTabDescription': "<p>Mit nur einem Klick kannst Du alle Deine verschlüsselten Daten von dem Clipperz Server auf Deine Festplatte speichern und somit eine “nur lesbare” Offline Version anlegen. Diese Version ist auch dann verwendbar, wenn Du keine Verbindung ins Internet hast. (Zum Beispiel zum Speichern von Login-Informationen bei einem Hotspot)</p> <p>Die “nur lesbare” Version ist genauso sicher, wie die änderbare Version auf dem Server. Deine Daten werden niemals entschlüsselt gespeichert - beide Versionen verwenden die gleiche Art der Verschlüsselung und Entschlüsselung direkt im Browser.</p> <ol> <li> <p>Klicke auf den untenstehenden Link um die Offline Version herunterzuladen.</p> </li> <li> <p>Der Browser fragt Dich, was Du mit der Datei “Clipperz_YYYYMMDD.zip” machen möchtest. Speichere Sie auf Deine Festplatte.</p> </li> <li> <p>Unzip (dekomprimiere) die Datei. Du erhälst das Verzeichnis “Clipperz_YYYYMMDD”.</p> </li> <li> <p>Öffne das Verzeichnis “Clipperz_YYYYMMDD” und mache einen Doppelklick auf die Datei “index.html”.</p> </li> <li> <p>Gib Deinen Clipperz Benutzernamen und Sicherheitsschlüssel ein, um Zugriff auf Deine persönlichen Daten auch ohne Internetzugang zu erhalten.</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "Download",
+'sharingTabLabel': "Freigabe für gemeinsame Nutzung",
+'sharingTabTitle': "Freigabe für gemeinsame Nutzung",
+'sharingTabDescription': "<p>Häufig muss eine vertrauenswürdige Information mit mehreren Personen geteilt werden.</p> <p>Dies sollte so einfach sein, wie einem Kollegen die PIN für den Anrufbeantworter zu geben, wenn Du im Urlaub bist; jedoch so schwierig, wie berechtigten Erben Zugriff auf das Ersparte bei der Bank zu geben.</p> <p>Clipperz ermöglicht die einfache Freigabe für gemeinsam genutzte Informationen, an berechtigte Personen, durch einen einfachen Prozess.</p> <p> </p> <p> <b>Mehr dazu in Kürze ...</b> </p> ",
+'importTabLabel': "Import",
+'importTabTitle': "Import",
+'importTabDescription': "<p> <b>In Kürze ...</b> </p> ",
+'printingTabLabel': "Export",
+'printingTabTitle': "Export",
+'printingTabDescription': "<p> <b>Drucke deine Kartendaten</b> </p> <p>Klicke auf den untenstehenden Link. Es öffnet sich ein Fenster mit Deinen Kartendaten in einem druckerfreundlichen Format.</p> <p>Wenn Du den Ausdruck aus Absicherungsgründen nutzen möchtest, nutze lieber die Variante der sichereren “Offline Kopie”. Ein Ausdruck ist wie eine Notiz auf dem Scheibtisch und könnte von jedem ohne weiteres gelesen werden. Bewahre diesen an einem sicheren, für andere nicht zugänglichen Ort auf!</p> ",
+'printingLinkLabel': "Druckerfreundliches Format",
+'contactsTabLabel': "Kontakte",
+'contactsTabTitle': "Kontakte",
+'bookmarkletTabLabel': "Bookmarklet",
+'bookmarkletTabTitle': "Bookmarklet",
+'bookmarkletTabDescription': "<p>Ein Bookmarklet ist ein Werkezug, welches Dir mit einem Mausklick wichtige Funktionen ermöglicht. Es kann gespeichert und verwendet werden wie eine ganz normale Webseite, die Du in Deine Favoriten gespeichert hast.</p> <p>Das clipperz Bookmarklet ermöglicht Dir schnell und einfach neue Karten und Direkt-Logins für bestehende Karten anzulegen.</p> <p> <b>Bitte beachte: Das Bookmarklet enthält keine Informationen zu Deinem Zugang (wie Benutzernamen oder Passwort), das Bookmarklet ist ein generisches Werzeug, welches für jeden Clipperz Anwender den gleichen Code beinhaltet.</b> </p> <div> <p>Um das Bookmarklet zu installieren <b>ziehe</b> den unten stehenden Link in die Lesezeichen-Leiste Deines Browsers.</p> </div> ",
+'bookmarkletTabBookmarkletTitle': "Zu Clipperz hinzufügen",
+'bookmarkletTabInstructions': "<h3>Anlegen einer neuen Karte für das Direkt Login bei einem Webservice</h3> <ol> <li> <p>Öffne die Webseite, auf der das Anmeldeforumlar vorhanden ist. (Das ist die Seite, auf der Du normal Deine Zugangsdaten einträgst)</p> </li> <li> <p>Öffne das Boormarklet durch anklicken: ein Pop-Up Fenster erscheint und bietet Dir die Karteninformationen an.</p> </li> <li> <p>Kopiere von diesem Fenster den Inhalt des größten Textfeldes durch in die Zwischenablage (Makieren und STRG+C)</p> </li> <li> <p>Öffne Deinen Clipperz Zugang und wähle <b>Neue Karte anlegen</b>.</p> </li> <li> <p>Füge den Inhalt Deiner Zwischenablage in das Textfeld ein (STRG+V) und ergänze optional einen <b>Titel</b>.</p> </li> <li> <p>Drücke die <b>Anlegen</b> Schaltfläche, kontrolliere nocheinmal die Details, und wähle anschließend <b>Speichern<b>.</p> </li> </ol> <h3>Direkt Login Funktionalität zu einer bestehenden Karte ergänzen</h3> <ol> <li> <p>Gleich wie oben.</p> </li> <li> <p>Gleich wie oben.</p> </li> <li> <p>Gleich wie oben.</p> </li> <li> <p>Öffne Deinen Clipperz Zugang und wähle die Karte, die Du ändern möchtest. Klicke anschließend auf <b>Bearbeiten</b>.</p> </li> <li> <p>Füge den Inhalt Deiner Zwischenablage in das Textfeld für “Direkt Login” ein (STRG+V).</p> </li> <li> <p>Drücke auf <b>Direkt Login hinzufügen</b>, kontrolliere die Angabgen und wähle <b>Speichern</b>.</p> </li> </ol> <p> </p> <p>Weitere Informationen über das Bookmarklet findest Du <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">hier</a>.</p> ",
+'mainPanelDirectLoginBlockLabel': "Direktes Login",
+'directLinkReferenceShowButtonLabel': "zeigen",
+'mainPanelDirectLoginBlockDescription': "<p>Add “direct logins” to sign in to your web accounts without typing usernames and passwords!</p> <p>“Direct logins” greatly enhance your password security since you can:</p> <ul> <li> <p>conveniently adopt and enter complex passwords;</p> </li> <li> <p>never re-use the same and easy-to-guess password.</p> </li> </ul> <p>Simple and quick configuration with the Clipperz <b>bookmarklet</b>.</p> <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Learn more about “direct logins”</a> ",
+'mainPanelRecordsBlockLabel': "Karten",
+'mainPanelAddRecordButtonLabel': "Neue Karte anlegen",
+'mainPanelRemoveRecordButtonLabel': "Karte löschen",
+'mainPanelRecordFilterBlockAllLabel': "all",
+'mainPanelRecordFilterBlockTagsLabel': "tags",
+'mainPanelRecordFilterBlockSearchLabel': "search",
+'recordDetailNoRecordAtAllTitle': "Willkommen bei Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>Beginne mit dem Hinzufügen von Karten zu Deinem Zugang.</h5> <p>Karten sind einfache und flexible Formulare, bei denen Du Deine Passwörter und andere vertrauenswürde Daten speichern kannst.</p> <p>Karten können Zugangsinformationen für eine WebSite, die Kombination Deines Fahrradschlosses, oder Daten Deiner Kreditkarte enthalten, ...</p> <h5>Vergiss nicht das Bookmarklet</h5> <p>Bevor Du beginnst, installiere Dir das “Add to Clipperz” Bookmarklet: Es vereinfacht Dir das anlegen von Karten und verbessert somit den Komfor.</p> <p>Gehe zum “Bookmarklet” Tabulator um herauszufinden, wie es installiert und verwendet werden kann.</p> <p> </p> <p>Dann klicke einfach auf den <b>Neue Karte anlegen</b> Button und genieße Deinen Clipperz Zugang.</p> <p> </p> <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">Näheres zum Erstellen und Verwalten von Karten lernen</a> ",
+'newRecordWizardTitleBox': "<h5>Bitte wähle eine Vorlage</h5> <p>Karten sind einfache und flexible Formulare, bei denen Du Passwörter oder jede Art von vertraulichen Informationen speichern kannst.</p> <p>Beginne mit der Auswahl einer der unten stehenden Vorlagen. Zu jeder Zeit kannst Du Deine Karten durch hinzufügen oder entfernen von Feldern verändern.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "Direktes Login",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>Füge bitte unten den Konfigurationscode ein, den das Clipperz Bookmarklet erzeugt hat.</p> <p>Eine neue Karte mit einem vollständigen Direkt Login zu dem gewählten Webzugang wird angelegt.</p> ",
+'newRecordWizardCreateButtonLabel': "Anlegen",
+'newRecordWizardCancelButtonLabel': "Abbruch",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "Web Zugangsdaten",
+ 'description': "<p>Eine einfache Karte, die die Login Informationen für einen Online Service speichert.</p> ",
+ 'fields': {
+ 'URL': "Web Adresse",
+ 'TXT': "Benutzername / E-Mail",
+ 'PWD': "Passwort"
+ }
+ },
+ 'BankAccount': {
+ 'title': "Bank Zugangsdaten",
+ 'description': "<p>Speichere geschützt Deine Online Banking Zugangsdaten.</p> ",
+ 'fields': {
+ 'TXT': "Bank",
+ 'TXT': "Kontonummer",
+ 'URL': "Web Adresse",
+ 'TXT': "Online Zugangsdaten",
+ 'PWD': "Online Passwort"
+ }
+ },
+ 'CreditCard': {
+ 'title': "Kreditkarte",
+ 'description': "<p>Kartennummer, CVV2, Ablaufdatum und PIN zu jeder Zeit abrufbar bei Clipperz.</p> ",
+ 'fields': {
+ 'TXT': "Art (Visa, AmEx, ...)",
+ 'TXT': "Nummer",
+ 'TXT': "Inhaber",
+ 'TXT': "Ablaufdatum",
+ 'TXT': "CVV2",
+ 'PWD': "PIN",
+ 'URL': "Webseite",
+ 'TXT': "Online Zugangsdaten",
+ 'PWD': "Passwort"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "Adressbuch Eintrag",
+ 'description': "<p>Clipperz kann auch als Dein neues privates Adressbuch agieren. Nutze diese Vorlage um einfach eine neuen Eintrag anzulegen.</p> ",
+ 'fields': {
+ 'TXT': "Name",
+ 'TXT': "Email",
+ 'TXT': "Telefon",
+ 'TXT': "Handy",
+ 'ADDR': "Adresse"
+ }
+ },
+ 'Custom': {
+ 'title': "Benutzerdefinierte Karte",
+ 'description': "<p>Egal welche Art von vertraulichen Informationen Du speichern musst, mit der benutzerdefinierten Karte kannst Du diese Informationen speichern.</p> ",
+ 'fields': {
+ 'TXT': "Feldname 1",
+ 'TXT': "Feldname 2",
+ 'TXT': "Feldname 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field",
+ 'shortDescription': "Text"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "Passwort"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "Webadresse"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "Datum"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "Postanschrift"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "select"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "Fehler",
+'newRecordPanelGeneralExceptionMessage': "Der Konfigurationstext ist nicht gültig. Stelle sicher, dass Du den Text des Bookmarket Pop-Up eingefügt hast und versuch es nocheinmal.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Fehler",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "Der Konfigurationstext wurde von einer älteren Version des Bookmarklets erstellt. Bitte aktualisiere Dein Bookmarklet und probiere es erneut.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Abbruch",
+'mainPanelDeletingRecordPanelConfirmationTitle': "Lösche ausgewählte Karte",
+'mainPanelDeleteRecordPanelConfirmationText': "Möschtest Du wirklich die ausgewählte Karte löschen?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "Ja",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "Nein",
+'mainPanelDeletingRecordPanelInitialTitle': "Lösche ausgewählte Karte",
+'mainPanelDeletingRecordPanelCompletedText': "Fertig",
+'deleteRecordPanelCollectRecordDataMessageTitle': "Karte löschen",
+'deleteRecordPanelCollectRecordDataMessageText': "Aktualisiere Kartenliste",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Karte löschen",
+'deleteRecordPanelEncryptUserDataMessageText': "Lokale Verschlüsselung der Karten Kopfdaten",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Karte löschen",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Lade verschlüsselte Karten Kopfdaten zu Clipperz hoch",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Karte löschen",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Aktualisiere Benutzerschnittstelle",
+'recordDetailNoRecordSelectedTitle': "Keine Karte ausgewählt",
+'recordDetailNoRecordSelectedDescription': "<p>Bitte wähle aus der linken Liste eine Karte aus.</p> ",
+'recordDetailLoadingRecordMessage': "Lade verschlüsselte Karte von Clipperz runter",
+'recordDetailDecryptingRecordMessage': "Lokale entschlüsselung der Kartendaten",
+'recordDetailLoadingRecordVersionMessage': "Herunterladen der aktuellsten Kartenversion",
+'recordDetailDecryptingRecordVersionMessage': "Lokale Entschlüsselung der aktuellen Version",
+'recordDetailLoadingErrorMessageTitle': "Fehler beim Herunterladen der Karte",
+'recordDetailNotesLabel': "Notiz",
+'recordDetailLabelFieldColumnLabel': "Feld Namen",
+'recordDetailDataFieldColumnLabel': "Feld Daten",
+'recordDetailTypeFieldColumnLabel': "Art",
+'recordDetailSavingChangesMessagePanelInitialTitle': "Speichere Karte",
+'recordDetailAddFieldButtonLabel': "Neues Feld hinzufügen",
+'recordDetailDirectLoginBlockTitle': "Direkt Logins",
+'recordDetailNewDirectLoginDescription': "<p>Direkt Login Konfiguration</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>Enthält diese Karte Informationen um Zugriff auf ein Online Service zu erhalten?</p> <p>Verwende das Bookmarklet um ein “Direkt Login” mit nur einem Klick von Clipperz zu konfigurieren.</p> ",
+'recordDetailAddNewDirectLoginButtonLabel': "Neues Direktlogin hinzufügen",
+'recordDetailEditButtonLabel': "Bearbeiten",
+'recordDetailSaveButtonLabel': "Speichern",
+'recordDetailCancelButtonLabel': "Abbruch",
+'newRecordTitleLabel': "_neue Karte_",
+'newDirectLoginLabelSuffix': "",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Karte speichern",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Aktualisierung der Karten Kopfdaten",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Karte speichern",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Lokale Verschlüsselung der Karten Kopfdaten",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Karte speichern",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Lokale Verschlüsselung der Karten Informationen",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Karte speichern",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Lokale Verschlüsselung der Karten Versions Informationen",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Karte speichern",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Verschlüsselte Karten Kopfdaten auf Clipperz hochladen",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Karte speichern",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Aktualisierung der Benutzerschnittstelle",
+'exit': "<h2> <b>Auf Wiedersehen! Danke, dass Du Clipperz verwendet hast.</b> </h2> <ul> <li> <h3>Hinweis:</h3> <ul> <li> <p>Speichere diese Seite in Deine Favoriten, damit Du auch in Zukunft dich sicher mit Clipperz verbinden kannst (solltest Du dies nicht bereits getan haben)</p> </li> <li> <p>Clipperz wird Dir niemals eine E-Mail senden, weil wir Dich niemals nach Deiner E-Mail Anschrift gefragt haben (und dies auch nie werden) – öffne daher niemals eine Mail, die wvon Clipperz zu sein scheint</p> </li> </ul> </li> </ul> <p> </p> <p>In 10 Sekunden wirdst Du auf eine Seite von Wikipedia umgeleitet, wo Du über eine herausragende Sicherheitslücke informiert wirst.</p> ",
+//'DWRUtilLoadingMessage': "Lade Daten ...",
+'comingSoon': "In Kürze ...",
+'panelCollectingEntryopyMessageText': "Sammlung",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "Ja",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "Nein",
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js
new file mode 100644
index 0000000..37e0a96
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_el-GR.js
@@ -0,0 +1,701 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+//=============================================================================
+//
+// G R E E K (el_GR)
+//
+//=============================================================================
+
+Clipperz.PM.Strings.Languages['el-gr'] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+
+//-----------------------------------------------------
+// Login page - description
+ 'clipperzServiceDescriptionConfig': [
+ {tag:'h2', html:'Κρατήστε το για τον Εαυτό Σας'},
+ {tag:'ul', children:[
+ {tag:'li', children:[
+ {tag:'h3', html:'Το Clipperz είναι:'},
+ {tag:'ul', children:[
+ {tag:'li', children:[{tag:'span', html:'Ένας ασφαλής και απλός τρόπος διαχείρησης όλων των κωδικών πρόσβασης σας'}]},
+ {tag:'li', children:[{tag:'span', html:'Μια αποτελεσματική λύση πρόσβασης σε δεδομένα/εφαρμογές με μοναδικό κωδικό'}]},
+ {tag:'li', children:[{tag:'span', html:'Μια ψηφιακή θυρίδα για τα απόρρητα δεδομένα σας'}]}
+ ]}
+ ]},
+ {tag:'li', children:[
+ {tag:'h3', html:'Με το Clipperz μπορείτε:'},
+ {tag:'ul', children:[
+ {tag:'li', children:[{tag:'span', html:'Να αποθηκεύσετε και να διαχειριστείτε όλους τους κωδικούς πρόσβασης και τα online πιστοποιητικά/διαπιστευτήρια σας'}]},
+ {tag:'li', children:[{tag:'span', html:'Να έχετε πρόσβαση (login) στις υπηρεσίες διαδικτύου χωρίς την εισαγωγή oνομάτων λογαρισμών χρήστη (username),ή, κωδικών πρόσβασης (passwords)'}]},
+ {tag:'li', children:[{tag:'span', html:'Να προστατεύσετε όλα τα προσωπικά δεδομένα σας: κωδικούς συναγερμών, PINs, αριθμούς πιστωτικών καρτών, ...'}]},
+ {tag:'li', children:[{tag:'span', html:'Να μοιραστείτε δεδομένα με μέλη της οικογένεια σας και τους συνεργάτες σας (σύντομα στην διάθεση σας)'}]}
+ ]}
+ ]},
+ {tag:'li', children:[
+ {tag:'h3', html:'Τα πλεονεκτήματα του Clipperz είναι:'},
+ {tag:'ul', children:[
+ {tag:'li', children:[{tag:'span', html:'Είναι δωρεάν και προσφέρει πρόσβαση ανώνυμα'}]},
+ {tag:'li', children:[{tag:'span', html:'Μπορεί να χρησιμοποιηθεί οποαδήποτε ώρα και από οποιοδήποτε τερματικό'}]},
+ {tag:'li', children:[{tag:'span', html:'Δεν απαιτεί την φόρτωση και εγκατάσταση οποιουδήποτε λογισμικού'}]},
+ {tag:'li', children:[{tag:'span', html:'Αποφεύγετε την διατήριση απορρήτων στον υπολογιστή σας ή σε έντυπη μορφή'}]}
+ ]}
+ ]},
+ {tag:'li', children:[
+ {tag:'h3', html:'Η ασφάλεια που παρέχει το Clipperz:'},
+ {tag:'ul', children:[
+ {tag:'li', children:[{tag:'span', html:'Τα απόρρητα δεδομένα σας κωδικοποιούνται τοπικά από τον διακομιστή σας (browser) πρίν να φορτωθούν στο Clipperz'}]},
+ {tag:'li', children:[{tag:'span', html:'Το κλειδί της κωδικοποίησης είναι μία φράση-κωδικός γνωστή μόνο σε εσάς'}]},
+ {tag:'li', children:[{tag:'span', html:'Το Clipperz φυλάσσει τα προσωπικά σας δεδομένα σε κωδικοποιημένη μορφή, και δεν μπορεί να έχει πρόσβαση σε αυτά στην αρχική τους μορφή'}]},
+ {tag:'li', children:[{tag:'span', html:'Το Clipperz χρησιμοποιεί επίσημες /πρότυπες μεθόδους κωδικοποίησης, και όχι αόριστα και εφάνταστα μοντέλα'}]},
+ {tag:'li', children:[{tag:'span', html:'Έχετε πρόσβαση στον πηγαίο κώδικα οποτεδήποτε το θελήσετε, και δεν χρειάζετε να γνωρίζετε τίποτα από κρυπτογράφηση για να είστε ένας ευχαριστημένος χρήστης!'}]}
+ ]}
+ ]},
+ {tag:'li', children:[
+ {tag:'a', href:"http://www.clipperz.com", target:'_blank', html:'Μάθετε περισσότερα'}
+ ]}
+ ]}
+ ],
+
+// Login page - form
+ 'loginFormTitle': "Συνδεθείτε με τον Clipperz λογαριασμό σας",
+ 'loginFormUsernameLabel': "Όνομα χρήστη",
+ 'loginFormPassphraseLabel': "Κωδική φράση",
+ 'loginFormDontHaveAnAccountLabel': "Δεν έχετε δημιουργήσει λογαριασμό?",
+ 'loginFormCreateOneLabel': "Δημιουργήστε έναν",
+ 'loginFormForgotYourCredentialsLabel': "Ξεχάσατε τα διαπιστευτήριά σας?",
+ 'loginFormAarghThatsBadLabel': "Ααααργκ! Αυτό είναι κακό!",
+ 'loginFormAfraidOfMaliciousScriptsLabel': "φοβάστε κακόβουλα προγράμματα (scripts)?",
+ 'loginFormVerifyTheCodeLabel': "Επαληθεύστε τον κωδικό",
+ 'loginFormButtonLabel': "Σύνδεση",
+
+// Login page - language selection
+ 'loginPanelSwithLanguageDescriptionConfig': [
+ {tag:'h5', html:"Αλλάξτε στην γλώσσα προτήμησης σας"}
+ ],
+
+// Login page - browser compatibility
+ 'browserCompatibilityDescriptionConfig': [
+ {tag:'p', html:"Έχετε μία καλύτερη και πιό ασφαλή Clipperz εμπειρία χρησιμοποιόντας τον Firefox. Ωστόσο το Clipperz συνεργάζετε άψογα με Opera και MS Internet Explorer!"}
+ ],
+
+// Login message panel
+ 'loginMessagePanelInitialTitle': "Γίνεται σύνδεση ...",
+ 'loginMessagePanelInitialButtonLabel': "Ακύρωση",
+ '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>.",
+ '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",
+
+//-----------------------------------------------------
+// Lock dialog
+ 'lockTitle': "The account is locked",
+ 'lockDescriptionConfig': [
+ {tag:'p', html:'To unlock your account, please insert your passphrase'}
+ ],
+ 'unlockButtonLabel': "Unlock",
+
+//-----------------------------------------------------
+// Account panel - change passphrase
+ 'changePasswordTabLabel': "Αλλάξτε την κωδική φράση σας",
+ 'changePasswordTabTitle': "Αλλάξτε την κωδική φράση σας",
+
+// Account panel - change passphrase - form
+ 'changePasswordFormUsernameLabel': "όνομα χρήστη",
+ 'changePasswordFormOldPassphraseLabel': "παλαιά κωδική φράση",
+ 'changePasswordFormNewPassphraseLabel': "νέα κωδική φράση",
+ 'changePasswordFormRetypePassphraseLabel': "Εισάγετε ξανά τη νέα κωδική φράση",
+ 'changePasswordFormSafetyCheckboxLabel': "Κατανοώ πως το Clipperz δεν θα μπορεί να ανακτήσει μία χαμένη κωδική φράση.",
+ 'changePasswordFormSubmitLabel': "Αλλάξτε την κωδική φράση σας",
+
+// Account panel - change passphrase - warnings
+ 'changePasswordFormWrongUsernameWarning': "Λάθος όνομα χρήστη",
+ 'changePasswordFormWrongPassphraseWarning': "Λάθος κωδική φράση",
+ 'changePasswordFormWrongRetypePassphraseWarning': "Οι κωδικές φράσεις που εισάγατε δεν ταιριάζουν. Παρακαλώ ξαναπροσπαθήστε.",
+ 'changePasswordFormSafetyCheckWarning': "Παρακαλώ διαβάστε και επιλέξτε όλες τις παρακάτω επιλογές.",
+
+// Account panel - change passphrase - progress dialog
+ 'changePasswordFormProgressDialogTitle': "Γίνεται αλλαγή διαπιστευτηρίων χρήστη",
+ 'changePasswordFormProgressDialogConnectedMessageTitle': "Συνδεδεμένος",
+ 'changePasswordFormProgressDialogConnectedMessageText': "Ολοκληρώθηκε",
+ 'changePasswordFormProgressDialogErrorMessageTitle': "Σφάλμα",
+ 'changePasswordFormProgressDialogErrorMessageText': "Απέτυχε η αλλαγή διαπιστευτηρίων!",
+
+ 'changeCredentialsPanelEncryptingDataMessageTitle': "Γίνεται αλλαγή της κωδικής φράσης σας",
+ 'changeCredentialsPanelEncryptingDataMessageText': "Local encryption of card headers",
+ 'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Γίνεται αλλαγή της κωδικής φράσης σας",
+ 'changeCredentialsPanelCreatingNewCredentialsMessageText': "Γίνεται ανανέωση των διαπιστευτηρίων σας",
+ 'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Γίνεται αλλαγή της κωδικής φράσης σας",
+ 'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Uploading your encrypted credentials to Clipperz",
+ 'changeCredentialsPanelDoneMessageTitle': "Γίνεται αλλαγή της κωδικής φράσης σας",
+ 'changeCredentialsPanelDoneMessageText': "Ολοκληρώθηκε",
+
+//-----------------------------------------------------
+// Account panel - manage OTP
+ 'manageOTPTabLabel': "Manage your one-time passphrases",
+ 'manageOTPTabTitle': "Manage your one-time passphrases",
+
+// Account panel - manage OTP - description
+ 'manageOTPTabDescriptionConfig': [
+ {tag:'p', html:"A one-time passphrase works like your regular passphrase, but can be used only once."},
+ {tag:'p', html:"If the same passphrase is used again at a later stage in a login attempt it will be rejected and the login process will fail."},
+ {tag:'p', html:"Immediately after a successful login, your one-time passphrase will be deleted preventing any fraudulent access."},
+ {tag:'p', html:"One-time passwords are an excellent choice if one is concerned about keyloggers or spyware infections that may be collecting data from compromised machines."},
+ {tag:'p', html:"<b>It's strongly advisable to use one-time passphrases when accessing Clipperz from public terminals, such as Internet cafes and libraries.</b>"},
+ {tag:'p', html:""},
+ {tag:'p', html:"<b>Coming soon ...</b>"}
+ ],
+
+//-----------------------------------------------------
+// Account panel - user preferences
+ 'accountPreferencesLabel': "Προτιμήσεις",
+ 'accountPreferencesTabTitle': "Προτιμήσεις",
+
+// Account panel - user preferences - description
+ 'accountPreferencesLanguageTitle': "Επιλογή Γλώσσας",
+ 'accountPreferencesLanguageDescriptionConfig': [
+ {tag:'p', html:"Choose your preferred language from the list below."}
+ ],
+
+ 'accountPreferencesInterfaceTitle': "Interface customization",
+ 'accountPreferencesInterfaceDescriptionConfig': [
+ {tag:'p', html:"Tune the Clipperz interface to your needs."}
+ ],
+
+// Account panel - user preferences - form
+ 'saveUserPreferencesFormSubmitLabel': "Αποθήκευση",
+ 'cancelUserPreferencesFormSubmitLabel': "Ακύρωση",
+
+// Account panel - user preferences - panel
+ 'accountPreferencesSavingPanelTitle_Step1': "Saving preferences",
+ 'accountPreferencesSavingPanelText_Step1': "Local encryption of your preferences",
+ 'accountPreferencesSavingPanelTitle_Step2': "Saving preferences",
+ 'accountPreferencesSavingPanelText_Step2': "Sending encrypted preferences to Clipperz",
+
+//-----------------------------------------------------
+// Account panel - delete account
+ 'deleteAccountTabLabel': "Διαγράψτε τον λογαριασμό σας",
+ 'deleteAccountTabTitle': "Γίνεται διαγραφή του λογαριασμού σας",
+
+// Account panel - delete account - form
+ 'deleteAccountFormUsernameLabel': "όνομα χρήστη",
+ 'deleteAccountFormPassphraseLabel': "κωδική φράση",
+ 'deleteAccountFormSafetyCheckboxLabel': "Κατανοώ πως όλα τα δεδομένα μου θα διαγραφούν και πως αυτή η πράξη είναι μη αναστρέψιμη.",
+ 'deleteAccountFormSubmitLabel': "Διαγράψτε τον λογαριασμό μου",
+
+// Account panel - delete account - warnings
+ 'deleteAccountFormWrongUsernameWarning': "λάθος όνομα χρήστη",
+ 'deleteAccountFormWrongPassphraseWarning': "λάθος κωδική φράση",
+ 'deleteAccountFormSafetyCheckWarning': "Παρακαλώ διαβάστε και επιλέξτε την παρακάτω επιλογή.",
+
+// Account panel - delete account - confirmation
+ 'accountPanelDeletingAccountPanelConfirmationTitle': "ΠΡΟΣΟΧΗ",
+ 'accountPanelDeleteAccountPanelConfirmationText': "Είστε σίγουρος/η ότι θέλετε να διαγράψετε αυτόν τον λογαριασμό?",
+ 'accountPanelDeleteAccountPanelConfirmButtonLabel': "Ναι",
+ 'accountPanelDeleteAccountPanelDenyButtonLabel': "Όχι",
+
+//-----------------------------------------------------
+// Data panel - offline copy
+ 'offlineCopyTabLabel': "Offline copy",
+ 'offlineCopyTabTitle': "Offline copy",
+
+// Data panel - offline copy - description
+ 'offlineCopyTabDescriptionConfig': [
+ {tag:'p', html:"With just one click you can dump all your encrypted data from Clipperz servers to your hard disk and create a read-only offline version of Clipperz to be used when you are not connected to the Internet."},
+ {tag:'p', html:"The read-only version is as secure as the read-and-write one and will not expose your data to higher risks since they both share the same code and security architecture."},
+ {tag:'ol', children:[
+ {tag:'li', children:[{tag:'span', html:"Click the link below to download the offline copy."}]},
+ {tag:'li', children:[{tag:'span', html:"The browser will ask you what to do with the “Clipperz_YYYYMMDD.zip” file. Save it on your hard disk."}]},
+ {tag:'li', children:[{tag:'span', html:"Unzip the file to reveal the “Clipperz_YYYYMMDD” folder."}]},
+ {tag:'li', children:[{tag:'span', html:"Open the “Clipperz_YYYYMMDD” folder and double click on the “index.html” file."}]},
+ {tag:'li', children:[{tag:'span', html:"Enter the usual username and passphrase and access your private data without an Internet connection."}]}
+ ]}
+ ],
+ 'offlineCopyDownloadLinkLabel': "Download",
+
+//-----------------------------------------------------
+// Data panel - sharing
+ 'sharingTabLabel': "Sharing",
+ 'sharingTabTitle': "Sharing",
+
+// Data panel - sharing - description
+ 'sharingTabDescriptionConfig': [
+ {tag:'p', html:"Quite often a confidential piece of information needs to be shared with one or more persons."},
+ {tag:'p', html:"This could be as simple as giving your colleague the access code of your voice mailbox when you are out of the office, or as complicated as enabling the entitled heirs to access your safe deposit box at the local bank when you pass on."},
+ {tag:'p', html:"Clipperz can make sharing your secrets a secure and straightforward process."},
+ {tag:'p', html:""},
+ {tag:'p', html:"<b>Coming soon ...</b>"}
+ ],
+
+//-----------------------------------------------------
+// Data panel - import
+ 'importTabLabel': "Εισαγωγή",
+ 'importTabTitle': "Εισαγωγή",
+
+// Data panel - import - description
+ 'importTabDescriptionConfig': [
+ {tag:'p', html:"<b>Σύντομα κοντά σας ...</b>"}
+ ],
+
+//-----------------------------------------------------
+// Data panel - export
+ 'printingTabLabel': "Εξαγωγή",
+ 'printingTabTitle': "Εξαγωγή",
+
+// Data panel - export - description “”
+ 'printingTabDescriptionConfig': [
+ {tag:'p', html:"<b>Print your data</b>"},
+ {tag:'p', html:"Clicking on the link below will open a new window displaying all your cards in a printable format."},
+ {tag:'p', html:"If you are going to print for backup purposes, please consider the more safe option provided by the creating an “offline copy”."}
+ ],
+ 'printingLinkLabel': "Έκδοση Εκτύπωσης",
+
+//-------------------------------------------------------------------
+// Contacts panel
+ 'contactsTabLabel': "Contacts",
+ 'contactsTabTitle': "Contacts",
+
+//-------------------------------------------------------------------
+// Bookmarklet panel
+ 'bookmarkletTabLabel': "Bookmarklet",
+ 'bookmarkletTabTitle': "Bookmarklet",
+
+// Bookmarklet panel - description
+ 'bookmarkletTabDescriptionConfig': [
+ {tag:'p', html:"A bookmarklet is a simple “one-click” tool that can perform very useful tasks. It can be saved and used like a normal web page bookmark."},
+ {tag:'p', html:"The Clipperz bookmarklet will help you to quickly create new cards and new “direct logins” within existing cards."},
+ {tag:'p', html:"<b>Please note that the bookmarklet does not include any information related to your account (e.g. your username or passphrase), the bookmarklet is a general tool containing the same code for every Clipperz user.</b>"},
+ {tag:'div', children:[
+ {tag:'p', html:"To install the bookmarklet <b>drag</b> the link below to the bookmark bar of your browser."}
+ ]}
+ ],
+ 'bookmarkletTabBookmarkletTitle': "Προσθήκη στο Clipperz",
+
+// Bookmarklet panel - instructions
+ 'bookmarkletTabInstructionsConfig': [
+ {tag:'h3', html:"How to create a new card inclusive of a “direct login” link to an online service"},
+ {tag:'ol', children:[
+ {tag:'li', children:[{tag:'span', html:"Open the web page where the login form is hosted. (this is the page where you usually enter your sign-in credentials)"}]},
+ {tag:'li', children:[{tag:'span', html:"Launch the bookmarklet by clicking on it: a pop-up window will appear over the web page."}]},
+ {tag:'li', children:[{tag:'span', html:"Copy to the clipboard the content of the large text area within the pop-up. (ctrl-C)"}]},
+ {tag:'li', children:[{tag:'span', html:"Enter your Clipperz account and click on the <b>Add new card</b> button."}]},
+ {tag:'li', children:[{tag:'span', html:"Select the “Direct login” template and paste the content of the clipboard to the large text area in the form. (ctrl-V)"}]},
+ {tag:'li', children:[{tag:'span', html:"Press the <b>Create</b> button, complete and review the details, then click <b>Save</b>."}]}
+ ]},
+ {tag:'h3', html:"How to add a “direct login” link to an existing card"},
+ {tag:'ol', children:[
+ {tag:'li', children:[{tag:'span', html:"Same as above."}]},
+ {tag:'li', children:[{tag:'span', html:"Same as above."}]},
+ {tag:'li', children:[{tag:'span', html:"Same as above."}]},
+ {tag:'li', children:[{tag:'span', html:"Enter your Clipperz account and select the card containing the credentials for the web service you just visited and click the <b>Edit</b> button."}]},
+ {tag:'li', children:[{tag:'span', html:"Paste the content of the clipboard to the large text area in the “Direct logins” section. (ctrl-V)"}]},
+ {tag:'li', children:[{tag:'span', html:"Press the <b>Add direct login</b> button, review the details and then click <b>Save</b>."}]}
+ ]},
+ {tag:'p', html:""},
+ {tag:'p', html:"Further information about the bookmarklet are <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">available here</a>."}
+ ],
+
+//-------------------------------------------------------------------
+// Direct logins block
+ 'mainPanelDirectLoginBlockLabel': "Απευθείας σύνδεση",
+ 'directLinkReferenceShowButtonLabel': "Επίδειξη",
+
+// Direct logins - blank slate “”
+ 'mainPanelDirectLoginBlockDescriptionConfig': [
+ {tag:'p', html:"Add “direct logins” to sign in to your web accounts without typing usernames and passwords!"},
+ {tag:'p', html:"“Direct logins” greatly enhance your password security since you can:"},
+ {tag:'ul', children:[
+ {tag:'li', children:[{tag:'span', html:"conveniently adopt and enter complex passwords;"}]},
+ {tag:'li', children:[{tag:'span', html:"never re-use the same and easy-to-guess password."}]}
+ ]},
+ {tag:'p', html:"Simple and quick configuration with the Clipperz <b>bookmarklet</b>."},
+ {tag:'a', href:"http://www.clipperz.com/support/user_guide/direct_logins", target:'_blank', html:'Learn more about “direct logins”'}
+ ],
+
+//-------------------------------------------------------------------
+// Cards block
+ 'mainPanelRecordsBlockLabel': "Κάρτες",
+ 'mainPanelAddRecordButtonLabel': "Προσθήκη νέας Κάρτας ",
+ 'mainPanelRemoveRecordButtonLabel': "Διαγραφή κάρτας",
+
+// Cards block - filter tabs
+ 'mainPanelRecordFilterBlockAllLabel': "Όλα",
+ 'mainPanelRecordFilterBlockTagsLabel': "Επιλογές",
+ 'mainPanelRecordFilterBlockSearchLabel': "Αναζήτηση",
+
+// Cards block - blank slate
+ 'recordDetailNoRecordAtAllTitle': "Welcome to Clipperz!",
+ 'recordDetailNoRecordAtAllDescriptionConfig': [
+ {tag:'h5', html:'Get started by adding cards to your account.'},
+ {tag:'p', html:'Cards are simple and flexible forms where you can store your passwords and any other confidential data.'},
+ {tag:'p', html:'Cards could contain credentials for accessing a web site, the combination of your bicycle lock, details of your credit card, ...'},
+ {tag:'h5', html:'Don\'t forget the bookmarklet!'},
+ {tag:'p', html:'Before you start, install the “Add to Clipperz” bookmarklet: it will make creating cards easier and more fun.'},
+ {tag:'p', html:'Go to the bookmarklet tab to discover how to install it and how it use it.'},
+ {tag:'p', html:''},
+ {tag:'p', html:'Then simply click the <b>"Add new card"</b> button and enjoy your Clipperz account.'},
+ {tag:'p', html:''},
+ {tag:'a', href:"http://www.clipperz.com/support/user_guide/managing_cards", target:'_blank', html:'Learn more about creating and managing cards'}
+ ],
+
+// Cards block - new card wizard - bookmarklet configuration
+ 'newRecordWizardTitleBoxConfig': [
+ {tag:'h5', html:"Please select a template"},
+ {tag:'p', html:'Cards are simple and flexible forms where you can store passwords or any other confidential data.'},
+ {tag:'p', html:'Start choosing one of the template below. You can always customize your cards later by adding or removing fields.'}
+ ],
+
+ 'newRecordWizardBookmarkletConfigurationTitle': "Απευθείας σύνδεση",
+ 'newRecordWizardBookmarkletConfigurationDescriptionConfig': [
+ {tag:'p', html:"Paste below the configuration code generated by the Clipperz bookmarklet."},
+ {tag:'p', html:"A new card complete with a direct login to your web account will be created."}
+ ],
+
+ 'newRecordWizardCreateButtonLabel': "Δημιουργία",
+ 'newRecordWizardCancelButtonLabel': "Ακύρωση",
+
+//-------------------------------------------------------------------
+// Card templates
+//-------------------------------------------------------------------
+
+ 'recordTemplates': {
+
+// Web password
+ 'WebAccount': {
+ 'title': "Web password",
+ 'description': [
+ {tag:'p', html:"A simple card to store login credentials for your online services."}
+ ],
+ 'fields': [
+ {label:"Διεύθυνση δικτύου", type:'URL'},
+ {label:"Χρήστης ή διεύθυνση ηλεκτρονικού ταχυδρομείου", type:'TXT'},
+ {label:"Κωδικός Πράσβασης", type:'PWD'}
+ ]
+ },
+
+// Bank account
+ 'BankAccount': {
+ 'title': "Bank account",
+ 'description': [
+ {tag:'p', html:"Safely store your bank account number and online banking credentials."}
+ ],
+ 'fields': [
+ {label:"Τράπεζα", type:'TXT'},
+ {label:"Αριθμός λογαριασμού", type:'TXT'},
+ {label:"Ιστοσελίδα τράπεζας", type:'URL'},
+ {label:"Αρ. Ηλεκτρονικής τράπεζας (ID)", type:'TXT'},
+ {label:"Κώδικος Ηλεκτρονικής τράπεζας", type:'PWD'}
+ ]
+ },
+
+// Credit card
+ 'CreditCard': {
+ 'title': "Credit card",
+ 'description': [
+ {tag:'p', html:"Card number, expire date, CVV2 and PIN always at hand with Clipperz."}
+ ],
+ 'fields': [
+ {label:"Τύπος Κάρτας (Visa, AmEx,...)", type:'TXT'},
+ {label:"Αριθμός κάρτα", type:'TXT'},
+ {label:"Ονοματεπώνυμο κατόχου", type:'TXT'},
+ {label:"Ημερομηνία λήξης", type:'TXT'},
+ {label:"CVV2", type:'TXT'},
+ {label:"Κωδικός Αυτόματης ταμείακης μηχανης (ΑΤΜ)", type:'PWD'},
+ {label:"Ιστοσελίδα κάρτας", type:'URL'},
+ {label:"Χρήστης", type:'TXT'},
+ {label:"Κωδικός Πρόσβασης", type:'PWD'}
+ ]
+ },
+
+// Address book entry
+ 'AddressBookEntry': {
+ 'title': "Address book entry",
+ 'description': [
+ {tag:'p', html:"Clipperz could also work as your new private address book. Use this template to easily add a new entry."}
+ ],
+ 'fields': [
+ {label:"Όνομα", type:'TXT'},
+ {label:"Ηλετρονικό ταχυδρομείο", type:'TXT'},
+ {label:"Τηλέφωνο", type:'TXT'},
+ {label:"Κινητο τηλέφωνο", type:'TXT'},
+ {label:"Διεύθυνση", type:'ADDR'},
+ ]
+ },
+
+// Custom card
+ 'Custom': {
+ 'title': "Custom card",
+ 'description': [
+ {tag:'p', html:"No matter which kind of confidential data you need to protect, create a custom card to match your needs."}
+ ],
+ 'fields': [
+ {label:"Περιγραφή 1", type:'TXT'},
+ {label:"Περιγραφή 2", type:'TXT'},
+ {label:"Περιγραφή 3", type:'TXT'}
+ ]
+ }
+ },
+
+
+ 'recordFieldTypologies': {
+ 'TXT': {
+ description: 'simple text field',
+ shortDescription: '΄Κείμενο'
+ },
+ 'PWD': {
+ description: 'simple text field, with default status set to hidden',
+ shortDescription: 'Κωδικός Πρόσβασης'
+ },
+ 'URL': {
+ description: 'simple text field in edit mode, that became an active url in view mode',
+ shortDescription: 'Διεύθυνση ηλεκτρονικού ταχυδρομείου'
+ },
+ 'DATE': {
+ description: 'a value set with a calendar helper',
+ shortDescription: 'Ημερομηνία'
+ },
+ 'ADDR': {
+ description: 'just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument',
+ shortDescription: 'Διεύθυνση'
+ },
+ 'CHECK': {
+ description: 'check description',
+ shortDescription: 'check'
+ },
+ 'RADIO': {
+ description: 'radio description',
+ shortDescription: 'radio'
+ },
+ 'SELECT': {
+ description: 'select description',
+ shortDescription: 'select'
+ }
+ },
+
+// Cards block - new card - warnings
+ 'newRecordPanelGeneralExceptionTitle': "Σφάλμα",
+ 'newRecordPanelGeneralExceptionMessage': "The configuration text is not valid. Make sure to get your text from the bookmarklet pop-up and retry.",
+ 'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Σφάλμα",
+ 'newRecordPanelWrongBookmarkletVersionExceptionMessage': "The configuration text has been generated by an old version of the bookmarklet. Please update your bookmarklet and retry.",
+ 'newRecordPanelExceptionPanelCloseButtonLabel': "Ακύρωση",
+
+// Cards block - delete card
+ 'mainPanelDeletingRecordPanelConfirmationTitle': "Διαγραφή επιλεγμένης κάρτας",
+ 'mainPanelDeleteRecordPanelConfirmationText': "Είστε σίγουρος ότι θέλετε να διαγράψετε την επιλεγμένη κάρτα?",
+ 'mainPanelDeleteRecordPanelConfirmButtonLabel': "Ναι",
+ 'mainPanelDeleteRecordPanelDenyButtonLabel': "Όχι",
+ 'mainPanelDeletingRecordPanelInitialTitle': "Διαγραφή επιλεγμένης κάρτας ",
+ 'mainPanelDeletingRecordPanelCompletedText': "Ολοκλήρωση",
+
+// Cards block - delete card panel
+ 'deleteRecordPanelCollectRecordDataMessageTitle': "Διαγραφή κάρτας",
+ 'deleteRecordPanelCollectRecordDataMessageText': "Φόρτωση λίστα κάρτας",
+ 'deleteRecordPanelEncryptUserDataMessageTitle': "Διαγραφή κάρτας",
+ 'deleteRecordPanelEncryptUserDataMessageText': "Local encryption of card headers",
+ 'deleteRecordPanelSendingDataToTheServerMessageTitle': "Διαγραφή κάρτας",
+ 'deleteRecordPanelSendingDataToTheServerMessageText': "Uploading encrypted card headers to Clipperz",
+ 'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Διαγραφή κάρτας",
+ 'deleteRecordPanelUpdatingTheInterfaceMessageText': "Φόρτωση επιφάνειας",
+
+// Cards block - no record selected
+ 'recordDetailNoRecordSelectedTitle': "Δεν έχει επιλεγεί κάποια κάρτα",
+ 'recordDetailNoRecordSelectedDescriptionConfig': [
+ {tag:'p', html:'Παρακαλώ επιλέξτε μια κάρτα από αυτές που βρίσκονται στα αριστερά σας'}
+ ],
+
+// Cards block - loading messages
+ 'recordDetailLoadingRecordMessage': "Downloading encrypted card from Clipperz",
+ 'recordDetailDecryptingRecordMessage': "Τοπικη αποκωδικοποίηση αρχείων κάρτας",
+ 'recordDetailLoadingRecordVersionMessage': "Φόρτωση τελευταίας έκδοσης κάρτας",
+ 'recordDetailDecryptingRecordVersionMessage': "Τοπική αποκωδικοποίηση της τελευταίας έκδοσης",
+ 'recordDetailLoadingErrorMessageTitle': "Σφάλμα στη φόρτωση της κάρτας",
+
+// Cards block - card details
+ 'recordDetailNotesLabel': "Σημειώσης",
+ 'recordDetailLabelFieldColumnLabel': "Περιγραφή πεδίου",
+ 'recordDetailDataFieldColumnLabel': "Στοιχεία πεδίου",
+ 'recordDetailTypeFieldColumnLabel': "Τύπος",
+
+ 'recordDetailSavingChangesMessagePanelInitialTitle': "Αποθήκευση κάρτας",
+
+ 'recordDetailAddFieldButtonLabel': "Προσθέστε νέο πεδίο",
+ 'recordDetailPasswordFieldHelpLabel': "Για αντιγραφή του κωδικού στο clipboard επιλέξτε τα αστεράκια και μετα Ctrl-C",
+
+ 'recordDetailDirectLoginBlockTitle': "Κωδικός Πρόσβασης",
+ 'recordDetailNewDirectLoginDescriptionConfig': [
+ {tag:'p', html:'Επικύρωση κωδικου πρόσβασης'}
+ ],
+
+ 'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescriptionConfig': [
+ {tag:'p', html:"Does this card contain credentials to access an online service?"},
+ {tag:'p', html:"Use the bookmarklet to configure a “direct login” from Clipperz with just one click!"}
+ ],
+ 'recordDetailAddNewDirectLoginButtonLabel': "Προσθέστε νέο κωδικό πρόσβασης",
+
+ 'recordDetailEditButtonLabel': "Edit",
+ 'recordDetailSaveButtonLabel': "Αποθήκευση",
+ 'recordDetailCancelButtonLabel': "Ακύρωση",
+
+ 'newRecordTitleLabel': "_Νέα κάρτα_",
+
+// Cards block - save card panel
+ 'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Αποθήκευση κάρτας",
+ 'recordSaveChangesPanelCollectRecordInfoMessageText': "Updating card headers",
+ 'recordSaveChangesPanelEncryptUserDataMessageTitle': "Αποθήκευση κάρτας",
+ 'recordSaveChangesPanelEncryptUserDataMessageText': "Local encryption of card headers",
+ 'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Αποθήκευση κάρτας",
+ 'recordSaveChangesPanelEncryptRecordDataMessageText': "Local encryption of card's data",
+ 'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Αποθήκευση κάρτας",
+ 'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Local encryption of card's version data",
+ 'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Αποθήκευση κάρτας",
+ 'recordSaveChangesPanelSendingDataToTheServerMessageText': "Uploading encrypted card's header to Clipperz",
+ 'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Αποθήκευση κάρτας",
+ 'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Φόρτωση επιφάνειας",
+
+// Exit page
+ 'exitConfig': [
+ {tag:'h2', html:'<b>Goodbye! Thanks for using Clipperz.</b>'},
+
+ {tag:'ul', children:[
+ {tag:'li', children:[
+ {tag:'h3', html:'Remember:'},
+ {tag:'ul', children:[
+ {tag:'li', children:[{tag:'span', html:'Bookmark this page to safely connect to Clipperz in the future (if you haven\'t already done it)'}]},
+ {tag:'li', children:[{tag:'span', html:'Clipperz will never send you an email, because we never asked your email address (and we never will), so never open an email that says it\'s from Clipperz'}]}
+ ]}
+ ]}
+ ]},
+ {tag:'p', html:""},
+ {tag:'p', html:"In 10 seconds you will be redirected to a Wikipedia page where you can read about a major security issue ..."}
+ ],
+
+//-------------------------------------------------------------------
+// Miscellaneous strings
+//-------------------------------------------------------------------
+
+// 'DWRUtilLoadingMessage': "Φόρτωση δεδομένων ...",
+ 'comingSoon': "Σύντομα κοντά σας ...",
+ 'panelCollectingEntryopyMessageText': "Collecting entropy",
+ 'directLoginConfigurationCheckBoxFieldSelectedValue': "Ναι",
+ 'directLoginConfigurationCheckBoxFieldNotSelectedValue': "Όχι",
+
+ //-------------------------------------------------------------------------
+ __syntaxFix__: "syntax fix"
+});
+
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_en-CA.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-CA.js
new file mode 100644
index 0000000..50fa7e5
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-CA.js
@@ -0,0 +1,43 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+//=============================================================================
+//
+// E N G L I S H C A N A D I A N ( en_CA )
+//
+//=============================================================================
+
+Clipperz.PM.Strings.Languages['en-ca'] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+
+// 'forumHeaderLinkLabel': "forum-CA",
+
+// 'recordMenuLabel': "cards-CA",
+
+ //-------------------------------------------------------------------------
+ __syntaxFix__: "syntax fix"
+}); \ No newline at end of file
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_en-GB.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-GB.js
new file mode 100644
index 0000000..ea55650
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-GB.js
@@ -0,0 +1,43 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+//=============================================================================
+//
+// E N G L I S H B R I T I S H ( en_GB )
+//
+//=============================================================================
+
+Clipperz.PM.Strings.Languages['en-gb'] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+
+// 'forumHeaderLinkLabel': "forum-GB",
+
+// 'recordMenuLabel': "cards-GB",
+
+ //-------------------------------------------------------------------------
+ __syntaxFix__: "syntax fix"
+}); \ No newline at end of file
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js
new file mode 100644
index 0000000..c0dd6d0
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_en-US.js
@@ -0,0 +1,1259 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+if (typeof(Clipperz) == 'undefined') { Clipperz = {}; }
+if (typeof(Clipperz.PM) == 'undefined') { Clipperz.PM = {}; }
+if (typeof(Clipperz.PM.Strings) == 'undefined') { Clipperz.PM.Strings = {}; }
+if (typeof(Clipperz.PM.Strings.Languages) == 'undefined') { Clipperz.PM.Strings.Languages = {}; }
+
+//=============================================================================
+//
+// E N G L I S H A M E R I C A N ( en_US )
+//
+//=============================================================================
+
+Clipperz.PM.Strings.Languages['en-us'] = {
+
+// Login page - description
+'clipperzServiceDescription': "\
+ <!-- FIX CSS DONE --> \
+ <h2>Keep it to yourself!</h2>\
+ <ul>\
+ <li>\
+ <h3>Clipperz is:</h3>\
+ <ul>\
+ <li><p>a secure and simple password manager</p></li>\
+ <li><p>an effective single sign-on solution</p></li>\
+ <li><p>a digital vault for your personal data</p></li>\
+ </ul>\
+ </li>\
+ <li>\
+ <h3>With Clipperz you can:</h3>\
+ <ul>\
+ <li><p>store and manage your passwords and online credentials</p></li>\
+ <li><p>login to your web services without entering any username or password</p></li>\
+ <li><p>protect all your sensitive data: codes for burglar alarms, PINs, credit card numbers, …</p></li>\
+ <li><p>share secrets with family members and associates (coming soon)</p></li>\
+ </ul>\
+ </li>\
+ <li>\
+ <h3>Clipperz benefits:</h3>\
+ <ul>\
+ <li><p>free and completely anonymous</p></li>\
+ <li><p>access it any time from any computer</p></li>\
+ <li><p>no software to download and nothing to install</p></li>\
+ <li><p>avoid keeping secrets on your PC or on paper</p></li>\
+ </ul>\
+ </li>\
+ <li>\
+ <h3>Clipperz security:</h3>\
+ <ul>\
+ <li><p>your secrets are locally encrypted by your browser before being uploaded to Clipperz</p></li>\
+ <li><p>the encryption key is a passphrase known only to you</p></li>\
+ <li><p>Clipperz hosts your sensitive data in encrypted form and could never actually access the data in its plain form</p></li>\
+ <li><p>Clipperz is built upon standard encryption schemes, nothing fancies or homemade</p></li>\
+ <li><p>you can review the source code anytime you like, but you need to know nothing about cryptography to be an happy user!</p></li>\
+ </ul>\
+ </li>\
+ <li>\
+ <a href=\"http://www.clipperz.com\" target=\"_blank\">Learn more</a>\
+ </li>\
+ </ul>",
+
+
+'loginFormTitle': "login with your Clipperz account",
+'loginFormUsernameLabel': "username",
+'loginFormPassphraseLabel': "passphrase",
+'loginFormDontHaveAnAccountLabel': "don\'t have an account?",
+'loginFormCreateOneLabel': "create one",
+'loginFormForgotYourCredentialsLabel': "forgot your credentials?",
+'loginFormAarghThatsBadLabel': "aargh! that\'s bad!",
+'loginFormAfraidOfMaliciousScriptsLabel': "afraid of malicious scripts?",
+'loginFormVerifyTheCodeLabel': "verify the code",
+'loginFormButtonLabel': "Login",
+'loginFormOneTimePasswordCheckboxLabel': "use a one-time passphrase",
+'loginFormOneTimePasswordCheckboxDescription': "",
+
+// Login page - language selection
+'loginPanelSwithLanguageDescription': "<h5>Switch to your preferred language</h5>",
+
+// Login page - browser compatibility
+'browserCompatibilityDescription': "<p>Have a better and safer Clipperz experience with Firefox. However Clipperz works just fine also with Opera, Safari and MS Internet Explorer!</p>",
+
+// Login with OTP - message panel
+'OTPloginMessagePanelInitialTitle': "Logging in using a one-time passphrase",
+'OTPloginMessagePanelInitialText': "Sending OTP credentials …",
+'OTPloginMessagePanelLoadingTitle': "Logging in using a one-time passphrase",
+'OTPloginMessagePanelLoadingText': "Fetching encrypted authentication data from the server …",
+'OTPloginMessagePanelProcessingTitle': "Logging in using a one-time passphrase",
+'OTPloginMessagePanelProcessingText': "Local decryption of authentication data",
+
+// Regular login - message panel
+'loginMessagePanelInitialTitle': "Logging in …",
+'loginMessagePanelInitialText': "---",
+'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>.",
+'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",
+'lockDescription': "<p>To unlock your account, please enter your passphrase.</p>",
+'unlockButtonLabel': "Unlock",
+
+// Account panel - change passphrase
+'changePasswordTabLabel': "Change your passphrase",
+'changePasswordTabTitle': "Change your passphrase",
+
+'changePasswordFormUsernameLabel': "username",
+'changePasswordFormOldPassphraseLabel': "old passphrase",
+'changePasswordFormNewPassphraseLabel': "new passphrase",
+'changePasswordFormRetypePassphraseLabel': "re-enter new passphrase",
+'changePasswordFormSafetyCheckboxLabel': "I understand that Clipperz will not be able to recover a lost passphrase.",
+'changePasswordFormSubmitLabel': "Change passphrase",
+
+// Account panel - change passphrase - warning messages
+'changePasswordFormWrongUsernameWarning': "Wrong username",
+'changePasswordFormWrongPassphraseWarning': "Wrong passphrase",
+'changePasswordFormWrongRetypePassphraseWarning': "Your passphrases don't match, please re-type them.",
+'changePasswordFormSafetyCheckWarning': "Please read and check the box below.",
+
+// Account panel - change passphrase - progress dialog
+'changePasswordFormProgressDialogTitle': "Changing user credentials",
+'changePasswordFormProgressDialogEmptyText': "---",
+'changePasswordFormProgressDialogConnectedMessageTitle': "Connected",
+'changePasswordFormProgressDialogConnectedMessageText': "Done",
+'changePasswordFormProgressDialogErrorMessageTitle': "Error",
+'changePasswordFormProgressDialogErrorMessageText': "Credentials change failed!",
+
+'changeCredentialsPanelEncryptingDataMessageTitle': "Changing your passphrase",
+'changeCredentialsPanelEncryptingDataMessageText': "Local encryption of card headers",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Changing your passphrase",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Updating your credentials",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Changing your passphrase",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Uploading your encrypted credentials to Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "Changing your passphrase",
+'changeCredentialsPanelDoneMessageText': "Done",
+
+// Account panel - OTP
+'manageOTPTabLabel': "Manage your one-time passphrases",
+'manageOTPTabTitle': "Manage your one-time passphrases",
+
+'manageOTPTabDescription': "\
+ <p>A one-time passphrase works like your regular passphrase, but can be used only once.</p>\
+ <p>If the same passphrase is used again at a later stage in a login attempt it will be rejected and the login process will fail.</p>\
+ <p>Immediately after a successful login, your one-time passphrase will be deleted preventing any fraudulent access.</p>\
+ <p>One-time passphrases are an excellent choice if one is concerned about keyloggers or spyware infections that may be collecting data from compromised machines.</p>\
+ <p><b>It's strongly advisable to use one-time passphrases when accessing Clipperz from public terminals, such as Internet cafes and libraries.</b></p>",
+
+// Account panel - OTP - OTP table
+'oneTimePasswordReadOnlyMessage': "\
+ <h6>Sorry!</h6>\
+ <p>You cannot manage your one-time passphrases when using the offline version of Clipperz.</p>",
+
+'oneTimePasswordLoadingMessage': "\
+ <h6>Loading data</h6>\
+ <p>Please wait …</p>",
+
+'oneTimePasswordNoPasswordAvailable': "\
+ <h6>No one-time passphrase available</h6>\
+ <p>Click the “New” button above to add one-time passphrases to your account.</p>",
+
+'createNewOTPButtonLabel': "New",
+'deleteOTPButtonLabel': "Delete",
+'printOTPButtonLabel': "Print",
+
+'disabledOneTimePassword_warning': "disabled",
+
+'oneTimePasswordSelectionLink_selectLabel': "Select:",
+'oneTimePasswordSelectionLink_all': "all",
+'oneTimePasswordSelectionLink_none': "none",
+'oneTimePasswordSelectionLink_used': "used",
+'oneTimePasswordSelectionLink_unused': "unused",
+
+//Account panel - OTP - saving new OTP dialog
+'saveOTP_encryptUserDataTitle': "Saving one-time passphrase",
+'saveOTP_encryptUserDataText': "Processing new OTP credentials …",
+'saveOTP_encryptOTPDataTitle': "Saving one-time passphrase",
+'saveOTP_encryptOTPDataText': "Local encryption of authentication data …",
+'saveOTP_sendingDataTitle': "Saving one-time passphrase",
+'saveOTP_sendingDataText': "Sending authentication data to the server …",
+'saveOTP_updatingInterfaceTitle': "Saving one-time passphrase",
+'saveOTP_updatingInterfaceText': "Updating interface",
+
+// Account panel - preferences
+'accountPreferencesLabel': "Preferences",
+'accountPreferencesTabTitle': "Preferences",
+
+'accountPreferencesLanguageTitle': "Language",
+'accountPreferencesLanguageDescription': "<p>Choose your preferred language from the list below.</p>",
+
+'showDonationReminderPanelTitle': "Donation reminders",
+'showDonationReminderPanelDescription': "<p>Show donation reminders</p>",
+
+'saveUserPreferencesFormSubmitLabel': "Save",
+'cancelUserPreferencesFormSubmitLabel': "Cancel",
+
+// Account panel - preferences - saving dialog
+'accountPreferencesSavingPanelTitle_Step1': "Saving preferences",
+'accountPreferencesSavingPanelText_Step1': "Local encryption of your preferences",
+'accountPreferencesSavingPanelTitle_Step2': "Saving preferences",
+'accountPreferencesSavingPanelText_Step2': "Sending encrypted preferences to Clipperz",
+
+// Account panel - login history
+'accountLoginHistoryLabel': "Login history",
+'loginHistoryTabTitle': "Login history",
+
+'loginHistoryReadOnlyMessage': "\
+ <h6>Sorry!</h6>\
+ <p>The login history is not available while using the offline version of Clipperz.</p>",
+
+'loginHistoryLoadingMessage': "\
+ <h6>Loading data</h6>\
+ <p>Please wait …</p>",
+
+'loginHistoryLoadedMessage': "\
+ <h6>Your latest 10 logins</h6>\
+ <p></p>",
+
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "date",
+'loginHistoryCurrentSessionText': "current session",
+'loginHistoryReloadButtonLabel': "Reload login history",
+
+// Account panel - delete account
+'deleteAccountTabLabel': "Delete your account",
+'deleteAccountTabTitle': "Delete your account",
+
+'deleteAccountFormUsernameLabel': "username",
+'deleteAccountFormPassphraseLabel': "passphrase",
+'deleteAccountFormSafetyCheckboxLabel': "I understand that all my data will be deleted and that this action is irreversible.",
+'deleteAccountFormSubmitLabel': "Delete my account",
+
+//Account panel - delete account - warnings
+'deleteAccountFormWrongUsernameWarning': "Wrong username",
+'deleteAccountFormWrongPassphraseWarning': "Wrong passphrase",
+'deleteAccountFormSafetyCheckWarning': "Please read and check the box below.",
+
+//Account panel - delete account - confirmation
+'accountPanelDeletingAccountPanelConfirmationTitle': "ATTENTION",
+'accountPanelDeleteAccountPanelConfirmationText': "Are your sure you want to delete your account?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "Yes",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "No",
+
+//Account panel - delete account - confirmation
+'accountPanelDeletingAccountPanelProgressTitle': "Deleting the account data",
+'accountPanelDeletingAccountPanelProgressText': "The operation could take long, please be patient.",
+
+//Data panel - offline copy
+'offlineCopyTabLabel': "Offline copy",
+'offlineCopyTabTitle': "Offline copy",
+
+'offlineCopyTabDescription': "\
+ <!-- FIX CSS DONE! --> \
+ <p>With just one click you can dump all your encrypted data from Clipperz servers to your hard disk and create a read-only offline version of Clipperz to be used when you are not connected to the Internet.</p>\
+ <p>The read-only version is as secure as the read-and-write one and will not expose your data to higher risks since they both share the same code and security architecture.</p>\
+ <ol>\
+ <li><p>Click the link below to start the download.</p></li>\
+ <li><p>The browser will ask you what to do with the “Clipperz_YYYYMMDD.html” file. Save it on your hard disk.</p></li>\
+ <li><p>Double click on the downloaded file to launch the offline version in your browser.</p></li>\
+ <li><p>Enter the usual username and passphrase.</p></li>\
+ </ol>",
+
+'offlineCopyDownloadLinkLabel': "Download",
+
+// Data panel - offline copy - not updated
+'offlineCopyDownloadWarning': "\
+ <!-- FIX CSS DONE! --> \
+ <h4><a href=\"#\" id=\"offlineCopyDownloadWarningLink\">Update your “offline copy”!</a></h4>\
+ <p>You have recently created or modified one or more cards, it would be wise to download a new copy of the offline version.</p>",
+
+'offlineCopyDownloadOk': "",
+
+// Data panel - sharing
+'sharingTabLabel': "Sharing",
+'sharingTabTitle': "Sharing",
+
+'sharingTabDescription': "\
+ <p>Quite often a confidential piece of information needs to be shared with one or more persons.</p>\
+ <p>This could be as simple as giving your colleague the access code of your voice mailbox when you are out of the office, or as complicated as enabling the entitled heirs to access your safe deposit box at the local bank when you pass on.</p>\
+ <p>Clipperz can make sharing your secrets a secure and straightforward process.</p>\
+ <p></p>\
+ <p><b>Coming soon …</b></p>",
+
+// Data panel - import
+'importTabLabel': "Import",
+'importTabTitle': "Import",
+
+'importTabDescription': "<p>You can bulk import data to your Clipperz account from several file formats.</p>",
+
+// Data panel - export
+'printingTabLabel': "Export",
+'printingTabTitle': "Export",
+
+'printingTabDescription': "\
+ <h5>Printing</h5>\
+ <p>Click on the link below to open a new window displaying all your cards in a printable format.</p>\
+ <p>If you are going to print for backup purposes, please consider the safer option provided by the “offline copy”.</p>",
+
+'printingLinkLabel': "Printable version",
+
+'exportTabDescription': "\
+ <h5>Exporting to JSON</h5>\
+ <p>JSON enables a “lossless” export of your cards. All the information will be preserved, including direct login configurations.</p>\
+ <p>This custom format it’s quite convenient if you need to move some of all of your cards to a different Clipperz account. Or if you want to restore a card that has been accidentally deleted.</p>\
+ <p>Click on the link below to start the export process.</p>",
+
+'exportLinkLabel': "Export to JSON",
+
+'exportDataInProgressDescription': "<h4>Exporting, please wait while your data are being processed …</h4>",
+
+'exportDataDescription': "\
+ <h4>Instructions</h4>\
+ <p>Copy the text below to your favorite editor and save it. (e.g. “clipperz_export_20071217.json”)</p>",
+
+// Contacts panel
+'contactsTabLabel': "Contacts",
+'contactsTabTitle': "Contacts",
+
+//Tools panel - password generator
+'passwordGeneratorTabLabel': "Password generator",
+'bookmarkletTabLabel': "Bookmarklet",
+'compactTabLabel': "Compact edition",
+'httpAuthTabLabel': "HTTP authentication",
+
+'passwordGeneratorTabTitle': "Password generator",
+'bookmarkletTabTitle': "Bookmarklet",
+'compactTabTitle': "Compact edition",
+'httpAuthTabTitle': "HTTP authentication",
+
+
+// Tools panel - password generator - description
+'paswordGeneratorTabDescription': "<p></p>",
+'passwordGeneratorTabButtonLabel': "Generate password",
+
+// Tools panel - bookmarklet
+'bookmarkletTabLabel': "Bookmarklet",
+'bookmarkletTabTitle': "Bookmarklet",
+
+'bookmarkletTabDescription': "\
+ <!-- FIX CSS DONE! --> \
+ <p>A bookmarklet is a simple “one-click” tool that can perform very useful tasks. It can be saved and used like a normal web page bookmark.</p>\
+ <p>The Clipperz bookmarklet will help you to quickly create new cards and new “direct logins” within existing cards.</p>\
+ <p><b>Please note that the bookmarklet does not include any information related to your account (e.g. your username or passphrase), the bookmarklet is a general tool containing the same code for every Clipperz user.</b></p>\
+ <h3>How to install the bookmarklet</h3>\
+ <h>Firefox, Camino, Opera, Safari</h5>\
+ <ol>\
+ <li><p>Make sure that the “Bookmarks Bar” is displayed by selecting “View > Toolbars > Bookmarks”, or similar menu items, from the browser menu.</p></li>\
+ <li><p>Drag and drop the “Add to Clipperz” link below to the bookmark bar.</p></li>\
+ </ol>\
+ \
+ <h5>Internet Explorer</h5>\
+ <ol>\
+ <li><p>Make sure that the “Links” toolbar is displayed by selecting “View > Toolbars > Links” from the browser menu.</p></li>\
+ <li><p>Right-click on the “Add to Clipperz” link below.</p></li>\
+ <li><p>Select “Add to favorites” from the contextual menu.</p></li>\
+ <li><p>Click “Yes” for any security message that pops up.</p></li>\
+ <li><p>Open the “Links” folder and click “OK”</p></li>\
+ </ol>",
+
+'bookmarkletTabBookmarkletTitle': "Add to Clipperz",
+
+// Tools panel - bookmarklet - instructions
+'bookmarkletTabInstructions': "\
+ <!-- FIX CSS DONE! --> \
+ <h3>How to create a new card inclusive of a “direct login” link to an online service</h3>\
+ <ol>\
+ <li><p>Open the web page where the login form is hosted. (this is the page where you usually enter your sign-in credentials)</p></li>\
+ <li><p>Launch the bookmarklet by clicking on it: a pop-up window will appear over the web page.</p></li>\
+ <li><p>Copy to the clipboard the content of the large text area within the pop-up. (ctrl-C)</p></li>\
+ <li><p>Enter your Clipperz account and click on the <b>Add new card</b> button.</p></li>\
+ <li><p>Select the “Direct login” template and paste the content of the clipboard to the large text area in the form. (ctrl-V)</p></li>\
+ <li><p>Press the <b>Create</b> button, complete and review the details, then click <b>Save</b>.</p></li>\
+ </ol>\
+ \
+ <h3>How to add a “direct login” link to an existing card</h3>\
+ <ol>\
+ <li><p>Same as above.</p></li>\
+ <li><p>Same as above.</p></li>\
+ <li><p>Same as above.</p></li>\
+ <li><p>Enter your Clipperz account and select the card containing the credentials for the web service you just visited and click the <b>Edit</b> button.</p></li>\
+ <li><p>Paste the content of the clipboard to the large text area in the “Direct logins” section. (ctrl-V)</p></li>\
+ <li><p>Press the <b>Add direct login</b> button, review the details and then click <b>Save</b>.</p></li>\
+ </ol>\
+ \
+ <p></p>\
+ <p>Further information about the bookmarklet are <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">available here</a>.</p>",
+
+// Tools panel - Compact - instructions
+'compactTabDescription': "\
+ <!-- FIX CSS DONE! --> \
+ <p>Clipperz Compact is a special version of Clipperz designed to be opened in the Firefox sidebar.</p>\
+ <p>Its purpose is to keep your collection of “direct logins” always at hand. Read more <a href=\"http://www.clipperz.com/support/user_guide/clipperz_compact\", target=\"blank\">here</a></p>\
+ \
+ <h3>How to launch Clipperz Compact in the sidebar</h3>\
+ <ol>\
+ <li><p>Get Firefox! Sidebars are only available in Firefox and you need to switch to Firefox in order to enjoy the convenience of Clipperz Compact.</p></li>\
+ <li>\
+ <p>Add the following URL to Firefox bookmarks, or even better, drag it to the bookmark bar.</p>\
+ <div id=\"compactLinkBox\"><a href=\"https://www.clipperz.com/beta/index.html?compact\" target=\"_search\">Clipperz Compact</a></div>\
+ </li>\
+ <li><p>Change the properties of the bookmark so that “load this bookmark in the sidebar” is checked.</p></li>\
+ </ol>\
+ \
+ <h5>Added bonus: Clipperz Compact works also in Opera’s panel.</h5>",
+
+// Tools panel - HTTP authentication - instructions
+'httpAuthTabDescription': "\
+ <!-- FIX CSS DONE! --> \
+ <p>HTTP authentication is a method designed to allow a web browser to provide credentials – in the form of a username and password – including them in a website address (HTTP or HTTPS URL).</p>\
+ <p>Nowadays it is rarely used, but it can still be found on small, private websites. You can tell that a website is protected by HTTP authentication when the browser displays a pop-up window to enter username and password.</p>\
+ <p>Unfortunately the Clipperz bookmarklet does not work on websites that use HTTP authentication. However you can still create a “direct login”.</p>\
+ \
+ <h3>How to create a “direct login” for a website that uses HTTP authentication</h3>\
+ <ol>\
+ <li><p>Store website URL, username and password in a new card.</p></li>\
+ <li><p>Copy the configuration below and paste it to the large text area in the “Direct logins” section of the new card.</p></li>\
+ <li><p>Press the <b>Add direct login</b> button, bind URL, username and password fields and then click <b>Save</b>.</p></li>\
+ </ol>\
+ \
+ <h5><a href=\"http://support.microsoft.com/kb/834489\" target=\"_blank\">Warning: Internet Explorer does not support HTTP authentication.</a></h5>",
+
+// Direct logins block
+'mainPanelDirectLoginBlockLabel': "Direct logins",
+'directLinkReferenceShowButtonLabel': "show",
+
+// Direct logins - blank slate
+'mainPanelDirectLoginBlockDescription': "\
+ <!-- FIX CSS DONE! --> \
+ <p>Add “direct logins” to sign in to your web accounts without typing usernames and passwords!</p>\
+ <p>“Direct logins” greatly enhance your password security since you can:</p>\
+ <ul>\
+ <li><p>conveniently adopt and enter complex passwords;</p></li>\
+ <li><p>never re-use the same and easy-to-guess password.</p></li>\
+ </ul>\
+ <p>Simple and quick configuration with the <b>Clipperz bookmarklet</b>.</p>\
+ <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Learn more about “direct logins”</a>",
+
+// Cards block
+'mainPanelRecordsBlockLabel': "Cards",
+'mainPanelAddRecordButtonLabel': "Add new card",
+'mainPanelRemoveRecordButtonLabel': "Delete card",
+
+// Cards block - filter tabs
+'mainPanelRecordFilterBlockAllLabel': "all",
+'mainPanelRecordFilterBlockTagsLabel': "tags",
+'mainPanelRecordFilterBlockSearchLabel': "search",
+
+// Cards block - blank slate
+'recordDetailNoRecordAtAllTitle': "Welcome to Clipperz!",
+'recordDetailNoRecordAtAllDescription': "\
+ <h5>Get started by adding cards to your account.</h5>\
+ <p>Cards are simple and flexible forms where you can store your passwords and any other confidential data.</p>\
+ <p>Cards could contain credentials for accessing a web site, the combination of your bicycle lock, details of your credit card, …</p>\
+ \
+ <h5>Don't forget the Clipperz bookmarklet!</h5>\
+ <p>Before you start, install the “Add to Clipperz” bookmarklet: it will make creating cards easier and more fun.</p>\
+ <p>Go to the “Tools” tab to discover how to install it and how it use it.</p>\
+ <p></p>\
+ <p>Then simply click the <b>\"Add new card\"</b> button and enjoy your Clipperz account.</p>\
+ <p></p>\
+ <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">Learn more about creating and managing cards</a>",
+
+// Cards block - new card wizard - bookmarklet configuration
+'newRecordWizardTitleBox': "\
+ <h5>Please select a template</h5>\
+ <p>Cards are simple and flexible forms where you can store passwords or any other confidential data.</p>\
+ <p>Start choosing one of the templates below. You can always customize your cards later by adding or removing fields.</p>",
+
+'newRecordWizardBookmarkletConfigurationTitle': "Direct login",
+'newRecordWizardBookmarkletConfigurationDescription': "\
+ <p>Paste below the configuration code generated by the Clipperz bookmarklet.</p>\
+ <p>A new card complete with a direct login to your web account will be created.</p>",
+
+'newRecordWizardCreateButtonLabel': "Create",
+'newRecordWizardCancelButtonLabel': "Cancel",
+
+// Create new card - Donation splash
+'donateSplashPanelTitle': "Support Clipperz, make a donation today!",
+'donateSplashPanelDescription': "\
+ <!-- FIX CSS DONE! --> \
+ <p>A few good reasons to make a donation:</p>\
+ <ul>\
+ <li><p>support the development of new features</p></li>\
+ <li><p>keep Clipperz free</p></li>\
+ <li><p>show appreciation for our hard work</p></li>\
+ </ul>\
+ <p>For any further information, please visit our <a href=\"http://www.clipperz.com/donations\" target=\"_blank\">Donations page</a>.</p>\
+ <p><b>Ready to donate?</b></p>",
+
+'donateCloseButtonLabel': "Not yet",
+'donateDonateButtonLabel': "Yes",
+
+// Card templates
+'recordTemplates': {
+
+//Web password
+ 'WebAccount': {
+ 'title': "Web password",
+ 'description': "<p>A simple card to store login credentials for your online services.</p>",
+ 'fields': [
+ {label:"Web address", type:'URL'},
+ {label:"Username or email", type:'TXT'},
+ {label:"Password", type:'PWD'}
+ ]
+ },
+
+//Bank account
+ 'BankAccount': {
+ 'title': "Bank account",
+ 'description': "<p>Safely store your bank account number and online banking credentials.</p>",
+ 'fields': [
+ {label:"Bank", type:'TXT'},
+ {label:"Account number", type:'TXT'},
+ {label:"Bank website", type:'URL'},
+ {label:"Online banking ID", type:'TXT'},
+ {label:"Online banking password", type:'PWD'}
+ ]
+ },
+
+// Credit card
+ 'CreditCard': {
+ 'title': "Credit card",
+ 'description': "<p>Card number, expire date, CVV2 and PIN always at hand with Clipperz.</p>",
+ 'fields': [
+ {label:"Type (Visa, AmEx, …)", type:'TXT'},
+ {label:"Number", type:'TXT'},
+ {label:"Owner name", type:'TXT'},
+ {label:"Expiry date", type:'TXT'},
+ {label:"CVV2", type:'TXT'},
+ {label:"PIN", type:'PWD'},
+ {label:"Card website", type:'URL'},
+ {label:"Username", type:'TXT'},
+ {label:"Password", type:'PWD'}
+ ]
+ },
+
+// Address book entry
+ 'AddressBookEntry': {
+ 'title': "Address book entry",
+ 'description': "<p>Clipperz could also work as your new private address book. Use this template to easily add a new entry.</p>",
+ 'fields': [
+ {label:"Name", type:'TXT'},
+ {label:"Email", type:'TXT'},
+ {label:"Phone", type:'TXT'},
+ {label:"Mobile", type:'TXT'},
+ {label:"Address", type:'ADDR'},
+ ]
+ },
+
+//Custom card
+ 'Custom': {
+ 'title': "Custom card",
+ 'description': "<p>No matter which kind of confidential data you need to protect, create a custom card to match your needs.</p>",
+ 'fields': [
+ {label:"Label 1", type:'TXT'},
+ {label:"Label 2", type:'TXT'},
+ {label:"Label 3", type:'TXT'}
+ ]
+ }
+},
+
+
+'recordFieldTypologies': {
+ 'TXT': {
+ description: "simple text field",
+ shortDescription: "text"
+ },
+ 'PWD': {
+ description: "simple text field, with default status set to hidden",
+ shortDescription: "password"
+ },
+ 'URL': {
+ description: "simple text field in edit mode, that became an active url in view mode",
+ shortDescription: "web address"
+ },
+ 'DATE': {
+ description: "a value set with a calendar helper",
+ shortDescription: "date"
+ },
+ 'ADDR': {
+ description: "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ shortDescription: "street address"
+ },
+ 'CHECK': {
+ description: "check description",
+ shortDescription: "check"
+ },
+ 'RADIO': {
+ description: "radio description",
+ shortDescription: "radio"
+ },
+ 'SELECT': {
+ description: "select description",
+ shortDescription: "select"
+ }
+},
+
+// Cards block - new card - warnings
+'newRecordPanelGeneralExceptionTitle': "Error",
+'newRecordPanelGeneralExceptionMessage': "The configuration text is not valid. Make sure to get your text from the bookmarklet pop-up and retry.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Error",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "The configuration text has been generated by an old version of the bookmarklet. Please update your bookmarklet and retry.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Cancel",
+
+// Cards block - delete card
+'mainPanelDeletingRecordPanelConfirmationTitle': "Deleting selected card",
+'mainPanelDeleteRecordPanelConfirmationText': "Do your really want to delete the selected card?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "Yes",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "No",
+'mainPanelDeletingRecordPanelInitialTitle': "Deleting selected card",
+'mainPanelDeletingRecordPanelInitialText': "---",
+'mainPanelDeletingRecordPanelCompletedText': "Done",
+
+// Cards block - delete card panel
+'deleteRecordPanelCollectRecordDataMessageTitle': "Delete card",
+'deleteRecordPanelCollectRecordDataMessageText': "Updating card list",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Delete card",
+'deleteRecordPanelEncryptUserDataMessageText': "Local encryption of card headers",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Delete card",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Uploading encrypted card headers to Clipperz",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Delete card",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Updating the interface",
+
+// Cards block - no record selected
+'recordDetailNoRecordSelectedTitle': "No card selected",
+'recordDetailNoRecordSelectedDescription': "<p>Please select a card from the list on the left.</p>",
+
+// Cards block - loading messages
+'recordDetailLoadingRecordMessage': "Downloading encrypted card from Clipperz",
+'recordDetailDecryptingRecordMessage': "Local decryption of card\'s data",
+'recordDetailLoadingRecordVersionMessage': "Downloading latest card version",
+'recordDetailDecryptingRecordVersionMessage': "Local decryption of latest version",
+'recordDetailLoadingErrorMessageTitle': "Error while downloading the card",
+
+// Cards block - card details
+'recordDetailNotesLabel': "Notes",
+'recordDetailLabelFieldColumnLabel': "Field label",
+'recordDetailDataFieldColumnLabel': "Field data",
+'recordDetailTypeFieldColumnLabel': "Type",
+
+'recordDetailSavingChangesMessagePanelInitialTitle': "Saving card",
+'recordDetailSavingChangesMessagePanelInitialText': "---",
+
+'recordDetailRemoveFieldButtonLabel': "-",
+'recordDetailAddFieldButtonLabel': "Add new field",
+'recordDetailPasswordFieldHelpLabel': "click the stars to select the password and then Ctrl-C to copy",
+
+'recordDetailPasswordFieldScrambleLabel': "scramble",
+'recordDetailPasswordFieldUnscrambleLabel': "unscramble",
+
+'recordDetailDirectLoginBlockTitle': "Direct logins",
+'recordDetailNewDirectLoginDescription': "<p>Direct login configuration</p>",
+
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "\
+ <p>Does this card contain credentials to access an online service?</p>\
+ <p>Use the bookmarklet to configure a “direct login” from Clipperz with just one click!</p>",
+
+'recordDetailDeleteDirectLoginButtonLabel': "-",
+'recordDetailAddNewDirectLoginButtonLabel': "Add new direct login",
+
+'recordDetailEditButtonLabel': "Edit",
+'recordDetailSaveButtonLabel': "Save",
+'recordDetailCancelButtonLabel': "Cancel",
+
+'newRecordTitleLabel': "_new card_",
+'newDirectLoginLabelSuffix': "",
+
+// Cards block - save card panel
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Save card",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Updating card headers",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Save card",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Local encryption of card headers",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Save card",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Local encryption of card's data",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Save card",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Local encryption of card's version data",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Save card",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Uploading encrypted card's header to Clipperz",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Save card",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Updating the interface",
+
+// Password Generator strings
+'passwordGeneratorPanelTitle': "Password generator",
+'passwordGeneratorPanelOkLabel': "Ok",
+'passwordGeneratorPanelCancelLabel': "Cancel",
+
+'passwordGeneratorLowercaseLabel': "abc",
+'passwordGeneratorUppercaseLabel': "ABC",
+'passwordGeneratorNumberLabel': "012",
+'passwordGeneratorSymbolLabel': "@#$",
+
+'passwordGeneratorLengthLabel': "length:",
+
+
+//Miscellaneous strings
+
+//'DWRUtilLoadingMessage': "Loading data …",
+'comingSoon': "coming soon …",
+'panelCollectingEntryopyMessageText': "Collecting entropy",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "Yes",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "No",
+
+
+
+// NEW - Import panel
+'importFormats': {
+ 'CSV': {
+ 'label': "CSV",
+ 'description': "<p>A widely recognized file format that stores tabular data. Several password managers can export data to this format.</p>"
+ },
+ 'Excel': {
+ 'label': "Excel",
+ 'description': "<p>The popular spreadsheet from Microsoft. Storing passwords in Excel files is very common but not advisable.</p>"
+ },
+ 'KeePass': {
+ 'label': "KeePass",
+ 'description': "<p>The custom TXT file created by KeePass password manager.</p>"
+ },
+ 'PasswordPlus': {
+ 'label': "Password Plus",
+ 'description': "<p>The custom CSV format produced by Password Plus, a password manager mostly used on mobile devices.</p>"
+ },
+ 'Roboform': {
+ 'label': "RoboForm",
+ 'description': "<p>The special HTML file created by Roboform password manager when displaying Passcard and Safenotes for printing.</p>"
+ },
+ 'ClipperzExport': {
+ 'label': "JSON",
+ 'description': "<p>The file created by Clipperz itself in JSON format. It preserves all information contained in your cards, even direct login configurations.</p>"
+ }
+},
+
+// JSON
+'Clipperz_ImportWizard_Title': "JSON import",
+'importOptions_clipperz_description': "<p>Open the JSON file exported from Clipperz in a text editor. Then copy and paste its content to the text area below.</p>",
+
+// CSV
+'CSV_ImportWizard_Title': "CSV import",
+'importOptions_csv_description_': "\
+ <p>Open the CSV file in a text editor. Then copy and paste its content to the text area below.</p>\
+ <p>Please select the special characters used within your file.</p>",
+
+// Excel
+'Excel_ImportWizard_Title': "Excel import",
+'importOptions_excel_description_': "<p>Open the Excel file and select the cells you want to import. Then copy and paste them to the text area below.</p>",
+
+// KeePass
+'KeePass_ImportWizard_Title': "KeePass import",
+'importOptions_keePass_description_': "<p>Open the TXT file created by Keepass in a text editor. Then copy and paste its content to the text area below.</p>",
+
+// PasswordPlus
+'PasswordPlus_ImportWizard_Title': "Password Plus import",
+'importOptions_passwordPlus_description': "<p>Open the CSV file created by PasswordPlus in a text editor. Then copy and paste its content to the text area below.</p>",
+
+// RoboForm
+'RoboForm_ImportWizard_Title': "RoboForm import",
+'importOptions_roboForm_description': "<p>Open the HTML file created by RoboForm in a text editor. Then copy and paste its content to the text area below.</p>",
+
+
+'importData_parsingDataTitle': "Import",
+'importData_parsingDataText': "Parsing data …",
+
+'importData_previewingDataTitle': "Import",
+'importData_previewingDataText': "Processing data …",
+
+'importData_processingDataTitle': "Import",
+'importData_processingDataText': "Creating new cards …",
+
+'ImportWizard': {
+ 'EDIT': "edit",
+ 'PREVIEW': "preview",
+ 'IMPORT': "import",
+
+ 'KEEPASS_SETTINGS': "settings",
+
+ 'CSV_EDIT': "paste",
+ 'CSV_COLUMNS': "columns",
+ 'CSV_HEADER': "labels",
+ 'CSV_TITLE': "titles",
+ 'CSV_NOTES': "notes",
+ 'CSV_FIELDS': "types",
+
+ 'EXCEL_EDIT': "edit"
+},
+
+'CSV_ImportWizard_Columns': "<p>Select the columns you want to import.</p>",
+'CSV_ImportWizard_Header': "<p>If the first row of the CSV file contains field labels, tick off the checkbox below.</p>",
+'CSV_ImportWizard_Header_Settings_firstRowHeaderLabel': "Use the first row as labels?",
+'CSV_ImportWizard_Title': "<p>Select the column that contains titles of the cards you are importing. (mandatory)</p>",
+'CSV_ImportWizard_Notes': "<p>Select the column that represents a \"notes\" field. (optional)</p>",
+'CSV_ImportWizard_Notes_Settings_noSelectionLabel': "\"notes\" field not present",
+'CSV_ImportWizard_Fields': "<p>Select the correct type for each column from the drop down lists.</p>",
+'CSV_ImportWizard_Fields_MissingLabelWarning': "Missing label",
+
+'importData_importConfirmation_title': "Import",
+'importData_importConfirmation_text': "Do you want to import __numberOfRecords__ cards?",
+
+
+// Vulnerability warning
+'VulnerabilityWarning_Panel_title': "Vulnerability warning",
+'VulnerabilityWarning_Panel_message': "The action as been aborted due to a catched vulnerability",
+'VulnerabilityWarning_Panel_buttonLabel': "Close",
+
+
+
+// All the loginInfo panel infos
+
+'WELCOME_BACK': "Welcome back!",
+
+'currentConnectionText': "You are connected from ip&nbsp;__ip__, apparently from __country__, using __browser__ on __operatingSystem__.",
+'latestConnectionText': "Your latest connection was __elapsedTimeDescription__ (__time__) from ip&nbsp;__ip__, apparently from __country__, using __browser__ on __operatingSystem__.",
+
+'fullLoginHistoryLinkLabel': "show login history",
+
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "more than a month ago",
+ 'MORE_THAN_A_WEEK_AGO': "more than a week ago",
+ 'MORE_THAN_*_WEEKS_AGO': "more than __elapsed__ weeks ago",
+ 'YESTERDAY': "yesterday",
+ '*_DAYS_AGO': "__elapsed__ days ago",
+ 'ABOUT_AN_HOUR_AGO': "about an hour ago",
+ '*_HOURS_AGO': "__elapsed__ hours ago",
+ 'JUST_A_FEW_MINUTES_AGO': "just a few minutes ago",
+ 'ABOUT_*_MINUTES_AGO': "about __elapsed__ minutes ago"
+},
+
+'unknown_ip': "unknown",
+
+'countries': {
+ '--': "unknown",
+ 'AD': "Andorra",
+ 'AE': "United Arab Emirates",
+ 'AF': "Afghanistan",
+ 'AG': "Antigua and Barbuda",
+ 'AI': "Anguilla",
+ 'AL': "Albania",
+ 'AM': "Armenia",
+ 'AN': "Netherlands Antilles",
+ 'AO': "Angola",
+ 'AP': "Non-Spec Asia Pas Location",
+ 'AR': "Argentina",
+ 'AS': "American Samoa",
+ 'AT': "Austria",
+ 'AU': "Australia",
+ 'AW': "Aruba",
+ 'AX': "Aland Islands",
+ 'AZ': "Azerbaijan",
+ 'BA': "Bosnia and Herzegowina",
+ 'BB': "Barbados",
+ 'BD': "Bangladesh",
+ 'BE': "Belgium",
+ 'BF': "Burkina Faso",
+ 'BG': "Bulgaria",
+ 'BH': "Bahrain",
+ 'BI': "Burundi",
+ 'BJ': "Benin",
+ 'BM': "Bermuda",
+ 'BN': "Brunei Darussalam",
+ 'BO': "Bolivia",
+ 'BR': "Brazil",
+ 'BS': "Bahamas",
+ 'BT': "Bhutan",
+ 'BW': "Botswana",
+ 'BY': "Belarus",
+ 'BZ': "Belize",
+ 'CA': "Canada",
+ 'CD': "Congo the Democratic Republic of the",
+ 'CF': "Central African Republic",
+ 'CH': "Switzerland",
+ 'CI': "Cote D'ivoire",
+ 'CK': "Cook Islands",
+ 'CL': "Chile",
+ 'CM': "Cameroon",
+ 'CN': "China",
+ 'CO': "Colombia",
+ 'CR': "Costa Rica",
+ 'CS': "Serbia and Montenegro",
+ 'CU': "Cuba",
+ 'CY': "Cyprus",
+ 'CZ': "Czech Republic",
+ 'DE': "Germany",
+ 'DJ': "Djibouti",
+ 'DK': "Denmark",
+ 'DO': "Dominican Republic",
+ 'DZ': "Algeria",
+ 'EC': "Ecuador",
+ 'EE': "Estonia",
+ 'EG': "Egypt",
+ 'ER': "Eritrea",
+ 'ES': "Spain",
+ 'ET': "Ethiopia",
+ 'EU': "European Union",
+ 'FI': "Finland",
+ 'FJ': "Fiji",
+ 'FM': "Micronesia Federated States of",
+ 'FO': "Faroe Islands",
+ 'FR': "France",
+ 'GA': "Gabon",
+ 'GB': "United Kingdom",
+ 'GD': "Grenada",
+ 'GE': "Georgia",
+ 'GF': "French Guiana",
+ 'GG': "Guernsey",
+ 'GH': "Ghana",
+ 'GI': "Gibraltar",
+ 'GL': "Greenland",
+ 'GM': "Gambia",
+ 'GP': "Guadeloupe",
+ 'GR': "Greece",
+ 'GT': "Guatemala",
+ 'GU': "Guam",
+ 'GW': "Guinea-Bissau",
+ 'GY': "Guyana",
+ 'HK': "Hong Kong",
+ 'HN': "Honduras",
+ 'HR': "Croatia (Local Name: Hrvatska)",
+ 'HT': "Haiti",
+ 'HU': "Hungary",
+ 'ID': "Indonesia",
+ 'IE': "Ireland",
+ 'IL': "Israel",
+ 'IM': "Isle of Man",
+ 'IN': "India",
+ 'IO': "British Indian Ocean Territory",
+ 'IQ': "Iraq",
+ 'IR': "Iran (Islamic Republic of)",
+ 'IS': "Iceland",
+ 'IT': "Italy",
+ 'JE': "Jersey",
+ 'JM': "Jamaica",
+ 'JO': "Jordan",
+ 'JP': "Japan",
+ 'KE': "Kenya",
+ 'KG': "Kyrgyzstan",
+ 'KH': "Cambodia",
+ 'KI': "Kiribati",
+ 'KN': "Saint Kitts and Nevis",
+ 'KR': "Korea Republic of",
+ 'KW': "Kuwait",
+ 'KY': "Cayman Islands",
+ 'KZ': "Kazakhstan",
+ 'LA': "Lao People's Democratic Republic",
+ 'LB': "Lebanon",
+ 'LC': "Saint Lucia",
+ 'LI': "Liechtenstein",
+ 'LK': "Sri Lanka",
+ 'LR': "Liberia",
+ 'LS': "Lesotho",
+ 'LT': "Lithuania",
+ 'LU': "Luxembourg",
+ 'LV': "Latvia",
+ 'LY': "Libyan Arab Jamahiriya",
+ 'MA': "Morocco",
+ 'MC': "Monaco",
+ 'MD': "Moldova Republic of",
+ 'MG': "Madagascar",
+ 'MH': "Marshall Islands",
+ 'MK': "Macedonia the Former Yugoslav Republic of",
+ 'ML': "Mali",
+ 'MM': "Myanmar",
+ 'MN': "Mongolia",
+ 'MO': "Macau",
+ 'MP': "Northern Mariana Islands",
+ 'MR': "Mauritania",
+ 'MS': "Montserrat",
+ 'MT': "Malta",
+ 'MU': "Mauritius",
+ 'MV': "Maldives",
+ 'MW': "Malawi",
+ 'MX': "Mexico",
+ 'MY': "Malaysia",
+ 'MZ': "Mozambique",
+ 'NA': "Namibia",
+ 'NC': "New Caledonia",
+ 'NF': "Norfolk Island",
+ 'NG': "Nigeria",
+ 'NI': "Nicaragua",
+ 'NL': "Netherlands",
+ 'NO': "Norway",
+ 'NP': "Nepal",
+ 'NR': "Nauru",
+ 'NU': "Niue",
+ 'NZ': "New Zealand",
+ 'OM': "Oman",
+ 'PA': "Panama",
+ 'PE': "Peru",
+ 'PF': "French Polynesia",
+ 'PG': "Papua New Guinea",
+ 'PH': "Philippines",
+ 'PK': "Pakistan",
+ 'PL': "Poland",
+ 'PR': "Puerto Rico",
+ 'PS': "Palestinian Territory Occupied",
+ 'PT': "Portugal",
+ 'PW': "Palau",
+ 'PY': "Paraguay",
+ 'QA': "Qatar",
+ 'RO': "Romania",
+ 'RS': "Serbia",
+ 'RU': "Russian Federation",
+ 'RW': "Rwanda",
+ 'SA': "Saudi Arabia",
+ 'SB': "Solomon Islands",
+ 'SC': "Seychelles",
+ 'SD': "Sudan",
+ 'SE': "Sweden",
+ 'SG': "Singapore",
+ 'SI': "Slovenia",
+ 'SK': "Slovakia (Slovak Republic)",
+ 'SL': "Sierra Leone",
+ 'SM': "San Marino",
+ 'SN': "Senegal",
+ 'SR': "Suriname",
+ 'SV': "El Salvador",
+ 'SY': "Syrian Arab Republic",
+ 'SZ': "Swaziland",
+ 'TC': "Turks and Caicos Islands",
+ 'TG': "Togo",
+ 'TH': "Thailand",
+ 'TJ': "Tajikistan",
+ 'TM': "Turkmenistan",
+ 'TN': "Tunisia",
+ 'TO': "Tonga",
+ 'TR': "Turkey",
+ 'TT': "Trinidad and Tobago",
+ 'TV': "Tuvalu",
+ 'TW': "Taiwan Province of China",
+ 'TZ': "Tanzania United Republic of",
+ 'UA': "Ukraine",
+ 'UG': "Uganda",
+ 'US': "United States",
+ 'UY': "Uruguay",
+ 'UZ': "Uzbekistan",
+ 'VA': "Holy See (Vatican City State)",
+ 'VE': "Venezuela",
+ 'VG': "Virgin Islands (British)",
+ 'VI': "Virgin Islands (U.S.)",
+ 'VN': "Viet Nam",
+ 'VU': "Vanuatu",
+ 'WF': "Wallis and Futuna Islands",
+ 'WS': "Samoa",
+ 'YE': "Yemen",
+ 'ZA': "South Africa",
+ 'ZM': "Zambia",
+ 'ZW': "Zimbabwe",
+ 'ZZ': "Reserved"
+},
+
+'browsers': {
+ 'UNKNOWN': "Unknown",
+ 'MSIE': "Internet Explorer",
+ 'FIREFOX': "Firefox",
+ 'OPERA': "Opera",
+ 'SAFARI': "Safari",
+ 'OMNIWEB': "OmniWeb",
+ 'CAMINO': "Camino",
+ 'CHROME': "Chrome"
+},
+
+'operatingSystems': {
+ 'UNKNOWN': "Unknown",
+ 'WINDOWS': "Windows",
+ 'MAC': "Mac",
+ 'LINUX': "Linux",
+ 'IPHONE': "iPhone",
+ 'MOBILE': "Mobile",
+ 'OPENBSD': "OpenBSD",
+ 'FREEBSD': "FreeBSD",
+ 'NETBSD': "NetBSD"
+},
+
+
+// Calendar texts
+'calendarStrings': {
+ 'months': {
+ '0': "January",
+ '1': "February",
+ '2': "March",
+ '3': "April",
+ '4': "May",
+ '5': "June",
+ '6': "July",
+ '7': "August",
+ '8': "September",
+ '9': "October",
+ '10': "November",
+ '11': "December"
+ },
+ 'shortMonths': {
+ '0': "Jan",
+ '1': "Feb",
+ '2': "Mar",
+ '3': "Apr",
+ '4': "May",
+ '5': "Jun",
+ '6': "Jul",
+ '7': "Aug",
+ '8': "Sep",
+ '9': "Oct",
+ '10': "Nov",
+ '11': "Dec"
+ },
+
+ 'days': {
+ '0': "Sunday",
+ '1': "Monday",
+ '2': "Tuesday",
+ '3': "Wednesday",
+ '4': "Thursday",
+ '5': "Friday",
+ '6': "Saturday"
+ },
+
+ 'shortDays': {
+ '0': "Sun",
+ '1': "Mon",
+ '2': "Tue",
+ '3': "Wed",
+ '4': "Thu",
+ '5': "Fri",
+ '6': "Sat"
+ },
+
+ 'veryShortDays': {
+ '0': "Su",
+ '1': "Mo",
+ '2': "Tu",
+ '3': "We",
+ '4': "Th",
+ '5': "Fr",
+ '6': "Sa"
+ },
+
+ 'amDesignation': "am",
+ 'pmDesignation': "pm"
+},
+
+
+// Date format
+'fullDate_format': "l, F d, Y H:i:s",
+
+__syntaxFix__: "syntax fix"
+
+}
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js
new file mode 100644
index 0000000..1541d5f
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_es-ES.js
@@ -0,0 +1,480 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+Clipperz.PM.Strings.Languages['es-ES'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+'clipperzServiceDescription': "<h2>Guárdelo usted mismo!</h2> <ul> <li> <h3>Clipperz es:</h3> <ul> <li> <p>un simple y seguro administrador de contraseñas</p> </li> <li> <p>una efectiva y simple solución de logueo</p> </li> <li> <p>un maletín digital para sus datos confidenciales</p> </li> </ul> </li> <li> <h3>Con Clipperz usted puede:</h3> <ul> <li> <p>administrar y almacenar en línea sus contraseñas y credenciales digitales</p> </li> <li> <p>ingresar en sus servicios web sin ningún nombre de usuario o contraseña</p> </li> <li> <p>protejer todos sus datos sensibles: códigos de alarmas, PINs y números de tarjetas de crédito, &hellip;</p> </li> <li> <p>compartir secretos con sus familiares y socios</p> </li> </ul> </li> <li> <h3>Beneficios de Clipperz:</h3> <ul> <li> <p>es gratis y completamente anónimo</p> </li> <li> <p>con acceso en cualquier momento y desde cualquier ordenador</p> </li> <li> <p>no necesita instalar o descargar ningún programa</p> </li> <li> <p>no necesita guardar secretos en papel o en el ordenador</p> </li> </ul> </li> <li> <h3>Seguridad de Clipperz:</h3> <ul> <li> <p>sus secretos son localmente encriptados por su navegador antes de ser almacenados en Clipperz</p> </li> <li> <p>la llave de encriptación es una frase clave conocida solo por usted</p> </li> <li> <p>Clipperz almacena sus datos de manera encriptada y nunca accede a ellos en forma de texto plano</p> </li> <li> <p>Clipperz esta basado en esquemas estándares de encriptación, no hemos inventado nada</p> </li> <li> <p>usted puede revisar el código todas las veces que lo desee, ¡ pero no necesita conocer algo de encriptación para ser un usuario feliz!</p> </li> </ul> </li> <li> <a href=\"http://www.clipperz.com\" target=\"_blank\">Aprender más</a> </li> </ul> ",
+'loginFormTitle': "ingrese con su usuario Clipperz",
+'loginFormUsernameLabel': "usuario",
+'loginFormPassphraseLabel': "frase clave",
+'loginFormDontHaveAnAccountLabel': "¿no tiene una cuenta?",
+'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>.",
+'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",
+'changePasswordFormProgressDialogConnectedMessageText': "Hecho",
+'changePasswordFormProgressDialogErrorMessageTitle': "Error",
+'changePasswordFormProgressDialogErrorMessageText': "¡Cambio de credenciales fallado!",
+'changeCredentialsPanelEncryptingDataMessageTitle': "Cambiando su frase clave",
+'changeCredentialsPanelEncryptingDataMessageText': "Encriptación local de encabezados de tarjetas",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Cambiando su frase clave",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Actualizando su credenciales",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Cambiando su frase clave",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Subiendo sus credenciales encriptadas a Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "Cambiando su frase clave",
+'changeCredentialsPanelDoneMessageText': "Hecho",
+'manageOTPTabLabel': "Administrar su frases clave desechables",
+'manageOTPTabTitle': "Administrar su frases clave desechables",
+'manageOTPTabDescription': "<p>Una frase clave desechable uso funciona como una frase clave regular, pero puede ser usada solo una vez.</p> <p>Si las misma frase clave es usada nuevamente en un segundo intento de acceso, esta será rechazada y el proceso de acceso fallará.</p> <p>Inmediatamente después de un acceso exitoso, su on-time frase clave será borrada previniendo accesos fraudulentos.</p> <p>Frases claves desechables son una excelente elección para protegerse de keyloggers y spywares, que pueden recolectar datos desde máquinas comprometidas.</p> <p> <b>Le recomendamos muy fuertemente que use frases claves desechables uso cuando acceda a Clipperz desde terminales públicas, como Internet Cafés, Cybercafés y bibliotecas.</b> </p> ",
+'oneTimePasswordReadOnlyMessage': "<h6>¡Disculpe!</h6> <p>Usted no puede usar su frases clave desechables mientras usa la versión fuera de línea de Clipperz.</p> ",
+'oneTimePasswordLoadingMessage': "<h6>Cargando datos</h6> <p>Por favor espere ...</p> ",
+'oneTimePasswordNoPasswordAvailable': "<h6>No hay frase clave desechables disponible</h6> <p>Haga click en el botón “Nueva” para agregar una frase clave desechables a su cuenta.</p> ",
+'createNewOTPButtonLabel': "Nueva",
+'deleteOTPButtonLabel': "Borrar",
+'printOTPButtonLabel': "Imprimir",
+'disabledOneTimePassword_warning': "desabilitado",
+'oneTimePasswordSelectionLink_selectLabel': "Seleccionar:",
+'oneTimePasswordSelectionLink_all': "todo",
+'oneTimePasswordSelectionLink_none': "ninguna",
+'oneTimePasswordSelectionLink_used': "usada",
+'oneTimePasswordSelectionLink_unused': "sin uso",
+'saveOTP_encryptUserDataTitle': "Guardando frase clave desechable",
+'saveOTP_encryptUserDataText': "Procesando nuevas credenciales OTP ...",
+'saveOTP_encryptOTPDataTitle': "Guardando frase clave desechable",
+'saveOTP_encryptOTPDataText': "Encriptación local de datos de autenticación ...",
+'saveOTP_sendingDataTitle': "Guardando frase clave desechable",
+'saveOTP_sendingDataText': "Enviando datos de autenticación al servidor ...",
+'saveOTP_updatingInterfaceTitle': "Guardando frase clave desechable",
+'saveOTP_updatingInterfaceText': "Actualizando interface ...",
+'accountPreferencesLabel': "Preferencias",
+'accountPreferencesTabTitle': "Preferencias",
+'accountPreferencesLanguageTitle': "Seleccione el lenguaje",
+'accountPreferencesLanguageDescription': "<p>Elija su lenguaje preferido de la siguiente lista.<p> ",
+'showDonationReminderPanelTitle': "Recordatorios de donaciones",
+'showDonationReminderPanelDescription': "<p>Mostrar recordatorios de donaciones</p> ",
+'accountPreferencesInterfaceTitle': "Personalización de la interface",
+'accountPreferencesInterfaceDescription': "<p>Ajuste Clipperz a sus necesidades.</p> ",
+'saveUserPreferencesFormSubmitLabel': "Guardar",
+'cancelUserPreferencesFormSubmitLabel': "Cancelar",
+'accountPreferencesSavingPanelTitle_Step1': "Guardando preferencias",
+'accountPreferencesSavingPanelText_Step1': "Encriptación local de sus preferencias",
+'accountPreferencesSavingPanelTitle_Step2': "Guardando preferencias",
+'accountPreferencesSavingPanelText_Step2': "Enviando preferencias encriptadas a Clipperz",
+'accountLoginHistoryLabel': "Historial de accesos",
+'loginHistoryTabTitle': "Historial de accesos",
+'loginHistoryReadOnlyMessage': "<h6>¡Perdón!</h6> <p>El historial de acceso no está disponible mientras usa la versión fuera de línea de Clipperz.</p> ",
+'loginHistoryLoadingMessage': "<h6>Cargando datos</h6> <p>Por favor espere ...</p> ",
+'loginHistoryLoadedMessage': "<h6>Sus últimos 10 accesos</h6> <p> </p> ",
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "fecha",
+'loginHistoryCurrentSessionText': "sesión actual",
+'loginHistoryReloadButtonLabel': "Refrescar historial de acceso",
+'deleteAccountTabLabel': "Borrar su cuenta",
+'deleteAccountTabTitle': "Borrar su cuenta",
+'deleteAccountFormUsernameLabel': "usuario",
+'deleteAccountFormPassphraseLabel': "frase clave",
+'deleteAccountFormSafetyCheckboxLabel': "Yo entiendo que todos mis datos serán borrados y que esta acción es irreversible.",
+'deleteAccountFormSubmitLabel': "Borrar mi cuenta",
+'deleteAccountFormWrongUsernameWarning': "Usuario incorrecto",
+'deleteAccountFormWrongPassphraseWarning': "Frase clave incorrecta",
+'deleteAccountFormSafetyCheckWarning': "Por favor, léa y marque la opción debajo.",
+'accountPanelDeletingAccountPanelConfirmationTitle': "ATENCIÓN",
+'accountPanelDeleteAccountPanelConfirmationText': "¿Esta Ud. seguro que desea borrar esta cuenta?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "Sí",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "No",
+'offlineCopyTabLabel': "Copia fuera de línea",
+'offlineCopyTabTitle': "Copia fuera de línea",
+'offlineCopyTabDescription': "<p>Con solo un clik usted puede descargar todos sus datos encriptados desde los servidores de Clipperz a su disco rígido y crear una versión solo-lectura fuera de línea para ser usada cuando usted no está conectado a Internet.</p> <p>La versión solo-lectura es tan segura como la lectura-escritura y no expondrá sus datos a mayores riegos desde el momento que ambas comparten el mismo código y arquitectura de seguridad.</p> <ol> <li> <p>Haga click en el link debajo para comenzar la descarga.</p> </li> <li> <p>El navegador le preguntará que hacer con el archivo “Clipperz_YYYYMMDD.html”. Guárdelo en su disco rígido.</p> </li> <li> <p>Haga doble click en el archivo descargado para ejecutar la versión fuera de línea en su navegador.</p> </li> <li> <p>Ingrese el usuario y la frase clave habitual.</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "Descargar",
+'offlineCopyDownloadWarning': "<h4> <a href=\"#\" id=\"offlineCopyDownloadWarningLink\">¡Actualize su “copia fuera de línea”!</a> </h4> <p>Usted ha recientemente creado o modificado una o más tarjetas, podría ser necesario que realize una nueva “copia fuera de línea”.</p> ",
+'sharingTabLabel': "Compartir",
+'sharingTabTitle': "Compartir",
+'sharingTabDescription': "<p>Muy frecuentemente una pieza de información confidencial necesita ser compartida con una o más personas.</p> <p>Esto debería ser tan simple como darle a sus colegas el accese al código de su casilla de voz cuando está fuera de la oficina, o tan complicado con habilitarles a sus herederos el derecho de acceder a su caja de seguridad en su banco.</p> <p>Clipperz puede permitirle compartir sus secretos de una forma segura y directa.</p> <p> </p> <p> <b>Proximamente ...</b> </p> ",
+'importTabLabel': "Importar",
+'importTabTitle': "Importar",
+'importTabDescription': "<p> <b>Proximamente ...</b> </p> ",
+'printingTabLabel': "Exportar",
+'printingTabTitle': "Exportar",
+'printingTabDescription': "<p> <b>Imprima sus datos</b> </p> <p>Haciendo click en el enlace que sigue se abrirá una nueva ventana mostrando todas sus tarjetas en un formato imprimible.</p> <p>Si usted está imprimiendo con propósitos de respaldo, por favor considere la opción más segura provista por la creación de una “copia fuera de línea”.</p> ",
+'printingLinkLabel': "Versión imprimible",
+'contactsTabLabel': "Contactos",
+'contactsTabTitle': "Contactos",
+'passwordGeneratorTabLabel': "Generador de contraseñas",
+'passwordGeneratorTabTitle': "Generador de contraseñas",
+'paswordGeneratorTabDescriptionConfig': "<p> </p> ",
+'passwordGeneratorTabButtonLabel': "Generar contraseña",
+'bookmarkletTabLabel': "Bookmarklet",
+'bookmarkletTabTitle': "Bookmarklet",
+'bookmarkletTabDescription': "<p>Un bookmarklet es una simple herramienta de \"un click\" que puede realizar tareas muy útiles. Este puede ser grabado y usado como un marcador normal de una página web.</p> <p>El Clipperz bookmarklet le ayudará a usted a crear rapidamente tarjetas nuevas y accesos directos dentro de las tarjetas existentes.</p> <p> <b>Por favor tenga en cuenta que el bookmarklet no incluye ninguna información relacionadas con su cuenta (ej: su nombre de usuario o clave), el bookmarklet es una herramienta general que contiene el mismo código para todos los usuarios de Clipperz.</b> </p> <h3>How to install the bookmarklet</h3> <h5>Firefox, Camino, Opera, Safari</h5> <ol> <li> <p>Asegúrese que la “Barra de marcadores” está mostrada seleccionando “Ver > Barra de herramientas > Barra de marcadores”, menú similar, desde el menú del navegador.</p> </li> <li> <p>Arrastre el enlace “Agregar a Clipperz” sobre la barra de marcadores.</p> </li> </ol> <h5>Internet Explorer</h5> <ol> <li> <p>Asegúrese que la barra “Vínculos” es mostrada seleccionando “Ver > Barra de Herramientas > Herramientas > Vínculos” desde el menú del navegador.</p> </li> <li> <p>Haga click con el botón derecho del mouse en el link “Agregar a Clipperz”.</p> </li> <li> <p>Seleccione “Agregar a favoritos” desde el menú contextual.</p> </li> <li> <p>Haga click en “Si” o “Acepto” a cualquier advertencia de seguridad que le aparezca.</p> </li> <li> <p>Abra la carpeta “Vínculos” y haga click en “OK”</p> </li> </ol> ",
+'bookmarkletTabBookmarkletTitle': "Agregar a Clipperz",
+'bookmarkletTabInstructions': "<h3>Como crear una nueva tarjeta que incluya un enlace de “acceso directo” a un servicio en línea.</h3> <ol> <li> <p>Abra una página web dónde el formulario de logueo está almacenado (es la página donde usualmente ingresa sus credenciales firmadas)</p> </li> <li> <p>Ejecute el bookmarklet haciendo click en éste: una ventana emergente (pop-up) aparecerá sobre la página web.</p> </li> <li> <p>Copie al portapapeles el contenido de todo el texto dentro de la ventana emergente (pop-up) (Ctrl-C)</p> </li> <li> <p>Ingrese en su cuenta Clipperz y haga click en el botón <b>Agregar nueva tarjeta</b>.</p> </li> <li> <p>Seleccione la plantilla “Acceso directo” y pegue el contenido del portapapeles en el formulario (Ctrl-V)</p> </li> <li> <p>Haga click en el botón <b>Crear</b>, revise los datos y luego haga click en <b>Guardar</b>.</p> </li> </ol> <h3>Cómo agregar un enlace “acceso directo” a una tarjeta existente</h3> <ol> <li> <p>Igual que arriba.</p> </li> <li> <p>Igual que arriba.</p> </li> <li> <p>Igual que arriba.</p> </li> <li> <p>Ingrese en su cuenta Clipperz y seleccione una tarjeta conteniendo las credenciales de un servicio web que usted visitó y haga click en el botón <b>Editar</b>.</p> </li> <li> <p>Pegue el contenido del portapapeles en el área de texto de la sección “Acceso directo” (Ctrl-V)</p> </li> <li> <p>Haga click en el botón <b>Agregar acceso directo</b>, revise los detalles y luego haga click en <b>Guardar</b>.</p> </li> </ol> <p> </p> <p>Más información sobre bookmarklet está <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">disponible aquí</a>.</p> ",
+'mainPanelDirectLoginBlockLabel': "Accesos directos",
+'directLinkReferenceShowButtonLabel': "ver",
+'mainPanelDirectLoginBlockDescription': "<p>¡ Agregar “accesos directos” para ingresar en sus cuentas de la web sin necesidad de escribir nombres de usuarios o claves!</p> <p>“Accesos directos” incrementa notablemente la seguridad de sus claves desde que ud. puede:</p> <ul> <li> <p>usar claves complejas con comodidad;</p> </li> <li> <p>nunca más reusar la misma clave simple.</p> </li> </ul> <p> </p> <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Apreender más sobre “accesos directos”</a> ",
+'mainPanelRecordsBlockLabel': "Tarjetas",
+'mainPanelAddRecordButtonLabel': "Agregar tarjeta nueva",
+'mainPanelRemoveRecordButtonLabel': "Borrar tarjeta",
+'mainPanelRecordFilterBlockAllLabel': "todo",
+'mainPanelRecordFilterBlockTagsLabel': "tags",
+'mainPanelRecordFilterBlockSearchLabel': "buscar",
+'recordDetailNoRecordAtAllTitle': "¡Bienvenido a Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>Comienze agregando tarjetas a su cuenta.</h5> <p>Tarjetas son formularios simples y flexibles donde Usted puede almacenar sus claves y cualquier otro dato confidencial.</p> <p>Tarjetas pueden contener credenciales para acceder a un sitio web, la conbinación del candado de su bicicleta, detalles de su tarjeta de crédito, ....</p> <h5>¡No olvide los bookmarklet!</h5> <p>Antes de comenzar, instale el “Agregar a Clipperz” bookmarklet: esta hará la creación de tarjetas más fácil y más divertida.</p> <p>Vaya al marcador “herramientas” para descubrir como instalar y usarlo.</p> <p> </p> <p>Luego simplemente haga click en el botón “Agregar nueva tarjeta” y disfrute su cuenta Clipperz.</p> <p> </p> <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">Apreender más acerca de la creación y administración de las tarjetas</a> ",
+'newRecordWizardTitleBox': "<h5>Por favor seleccione una plantilla</h5> <p>Tarjetas son formularios simples y flexibles donde usted puede almacenar claves y cualquier otro dato confidencial.</p> <p>Comienze eligiendo una de las plantillas que se encuentran debajo. Usted siempre puede personalizar sus tarjetas más tarde agregando o borrando campos.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "Acceso directo",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>Pegue debajo el código de configuración generado por el bookmarklet Clipperz.</p> <p>Una nueva tarjeta con un acceso directo a su cuenta web será creada.</p> ",
+'newRecordWizardCreateButtonLabel': "Crear",
+'newRecordWizardCancelButtonLabel': "Cancelar",
+'donateSplashPanelTitle': "¡Apoye a Clipperz, haga una donación hoy!",
+'donateSplashPanelDescription': "<p>Una pocas buenas razones para hacer una donación:</p> <ul> <li> <p>apoyar el desarrollo de nuevas utilidades</p> </li> <li> <p>mantener Clipperz gratuito</p> </li> <li> <p>mostrar su aprecio por nuestro duro trabajo</p> </li> </ul> <p>Por cualquier información adicional, por favor visite nuestra <a href=\"http://www.clipperz.com/donations\" target=\"_blank\">página de donaciones</a>.</p> <p> <b>¿Listo para hacer una donación?</b> </p> ",
+'donateCloseButtonLabel': "No todavía",
+'donateDonateButtonLabel': "Si",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "Contraseña web",
+ 'description': "<p>Una simple tarjeta para almacenar sus credenciales de acceso a sus servicios online.</p> ",
+ 'fields': {
+ 'URL': "Dirección web",
+ 'TXT': "Usuario o correo electrónico",
+ 'PWD': "Contraseña"
+ }
+ },
+ 'BankAccount': {
+ 'title': "Cuenta bancaria",
+ 'description': "<p>Almacene en forma segura su número de cuenta bancaria y credenciales de servicios bancarios en línea.</p> ",
+ 'fields': {
+ 'TXT': "Banco",
+ 'TXT': "Número de cuenta",
+ 'URL': "Sitio web del Banco",
+ 'TXT': "ID del servicio bancario en línea",
+ 'PWD': "Contraseña del servicio bancario en línea"
+ }
+ },
+ 'CreditCard': {
+ 'title': "Tarjeta de crédito",
+ 'description': "<p>Número de tarjeta, fecha de vencimiento, CVV2 y PIN siempre a mano con Clipperz.</p> ",
+ 'fields': {
+ 'TXT': "Tipo (Visa, AmEx, ...)",
+ 'TXT': "Número",
+ 'TXT': "Nombre del propietario",
+ 'TXT': "Fecha de vencimiento",
+ 'TXT': "CVV2",
+ 'PWD': "PIN cajero automático",
+ 'URL': "Sitio web tarjeta",
+ 'TXT': "Usuario",
+ 'PWD': "Contraseña"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "Libreta de direcciones",
+ 'description': "<p>Clipperz puede también funcionar como su nueva libreta privada de direcciones. Use esta plantilla para crear fácilmente nuevas entradas.</p> ",
+ 'fields': {
+ 'TXT': "Nombre",
+ 'TXT': "Correo electrónico",
+ 'TXT': "Teléfono",
+ 'TXT': "Móvil",
+ 'ADDR': "Dirección"
+ }
+ },
+ 'Custom': {
+ 'title': " Tarjeta personalizada",
+ 'description': "<p>No importa que tipo de dato confidencial usted necesita proteger, puede crear la tarjeta que necesite.</p> ",
+ 'fields': {
+ 'TXT': "Etiqueta 1",
+ 'TXT': "Etiqueta 2",
+ 'TXT': "Etiqueta 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field",
+ 'shortDescription': "texto"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "contraseña"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "dirección web"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "fecha"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "dirección postal"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "select"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "Error",
+'newRecordPanelGeneralExceptionMessage': "El texto de configuración no es válido. Asegúrese que toma su texto desde la ventana emergente del bookmarklet.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Error",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "El texto de configuración ha sido generado por una versión anterior de bookmarklet. Por favor actualize su bookmarklet y pruebe nuevamente.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Cancelar",
+'mainPanelDeletingRecordPanelConfirmationTitle': "Eliminando tarjeta seleccionada",
+'mainPanelDeleteRecordPanelConfirmationText': "¿Desea realmente eliminar la tarjeta seleccionada?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "Sí",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "No",
+'mainPanelDeletingRecordPanelInitialTitle': "Eliminando tarjeta seleccionada",
+'mainPanelDeletingRecordPanelCompletedText': "Hecho",
+'deleteRecordPanelCollectRecordDataMessageTitle': "Eliminar tarjeta",
+'deleteRecordPanelCollectRecordDataMessageText': "Actualizando lista de tarjetas",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Eliminar tarjeta",
+'deleteRecordPanelEncryptUserDataMessageText': "Encriptación local de encabezamiento de tarjetas",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Eliminar tarjeta",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Subiendo encabezamiento de tarjetas encriptadas a Clipperz",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Eliminar tarjeta",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Actualizando interface",
+'recordDetailNoRecordSelectedTitle': "No hay tarjetas seleccionadas",
+'recordDetailNoRecordSelectedDescription': "<p>Por favor seleccione una tarjeta de la lista de la izquierda.</p> ",
+'recordDetailLoadingRecordMessage': "Descargando tarjetas encriptadas desde Clipperz",
+'recordDetailDecryptingRecordMessage': "Desencriptación local de los datos de las tarjetas",
+'recordDetailLoadingRecordVersionMessage': "Descargando última versión de la tarjeta",
+'recordDetailDecryptingRecordVersionMessage': "Desencriptación local de la última versión",
+'recordDetailLoadingErrorMessageTitle': "Error mientras descargaba la tarjeta",
+'recordDetailNotesLabel': "Notas",
+'recordDetailLabelFieldColumnLabel': "Campo título",
+'recordDetailDataFieldColumnLabel': "Campo de datos",
+'recordDetailTypeFieldColumnLabel': "Tipo",
+'recordDetailSavingChangesMessagePanelInitialTitle': "Guardando tarjeta",
+'recordDetailAddFieldButtonLabel': "Agregar nuevo campo",
+'recordDetailPasswordFieldHelpLabel': "para copiar la contraseña al portapapeles, haga click en la estrella y luego Ctrl-C",
+'recordDetailPasswordFieldScrambleLabel': "ocultar",
+'recordDetailPasswordFieldUnscrambleLabel': "mostrar",
+'recordDetailDirectLoginBlockTitle': "Acceso directos",
+'recordDetailNewDirectLoginDescription': "<p>Configuración de los accesos directos</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>¿Esta tarjeta contiene credenciales para acceder a un servicio en línea?</p> <p>¡Use los bookmarklet para configurar un \"acceso directo\" desde Clpperz con solo un click!</p> ",
+'recordDetailAddNewDirectLoginButtonLabel': "Agregar nuevo acceso directo",
+'recordDetailEditButtonLabel': "Editar",
+'recordDetailSaveButtonLabel': "Guardar",
+'recordDetailCancelButtonLabel': "Cancelar",
+'newRecordTitleLabel': "_nueva tarjeta_",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Guardar tarjeta",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Actualizando encabezamiento de tarjetas",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Guardar tarjeta",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Encriptación local de encabezamiento de tarjetas",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Guardar tarjeta",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Encriptación local de los datos de la tarjeta",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Guardar tarjeta",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Encriptación local de la versión de los datos de la tarjeta",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Guardar tarjeta",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Subiendo encabezamiento de tarjeta encriptada a Clipperz",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Guardar tarjeta",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Actualizando la interface",
+'passwordGeneratorPanelTitle': "Generador de contraseñas",
+'passwordGeneratorPanelOkLabel': "Ok",
+'passwordGeneratorPanelCancelLabel': "Cancelar",
+'passwordGeneratorLengthLabel': "longitud:",
+//'DWRUtilLoadingMessage': "Cargando datos ...",
+'comingSoon': "próximamente ...",
+'panelCollectingEntryopyMessageText': "Recogiendo entropía",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "Sí",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "No",
+'WELCOME_BACK': "¡Bienvenido!",
+'currentConnectionText': "Usted está ahora conectado desde ip&nbsp;__ip__, aparentemente desde __country__, usando __browser__ en __operatingSystem__.",
+'latestConnectionText': "Su última conexión fue __elapsedTimeDescription__ (__time__) desde ip&nbsp;__ip__, aparentemente desde __country__, usando __browser__ en __operatingSystem__.",
+'fullLoginHistoryLinkLabel': "mostrar historial de acceso",
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "más de un mes atrás",
+ 'MORE_THAN_A_WEEK_AGO': "más de una semana atrás",
+ 'MORE_THAN_*_WEEKS_AGO': "más de __elapsed__ semanas atrás",
+ 'YESTERDAY': "ayer",
+ '*_DAYS_AGO': "__elapsed__ días atrás",
+ 'ABOUT_AN_HOUR_AGO': "about an hour ago",
+ '*_HOURS_AGO': "__elapsed__ hours ago",
+ 'JUST_A_FEW_MINUTES_AGO': "hace unos minutos",
+ 'ABOUT_*_MINUTES_AGO': "hace __elapsed__ minutos atrás"
+},
+'unknown_ip': "desconocida",
+'calendarStrings': {
+ 'months': {
+ '0': "Enero",
+ '1': "Febrero",
+ '2': "Marzo",
+ '3': "Abril",
+ '4': "Mayo",
+ '5': "Junio",
+ '6': "Julio",
+ '7': "Agosto",
+ '8': "Setiembre",
+ '9': "Octubre",
+ '10': "Noviembre",
+ '11': "Diciembre"
+ },
+ 'shortMonths': {
+ '0': "Ene",
+ '1': "Feb",
+ '2': "Mar",
+ '3': "Abr",
+ '4': "May",
+ '5': "Jun",
+ '6': "Jul",
+ '7': "Ago",
+ '8': "Set",
+ '9': "Oct",
+ '10': "Nov",
+ '11': "Dic"
+ },
+ 'days': {
+ '0': "Domingo",
+ '1': "Lunes",
+ '2': "Martes",
+ '3': "Miércoles",
+ '4': "Jueves",
+ '5': "Viernes",
+ '6': "Sábado"
+ },
+ 'shortDays': {
+ '0': "Dom",
+ '1': "Lun",
+ '2': "Mar",
+ '3': "Mie",
+ '4': "Jue",
+ '5': "Vie",
+ '6': "Sab"
+ },
+ 'veryShortDays': {
+ '0': "Do",
+ '1': "Lu",
+ '2': "Ma",
+ '3': "Mi",
+ '4': "Ju",
+ '5': "Vi",
+ '6': "Sa"
+ },
+ 'amDesignation': "am",
+ 'pmDesignation': "pm"
+},
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js
new file mode 100644
index 0000000..c137fb8
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_fr-FR.js
@@ -0,0 +1,362 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+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>.",
+'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é",
+'changePasswordFormProgressDialogConnectedMessageText': "Terminé",
+'changePasswordFormProgressDialogErrorMessageTitle': "Erreur",
+'changePasswordFormProgressDialogErrorMessageText': "Changement de identifiants échoué!",
+'changeCredentialsPanelEncryptingDataMessageTitle': "Changement de votre phrase secrète",
+'changeCredentialsPanelEncryptingDataMessageText': "Cryptage local des identifiants",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Modifier votre phrase secrète",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Mettre à jour vos identifiants",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Modifier votre phrase secrète",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Téléchargement de vos identifiants sur Clipperz.com",
+'changeCredentialsPanelDoneMessageTitle': "Modifier votre phrase secrète",
+'changeCredentialsPanelDoneMessageText': "Terminé",
+'manageOTPTabLabel': "Mettre à jour votre phrase secrète à usage unique",
+'manageOTPTabTitle': "Mettre à jour votre phrase secrète à usage unique",
+'manageOTPTabDescription': "<p>Une phrase secrète à usage unique fonctionne comme votre phrase secrète habituelle, mais elle ne peut être utilisé qu'une seule fois.</p> <p>Si la phrase secrète est utilisé de nouveau et que vous tenté de vous identifier à nouveau, vous serez rejeté et le processus d'identification échouera.</p> <p>Juste après une identification correcte, votre phrase secrète à usage unique sera effacée pour interdire tout accès frauduleux.</p> <p>Les phrases secrètes à usage unique sont un excellent choix si vous craignez qu'un logiciel espion ne vole vos données après avoir infecté votre machine.</p> <p> <b>Il est fortement recommandé d'utiliser des phrases secrètes à usage unique lorsque vous accédez à Clipperz depuis un terminal public, comme un cybercafé ou une borne Internet.</b> </p> ",
+'accountPreferencesLabel': "Préférences",
+'accountPreferencesTabTitle': "Préférences",
+'accountPreferencesLanguageTitle': "Choix de la langue",
+'accountPreferencesLanguageDescription': "<p>Choisissez la langue d'affichage de Clipperz dans la liste suivante.</p> ",
+'accountPreferencesInterfaceTitle': "Personnalisation de l'interface",
+'accountPreferencesInterfaceDescription': "<p>Ajustez l'interface de Clipperz à vos besoins.</p> ",
+'saveUserPreferencesFormSubmitLabel': "Enregistrer",
+'cancelUserPreferencesFormSubmitLabel': "Annuler",
+'accountPreferencesSavingPanelTitle_Step1': "Enregistrement des préférences",
+'accountPreferencesSavingPanelText_Step1': "Chiffrement local de vos préférences",
+'accountPreferencesSavingPanelTitle_Step2': "Enregistrement des préférences",
+'accountPreferencesSavingPanelText_Step2': "Transmission des préférences chiffrées au serveur",
+'deleteAccountTabLabel': "Supprimer votre compte",
+'deleteAccountTabTitle': "Supprimer votre compte",
+'deleteAccountFormUsernameLabel': "nom d’utilisateur",
+'deleteAccountFormPassphraseLabel': "phrase secrète",
+'deleteAccountFormSafetyCheckboxLabel': "Je sais que toute mes données seront supprimés et que cette action sera irréversible.",
+'deleteAccountFormSubmitLabel': "Supprimer mon compte",
+'deleteAccountFormWrongUsernameWarning': "Nom d’utilisateur incorrect",
+'deleteAccountFormWrongPassphraseWarning': "Phrase secrète incorrect",
+'deleteAccountFormSafetyCheckWarning': "Veuillez lire et cocher la case-à-cocher ci-dessous.",
+'accountPanelDeletingAccountPanelConfirmationTitle': "ATTENTION",
+'accountPanelDeleteAccountPanelConfirmationText': "Êtes-vous sûr de vouloir supprimer ce compte?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "Oui",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "Non",
+'offlineCopyTabLabel': "Copie locale",
+'offlineCopyTabTitle': "Copie locale",
+'offlineCopyTabDescription': "<p>D'un seul click, vous pouvez télécharger toutes vos données chiffrées des serveurs Clipperz sur votre disque dur, créant ainsi une version déconnecté de Clipperz utilisable lorsque vous n'êtes pas connectés à Internet.</p> <p>Cette version en lecture seule est aussi sécurisée que la version en lecture-écriture, et n'expose pas vos données à un risque plus élevé. Elles partagent en effet le même code et la même architecture de sécurité.</p> <ol> <li> <p>Cliquez sur le liens ci-dessous pour lancer le téléchargement.</p> </li> <li> <p>Votre navigateur vous demandera que faire du fichier “Clipperz_YYYYMMDD.html”. Sauvez le sur votre disque dur.</p> </li> <li> <p>Puis double-cliquez sur le fichier téléchargé pour lancer la version déconnectée dans votre navigateur.</p> </li> <li> <p>Utilisez vos nom d’utilisateur et phrase secrète habituels.</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "Télécharger",
+'sharingTabLabel': "Partager",
+'sharingTabTitle': "Partager",
+'sharingTabDescription': "<p>De temps en temps il est nécessaire de partager des parties de vos informations confidentiels avec une ou plusieurs personnes.</p> <p>Cela pourrait être aussi simple que l’octroi à un collègue de votre code d’accès à votre messagerie vocale quand vous êtes hors du bureau, ou aussi compliqués que la permission d’ayant droit aux héritiers pour avoir accès à votre boîte de coffre-fort à la banque locale.</p> <p>Clipperz vous permez donc de partager vos mots de passe grâce à un processe sûr et direct.</p> <p> </p> <p> <b>Prochainement disponible ...</b> </p> ",
+'importTabLabel': "Importer",
+'importTabTitle': "Importer",
+'importTabDescription': "<p> <b>Prochainement disponible ...</b> </p> ",
+'printingTabLabel': "Exporter",
+'printingTabTitle': "Exporter",
+'printingTabDescription': "<p> <b>Version d’impression</b> </p> <p>En cliquant sur ce bouton vous ouvrirez une fenêtre contenant vos en-têtes cryptés dans un format d’impression.</p> <p>Si vous imprimez pour des raisons de sauvegarde personnel, veuillez vous tourner vers une solution plus sécurisé comme la version “Copie locale”.</p> ",
+'printingLinkLabel': "Version imprimable",
+'contactsTabLabel': "Contacts",
+'contactsTabTitle': "Contacts",
+'passwordGeneratorTabLabel': "Générateur de mot de passe",
+'bookmarkletTabLabel': "Bookmarklet",
+'passwordGeneratorTabTitle': "Générateur de mot de passe",
+'bookmarkletTabTitle': "Bookmarklet",
+'paswordGeneratorTabDescription': "<p> </p> ",
+'passwordGeneratorTabButtonLabel': " Générer un mot de passe",
+'bookmarkletTabDescription': "<p>Un bookmarklet est un outil “clique unique” simple qui peut exécuter des tâches très utiles. Il peut être sauvegardé et utilisé comme un signet de page Web normal.</p> <p>Le bookmarklet Clipperz vous aidera à rapidement créer de nouvelles cartes et des nouveaux “accès directs” avec vos cartes existantes.</p> <p> <b>Notez s’il vous plaît que le bookmarklet n’inclut pas d’informations liées à votre compte (par exemple votre nom d’utilisateur ou votre phrase secrète), le bookmarklet est un outil général contenant le même code pour chaque utilisateur Clipperz.</b> </p> <div> <p>Pour installer le bookmarklet <b>glissez & déposez</b> le lien ci-dessous dans votre bar de navigation.</p> </div> ",
+'bookmarkletTabBookmarkletTitle': "Ajouter à Clipperz",
+'bookmarkletTabInstructions': "<h3>Comment créer une carte comprenant un lien de “accès direct” à un service en ligne</h3> <ol> <li> <p>Ouvrir la page Web où le site affiche un formulaire d’identification. (C’est la page où vous entrez d’habitude vos informations d'identification)</p> </li> <li> <p>Lancer le bookmarklet en cliquant dessus : une fenêtre contextuelle apparait alors sur la page Web.</p> </li> <li> <p>Copier dans le presse-papiers le contenu du grand secteur de texte dans le menu contextuel. (Ctrl-C)</p> </li> <li> <p>Entrer dans votre compte Clipperz et cliquer sur <b>“Ajouter une nouvelle carte”</b>.</p> </li> <li> <p>Coller le presse-papiers dans la zone de texte et rajouter un titre (facultatif). (Ctrl-V)</p> </li> <li> <p>Cliquer sur le bouton <b>“Créer”</b>, repassez en revu les détails et cliquer <b>“Sauver”</b>. De plus amples informations sont disponibles <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">ici</a>.</p> </li> </ol> <h3>Comment ajouter un lien de “accès direct” à une carte existante</h3> <ol> <li> <p>Idem que précédemment.</p> </li> <li> <p>Idem que précédemment..</p> </li> <li> <p>Idem que précédemment.</p> </li> <li> <p>Entrer dans votre compte Clipperz et sélectionner la carte crypté qui contient les identifiants pour le service web que vous venez tout juste de visiter et cliquer sur <b>“Modifier”</b>.</p> </li> <li> <p>Coller le presse-papier dans la zone de texte <b>“Accès directs”</b>. (ctrl-V)</p> </li> <li> <p>Cliquer sur <b>“Ajouter un accès direct”</b>, repassez en revu les détails et cliquer <b>“Sauver”</b>.</p> </li> </ol> ",
+'mainPanelDirectLoginBlockLabel': "Accès directs",
+'directLinkReferenceShowButtonLabel': "voir",
+'mainPanelDirectLoginBlockDescription': "<p>Ajouter une “accès direct” pour vous identifier sans avoir besoin de taper vos identifiants de connexions!</p> <p>Les “accès directs” augmente considérablement la sécurité de vos mots passes dans la mesure où vous pouvez:</p> <ul> <li> <p>adopter et saisir des mots de passe complexes;</p> </li> <li> <p>ne réutilisez le même mot de passe et ne mettez plus de mots de passe facile à deviner.</p> </li> </ul> <p>Simple et rapide à configurer avec le Clipperz <b>bookmarklet</b>.</p> <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Pour en savoir plus sur les “accès directs”</a> ",
+'mainPanelRecordsBlockLabel': "Cartes",
+'mainPanelAddRecordButtonLabel': "Ajouter une nouvelle carte",
+'mainPanelRemoveRecordButtonLabel': "Supprimer une carte",
+'mainPanelRecordFilterBlockAllLabel': "tous",
+'mainPanelRecordFilterBlockTagsLabel': "tags",
+'mainPanelRecordFilterBlockSearchLabel': "chercher",
+'recordDetailNoRecordAtAllTitle': "Bienvenue sur Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>Commencez par ajouter des cartes à votre compte.</h5> <p>Les cartes sont des formulaires flexibles ou vous pouvez enregistrer vos mots de passe et autres informations confidentielles.</p> <p>Par exemple, une carte peut contenir les informations d\"identification pour un site web, la combinaison de votre antivol de bicyclette, les détails de votre carte bancaire, ...</p> <h5>N'oubliez pas le bookmarklet!</h5> <p>Avant de commencer, installez le bookmarklet “Ajouter à Clipperz”: il rends la création de carte plus facile et amusante.</p> <p>Allez à l'onglet “outils” pour découvrir comment l'installer et l'utiliser.</p> <p> </p> <p>Ensuite, cliquez tout simplement sur le bouton “Ajouter une nouvelle carte” et profitez de votre compte Clipperz.</p> <p> </p> <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">En savoir plus sur la création et la gestion des cartes.</a> ",
+'newRecordWizardTitleBox': "<h5>Choisissez un modèle</h5> <p>Les cartes sont des formulaires flexibles ou vous pouvez enregistrer vos mots de passe et autres informations confidentielles.</p> <p>Commencez par choisir un des modèles ci-dessous. Vous pourrez toujours adapter vos cartes plus tard en ajoutant ou supprimant des champs.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "Accès directs",
+'newRecordWizardBookmarkletConfigurationDescriptionConfig': "<p>Collez ici le code de configuration généré par le bookmarlet Clipperz.</p> <p>Cela créera une nouvelle carte avec un accès direct à votre site web.</p> ",
+'newRecordWizardCreateButtonLabel': "Créer",
+'newRecordWizardCancelButtonLabel': "Annuler",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "Mot de passe web",
+ 'description': "<p>Une carte toute simple pour enregistrer les informations d'identification de vos services en ligne.</p> ",
+ 'fields': {
+ 'URL': "Adresse web",
+ 'TXT': "Nom d'utilisateur ou email",
+ 'PWD': "Mot de passe"
+ }
+ },
+ 'BankAccount': {
+ 'title': "Compte bancaire",
+ 'description': "<p>Enregistrer de façon sécurisée vos numéros de compte bancaire et vos identifiants de service bancaire en ligne.</p> ",
+ 'fields': {
+ 'TXT': "Banque",
+ 'TXT': "N° de compte",
+ 'URL': "Adresse web du site",
+ 'TXT': "Identifiant",
+ 'PWD': "Mot de passe"
+ }
+ },
+ 'CreditCard': {
+ 'title': "Carte bancaire",
+ 'description': "<p>Ayez toujours sous la main votre numéro de carte, la date d'expiration, le code de contrôle et le code secret avec Clipperz</p> ",
+ 'fields': {
+ 'TXT': "Type (Visa, AmEx, ...)",
+ 'TXT': "Numéro",
+ 'TXT': "Nom du porteur",
+ 'TXT': "Date de validité",
+ 'TXT': "Code de contrôle",
+ 'PWD': "Code secret",
+ 'URL': "Site web",
+ 'TXT': "Identifiant",
+ 'PWD': "Mot de passe"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "Carnet d'adresse",
+ 'description': "<p>Clipperz peux aussi être utilisé comme un nouveau carnet d'adresse privé. Utilisez ce modèle pour ajouter des contacts facilement.</p> ",
+ 'fields': {
+ 'TXT': "Nom",
+ 'TXT': "Adresse eMail",
+ 'TXT': "Téléphone",
+ 'TXT': "Mobile",
+ 'ADDR': "Adresse"
+ }
+ },
+ 'Custom': {
+ 'title': "Carte personnalisée",
+ 'description': "<p>Quelles que soient les données confidentielles que vous souhaitez protéger, créez une carte personnalisée adaptée à vos besoins.</p> ",
+ 'fields': {
+ 'TXT': "Titre du champ 1",
+ 'TXT': "Titre du champ 2",
+ 'TXT': "Titre du champ 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field",
+ 'shortDescription': "texte"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "mot de passe"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "adresse de site web"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "date"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "adresse"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "select"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "Erreur",
+'newRecordPanelGeneralExceptionMessage': "Le code de configuration n'est pas valide. Copiez le depuis la fenêtre du bookmarklet, et essayez à nouveau.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Erreur",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "Ce code de configuration provient d'un ancien bookmarklet. Mettez votre bookmarklet à jour, puis essayez de nouveau.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Annuler",
+'mainPanelDeletingRecordPanelConfirmationTitle': "Suppression de la carte sélectionnée",
+'mainPanelDeleteRecordPanelConfirmationText': "Voulez vous vraiment supprimer la carte sélectionnée?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "Oui",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "Non",
+'mainPanelDeletingRecordPanelInitialTitle': "Suppression de la carte",
+'mainPanelDeletingRecordPanelCompletedText': "Terminé",
+'deleteRecordPanelCollectRecordDataMessageTitle': "Supprimer la carte",
+'deleteRecordPanelCollectRecordDataMessageText': "Mise à jour de la liste des cartes",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Supprimer la carte",
+'deleteRecordPanelEncryptUserDataMessageText': "Chiffrement local des en-têtes de carte",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Supprimer la carteDelete card",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Transmission des en-têtes chiffrées à Clipperz",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Supprimer la carte",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Mise à jour de l'interface",
+'recordDetailNoRecordSelectedTitle': "Aucune carte sélectionnée",
+'recordDetailNoRecordSelectedDescription': "<p>Veuillez selectionner une carte dans la liste de gauche.</p> ",
+'recordDetailLoadingRecordMessage': "Téléchargement de la carte chiffrée depuis Clipperz",
+'recordDetailDecryptingRecordMessage': "Déchiffrement local des informations de la carte",
+'recordDetailLoadingRecordVersionMessage': "Téléchargement de la dernière version de la carte",
+'recordDetailDecryptingRecordVersionMessage': "Déchiffrement local de la dernière version",
+'recordDetailLoadingErrorMessageTitle': "Erreur lors du téléchargement de la carte",
+'recordDetailNotesLabel': "Notes",
+'recordDetailLabelFieldColumnLabel': "Titre du champ",
+'recordDetailDataFieldColumnLabel': "Données du champ",
+'recordDetailTypeFieldColumnLabel': "Type",
+'recordDetailSavingChangesMessagePanelInitialTitle': "Enregistrement de la carte",
+'recordDetailAddFieldButtonLabel': "Ajouter un champ",
+'recordDetailPasswordFieldHelpLabel': "pour copier le mot de passe, cliquez sur les étoiles, puis Ctrl-C",
+'recordDetailPasswordFieldScrambleLabel': "dissimuler",
+'recordDetailPasswordFieldUnscrambleLabel': "en clair",
+'recordDetailDirectLoginBlockTitle': "Accès directs",
+'recordDetailNewDirectLoginDescription': "<p>Configuration de l'accès direct</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>Cette carte contient-elle des informations d'identification pour un service en ligne?</p> <p>Utilisez le bookmarklet pour configurer un “accès direct” depuis Clipperz en un seul click!</p> ",
+'recordDetailAddNewDirectLoginButtonLabel': "Ajouter un accès direct",
+'recordDetailEditButtonLabel': "Modifier",
+'recordDetailSaveButtonLabel': "Sauver",
+'recordDetailCancelButtonLabel': "Annuler",
+'newRecordTitleLabel': "_nouvelle carte_",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Enregistrement de la carte",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Updating card headers",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Sauvegarde de la carte",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Cryptage local des en-têtes chiffrés",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Sauvegarde de la carte",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Cryptage local des en-têtes chiffrés",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Sauvegarde de la carte",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Cryptage local des données de version de la carte",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Sauvegarde de la carte",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Téléchargement des cartes d’en-têtes chiffrés depuis Clipperz",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Sauvegarde de la carte",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Mise à jour de l'interface",
+'passwordGeneratorPanelTitle': "Générateur de mot de passe",
+'passwordGeneratorPanelOkLabel': "Ok",
+'passwordGeneratorPanelCancelLabel': "Annuler",
+'passwordGeneratorLengthLabel': "longueur:",
+//'DWRUtilLoadingMessage': "Chargement des données ...",
+'comingSoon': "Bientôt en ligne ...",
+'panelCollectingEntryopyMessageText': "Rassemblement d'entropie",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "Oui",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "Non",
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_he-IL.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_he-IL.js
new file mode 100644
index 0000000..3bdfe19
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_he-IL.js
@@ -0,0 +1,40 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+//=============================================================================
+//
+// H E B R E W (he_IL)
+//
+//=============================================================================
+
+Clipperz.PM.Strings.Languages['he-il'] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+
+ //-------------------------------------------------------------------------
+ __syntaxFix__: "syntax fix"
+});
+
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js
new file mode 100644
index 0000000..51c0d03
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_it-IT.js
@@ -0,0 +1,694 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+Clipperz.PM.Strings.Languages['it-IT'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+'clipperzServiceDescription': "<h2>Tienilo per te!</h2> <ul> <li> <h3>Clipperz è:</h3> <ul> <li> <p>un archivio semplice e sicuro per le tue password</p> </li> <li> <p>un canale di accesso unificato a tutti i tuoi servizi online</p> </li> <li> <p>una cassaforte digitale per tutti i tuoi dati riservati</p> </li> </ul> </li> <li> <h3>Con Clipperz puoi:</h3> <ul> <li> <p>memorizzare e gestire le password e le credenziali di accesso dei tuoi servizi online</p> </li> <li> <p>accedere ai tuoi servizi online con un solo click senza bisogno di inserire username o password</p> </li> <li> <p>proteggere tutte le tue informazioni confidenziali: codice dell&#x27;allarme di casa, dati delle carte di credito, …</p> </li> <li> <p>condividere dati riservati con i tuoi familiari o colleghi (disponibile a breve)</p> </li> </ul> </li> <li> <h3>I vantaggi di Clipperz:</h3> <ul> <li> <p>gratuito e completamente anonimo</p> </li> <li> <p>accessibile da qualsiasi computer</p> </li> <li> <p>nessun software da scaricare e niente da installare</p> </li> <li> <p>mai più informazioni riservate sul tuo PC o sulla carta!</p> </li> </ul> </li> <li> <h3>La sicurezza di Clipperz:</h3> <ul> <li> <p>i dati sono criptati dal tuo browser prima di essere inviati a Clipperz</p> </li> <li> <p>la chiave per decriptare i dati è conosciuta soltanto da te</p> </li> <li> <p>Clipperz riceve e memorizza solo i tuoi dati criptati e non ha nessuna possibilità di accedere alla versione in chiaro</p> </li> <li> <p>Clipperz utilizza solo sistemi crittografici standard, senza nessuna velleità di inventare e proporre nuovi algoritmi non validati dalla comunità scientifica</p> </li> <li> <p>tutto il codice di Clipperz è disponibile e può essere analizzato in qualsiasi momento, ma non serve essere un esperto di crittografia per apprezzare la sicurezza e la comodità di Clipperz!</p> </li> </ul> </li> <li><a href=\"http://www.clipperz.com\" target=\"_blank\">Maggiori informazioni su Clipperz (in inglese)</a> </li> </ul> ",
+'loginFormTitle': "accedi a Clipperz",
+'loginFormUsernameLabel': "Utente",
+'loginFormPassphraseLabel': "frase segreta",
+'loginFormDontHaveAnAccountLabel': "non ti sei ancora registrato?",
+'loginFormCreateOneLabel': "registrati adesso",
+'loginFormForgotYourCredentialsLabel': "hai perso i dati di accesso?",
+'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> .",
+'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",
+'changePasswordFormProgressDialogEmptyText': "---",
+'changePasswordFormProgressDialogConnectedMessageTitle': "Connesso",
+'changePasswordFormProgressDialogConnectedMessageText': "Fatto",
+'changePasswordFormProgressDialogErrorMessageTitle': "Errore",
+'changePasswordFormProgressDialogErrorMessageText': "Aggiornamento credenziali fallito!",
+'changeCredentialsPanelEncryptingDataMessageTitle': "Cambio della frase segreta",
+'changeCredentialsPanelEncryptingDataMessageText': "Cripta localmente l&#x27;intestazione delle schede",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Cambio della frase segreta",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Aggiornamento delle credenziali",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Cambio della frase segreta",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Carica le intestazioni criptate delle schede su Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "Cambio della frase segreta",
+'changeCredentialsPanelDoneMessageText': "Fatto",
+'manageOTPTabLabel': "Codici di accesso “usa e getta”",
+'manageOTPTabTitle': "Codici di accesso “usa e getta”",
+'manageOTPTabDescription': "<p>I codici di accesso e “usa e getta” funzionano come la tua normale frase segreta, ma possono essere utilizzate una sola volta.</p> <p>Se lo stesso codice “usa e getta” viene utilizzato per tentare ulteriori accessi il processo di autenticazione fallirà.</p> <p>Infatti, dopo il primo utilizzo, il codice “usa e getta” verrà immediatamente disattivato e cancellato prevenendo così eventuali accessi non autorizzati.</p> <p>L&#x27;utilizzo di codici “usa e getta” è una scelta consigliata per chi teme che il computer dal quale sta accedendo a Clipperz non sia sicuro a causa di software quali keyloggers e spyware che potrebbero registrare le proprie credenziali di accesso.</p> <p><b>E&#x27; caldamente consigliato l&#x27;utilizzo di codici “usa e getta” quando ci si collega a Clipperz da terminali pubblici quali Internet Cafe e biblioteche.</b> </p> ",
+'oneTimePasswordReadOnlyMessage': "<h6>Attenzione!</h6> <p>Non è possibilie accedere ai propri codici “usa e getta” quando si utilizza la versione offline di Clipperz.</p> ",
+'oneTimePasswordLoadingMessage': "<h6>Caricamento dati</h6> <p>Si prega di attendere ...</p> ",
+'oneTimePasswordNoPasswordAvailable': "<h6>Nessun codice “usa e getta” disponibile</h6> <p>Per creare codici “usa e getta” clicca sul pulsante “Nuovo” che trovi qui sopra.</p> ",
+'deleteOTPButtonLabel': "Elimina",
+'printOTPButtonLabel': "Stampa",
+'disabledOneTimePassword_warning': "disabilitato",
+'oneTimePasswordSelectionLink_selectLabel': "Seleziona:",
+'oneTimePasswordSelectionLink_none': "nessuno",
+'oneTimePasswordSelectionLink_used': "utilizzati",
+'oneTimePasswordSelectionLink_unused': "disponibili",
+'saveOTP_encryptUserDataTitle': "Registrazione del nuovo codice “usa e getta”",
+'saveOTP_encryptUserDataText': "Elaborazione delle credenziali OTP ...",
+'saveOTP_encryptOTPDataTitle': "Registrazione del nuovo codice “usa e getta”",
+'saveOTP_encryptOTPDataText': "Codifica locale dei dati di autenticazione ...",
+'saveOTP_sendingDataTitle': "Registrazione del nuovo codice “usa e getta”",
+'saveOTP_sendingDataText': "Invio dei dati di autenticazione criptati ...",
+'saveOTP_updatingInterfaceTitle': "Registrazione del nuovo codice “usa e getta”",
+'saveOTP_updatingInterfaceText': "Aggiornamento dell&#x27;interfaccia",
+'accountPreferencesLabel': "Preferenze",
+'accountPreferencesTabTitle': "Preferenze",
+'accountPreferencesLanguageTitle': "Selezione della lingua",
+'accountPreferencesLanguageDescription': "<p>Scegli la lingua preferita dall&#x27;elenco sottostante.</p> ",
+'showDonationReminderPanelTitle': "Promemoria donazioni",
+'showDonationReminderPanelDescription': "<p>Mostra i promemopria per le donazioni</p> ",
+'saveUserPreferencesFormSubmitLabel': "Salva",
+'cancelUserPreferencesFormSubmitLabel': "Annulla",
+'accountPreferencesSavingPanelTitle_Step1': "Salvataggio preferenze",
+'accountPreferencesSavingPanelText_Step1': "Cripta localmente le preferenze",
+'accountPreferencesSavingPanelTitle_Step2': "Salvataggio preferenze",
+'accountPreferencesSavingPanelText_Step2': "Carica preferenze criptate su Clipperz",
+'accountLoginHistoryLabel': "Registro degli accessi",
+'loginHistoryTabTitle': "Registro degli accessi",
+'loginHistoryReadOnlyMessage': "<h6>Attenzione!</h6> <p>Il registro degli accessi non è disponibile quando si utilizza la versione offline di Clipperz</p> ",
+'loginHistoryLoadingMessage': "<h6>Caricamento dati</h6> <p>Si prega di attendere ...</p> ",
+'loginHistoryLoadedMessage': "<h6>I tuoi ultimi 10 accessi</h6> <p> </p> ",
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "data",
+'loginHistoryCurrentSessionText': "sessione corrente",
+'loginHistoryReloadButtonLabel': "Aggiorna il registro degli accessi",
+'deleteAccountTabLabel': "Cancella il tuo utente",
+'deleteAccountTabTitle': "Cancella il tuo utente",
+'deleteAccountFormUsernameLabel': "Utente",
+'deleteAccountFormPassphraseLabel': "frase segreta",
+'deleteAccountFormSafetyCheckboxLabel': "Sono consapevole che tutti miei dati verranno cancellati e che questa azione è irreversibile.",
+'deleteAccountFormSubmitLabel': "Cancella il mio utente",
+'deleteAccountFormWrongUsernameWarning': "Utente errato",
+'deleteAccountFormWrongPassphraseWarning': "Frase segreta errata",
+'deleteAccountFormSafetyCheckWarning': "Leggi e spunta le condizioni sotto riportate.",
+'accountPanelDeletingAccountPanelConfirmationTitle': "ATTENZIONE",
+'accountPanelDeleteAccountPanelConfirmationText': "Sei sicuro di voler cancellare il tuo utente?",
+'offlineCopyTabLabel': "Copia offline",
+'offlineCopyTabTitle': "Copia offline",
+'offlineCopyTabDescription': "<p>Con un solo clic puoi trasferire tutti i tuoi dati dai server di Clipperz al tuo PC, creando una versione offline di Clipperz a cui potrai accedere quando non è disponibile un collegamento ad Internet.</p> <p>La versione offline in sola lettura è sicura quanto quella online e non espone i tuoi dati a livelli di rischio superiore in quanto entrambe condividono la medesima architettura di sicurezza.</p> <ol> <li> <p>Clicca sul link sottostante per scaricare la copia offline dei tuoi dati.</p> </li> <li> <p>Il browser ti chiederà cosa fare del file “Clipperz_YYYYMMDD.html”. Scegli di salvarlo su un disco locale.</p> </li> <li> <p>Basta un doppio click sul file appena scaricato per lanciare la versione offline di Clipperz.</p> </li> <li> <p>Accedi utilizzando le normali credenziali di accesso.</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "Scarica copia offline",
+'offlineCopyDownloadWarning': "<h4><a href=\"#\" id=\"offlineCopyDownloadWarningLink\">Aggiorna la tua “copia offline”!</a> </h4> <p>Una o più schede sono state recentemente create o modificate, ti consigliamo di scaricare nuovamente la tua “copia offline”.</p> ",
+'offlineCopyDownloadOk': "",
+'sharingTabLabel': "Condividi",
+'sharingTabTitle': "Condividi",
+'sharingTabDescription': "<p>Spesso è necessario condividere alcune delle proprie informazioni riservate con una o più persone.</p> <p>Può trattarsi di situazioni semplici come dare ad un collega il codice di accesso alla propria segreteria telefonica quando si va in vacanza, oppure complesse come regolare l&#x27;accesso dei legittimi eredi ai servizi di online banking utilizzati dal defunto.</p> <p>Con Clipperz la condivisione di segreti diviene un processo semplice e sicuro.</p> <p> </p> <p><b>Presto disponibile ...</b> </p> ",
+'importTabLabel': "Importa",
+'importTabTitle': "Importa",
+'importTabDescription': "<p>Presto disponibile ...</p> ",
+'printingTabLabel': "Esporta",
+'printingTabTitle': "Esporta",
+'printingTabDescription': "<h5>Stampa i tuoi dati</h5> <p>Cliccando sul link sottostante si aprirà una nuova finestra in cui verranno visualizzate tutte le tue schede in un formato idoneo alla stampa.</p> <p>Se intendi utilizzare la stampa per creare una copia di sicurezza dei tuoi dati, ti suggeriamo di considerare l&#x27;opzione più sicura fornita della “copia offline”.</p> ",
+'printingLinkLabel': "Versione stampabile",
+'contactsTabLabel': "Contatti",
+'contactsTabTitle': "Contatti",
+'passwordGeneratorTabLabel': "Generatore di password",
+'bookmarkletTabLabel': "Bookmarklet",
+'passwordGeneratorTabTitle': "Generatore di password",
+'bookmarkletTabTitle': "Bookmarklet",
+'paswordGeneratorTabDescription': "<p> </p> ",
+'passwordGeneratorTabButtonLabel': "Genera password",
+'bookmarkletTabLabel': "Bookmarklet",
+'bookmarkletTabTitle': "Bookmarklet",
+'bookmarkletTabBookmarkletTitle': "Aggiungi a Clipperz",
+'bookmarkletTabInstructions': "<h3>Come creare una scheda con “login diretto” ad un servizio online</h3> <ol> <li> <p>Aprire la pagina web che contiene la maschera di login. (ovvero la pagina dove usualmente si inseriscono nome utente e password)</p> </li> <li> <p>Cliccare sulla bookmarklet: una nuova finestrella si visualizzerà sopra la pagina.</p> </li> <li> <p>Copiare il testo di configurazione del “login diretto” contenuto nella finestrella. (ctrl-C)</p> </li> <li> <p>Accedere a Clipperz e cliccare sul pulsante <b>Aggiungi nuova scheda</b> .</p> </li> <li> <p>Selezionare il modello “Login diretto” ed incollare il testo precedentemente copiato. (ctrl-V)</p> </li> <li> <p>Cliccare sul pulsante <b>Crea</b> , completare e verificare i dettagli della scheda, quindi cliccare su <b>Salva</b> .</p> </li> </ol> <h3>Come aggiungere un “login diretto” ad una scheda esistente</h3> <ol> <li> <p>Come sopra.</p> </li> <li> <p>Come sopra.</p> </li> <li> <p>Come sopra.</p> </li> <li> <p>Accedere a Clipperz e selezionare la scheda contenente le credenziali del servizio a cui si vuole accedere con il “login diretto” e cliccare su <b>Modifica</b> .</p> </li> <li> <p>Incollare il testo precedentemente copiato nell&#x27;apposito campo presente nella sezione “Login diretti”. (ctrl-V)</p> </li> <li> <p>Cliccare il pulsante <b>Aggiungi nuovo login diretto</b> , completare e verificare i dettagli della scheda, quindi cliccare su <b>Salva</b> .</p> </li> </ol> <p> </p> <p>Ulteriori informazioni sull&#x27;utilizzo della bookmarklet sono <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">disponibili qui</a> .</p> ",
+'mainPanelDirectLoginBlockLabel': "Login diretti",
+'directLinkReferenceShowButtonLabel': "mostra",
+'mainPanelDirectLoginBlockDescription': "<p>Crea “login diretti” per accedere ai tuoi servizi web senza bisogno di inserire username e password!</p> <p>I “login diretti” migliorano la tua sicurezza permettendoti di:</p> <ul> <li> <p>adottare comodamente password complesse;</p> </li> <li> <p>non riutilizzare mai la stessa password.</p> </li> </ul> <p>Semplice e rapido grazie alla <b>Clipperz bookmarklet</b> .</p><a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Ulteriori informazioni</a> ",
+'mainPanelRecordsBlockLabel': "Schede",
+'mainPanelAddRecordButtonLabel': "Aggiungi nuova scheda",
+'mainPanelRemoveRecordButtonLabel': "Elimina scheda",
+'mainPanelRecordFilterBlockTagsLabel': "tags",
+'recordDetailNoRecordAtAllTitle': "Benvenuto a Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>Ora puoi iniziare ad aggiungere schede con le tue informazioni riservate.</h5> <p>Le schede sono semplici moduli in cui organizzare le tue password ed ogni altro tipo di dato confidenziale.</p> <p>Le schede hanno una struttura flessibile e si adattano a contenere le informazioni più diverse: dalle password ai dettagli delle tue carte di credito!</p> <h5>Non dimenticarti di installare la bookmarklet!</h5> <p>Prima di iniziare ti consigliamo di installare la bookmarklet “Aggiungi a Clipperz”: creare nuove schede diventerà più rapido e divertente.</p> <p>Vai alla sezione “bookmarklet” per scoprire come installarla ed utilizzarla.</p> <p> </p> <p>Quando sei pronto, clicca sul pulsante <b>Aggiungi nuova scheda</b> e metti al sicuro tutte le tue informazioni più preziose.</p> <p> </p><a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">Maggiori informazioni sulla creazione e gestione delle schede (in inglese)</a> ",
+'newRecordWizardTitleBox': "<h5>Seleziona un modello di scheda</h5> <p>Le schede sono semplici moduli in cui organizzare le tue password ed ogni altro tipo di dato confidenziale.</p> <p>Scegli un modello dall&#x27;elenco sottostante. In seguito potrai sempre modificare la tua scheda aggiungendo o rimuovendo campi.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "Login diretto",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>Incolla qui sotto il codice generato dalla bookmarklet di Clipperz.</p> <p>Verrà creata una nuova scheda già completa con le informazioni per il “login diretto” al tuo servizio web.</p> ",
+'newRecordWizardCreateButtonLabel': "Crea",
+'newRecordWizardCancelButtonLabel': "Annulla",
+'donateSplashPanelTitle': "Supporta Clipperz, fai una donazione oggi!",
+'donateSplashPanelDescription': "<p>Alcune buone ragioni per fare una donazione:</p> <ul> <li> <p>supportare lo sviluppo di nuove funzionalità</p> </li> <li> <p>mantenere il servizio gratuito per tutti</p> </li> <li> <p>mostrare la tua gratitudine per il nostro duro lavoro</p> </li> </ul> <p>Per qualunque ulteriore informazione visita la <a href=\"http://www.clipperz.com/donations\" target=\"_blank\">pagina delle donazioni</a> .</p> <p><b>Pronto a donare?</b> </p> ",
+'donateCloseButtonLabel': "Non ancora",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "Password",
+ 'description': "<p>Una scheda molto semplice per conservare le credenziali di accesso ai tuoi servizi web.</p> ",
+ 'fields': {
+ 'URL': "Indirizzo web",
+ 'TXT': "Utente o email",
+ 'PWD': "Password"
+ }
+ },
+ 'BankAccount': {
+ 'title': "Conto corrente bancario",
+ 'description': "<p>Proteggi il tuo numero di conto corrente ed i codici di accesso ai servizi di online banking.</p> ",
+ 'fields': {
+ 'TXT': "Banca",
+ 'TXT': "Conto corrente n.",
+ 'URL': "Sito web della banca",
+ 'TXT': "Online banking ID",
+ 'PWD': "Online banking password"
+ }
+ },
+ 'CreditCard': {
+ 'title': "Carta di credito",
+ 'description': "<p>Numero della carta, data di scadenza, codici CVV2 e PIN sempre a portata di mano con Clipperz.</p> ",
+ 'fields': {
+ 'TXT': "Tipo (Visa, AmEx, ...)",
+ 'TXT': "Numero",
+ 'TXT': "Titolare",
+ 'TXT': "Data di scadenza",
+ 'TXT': "CVV2",
+ 'PWD': "PIN",
+ 'URL': "Sito web della carta",
+ 'TXT': "Utente",
+ 'PWD': "Password"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "Voce della rubrica",
+ 'description': "<p>Fai di Clipperz la tua rubrica segreta. Usa questo modello per creare una nuova voce.</p> ",
+ 'fields': {
+ 'TXT': "Nome",
+ 'TXT': "Email",
+ 'TXT': "Telefono",
+ 'TXT': "Cellulare",
+ 'ADDR': "Indirizzo"
+ }
+ },
+ 'Custom': {
+ 'title': "Scheda personalizzata",
+ 'description': "<p>Qualunque sia il tipo di informazione che desideri proteggere, Clipperz ti consente di creare una scheda su misura per i tuoi bisogni.</p> ",
+ 'fields': {
+ 'TXT': "Nome del campo 1",
+ 'TXT': "Nome del campo 2",
+ 'TXT': "Nome del campo 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "Password"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "Indirizzo web"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "data"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "indirizzo stradale"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "Seleziona:"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "Errore",
+'newRecordPanelGeneralExceptionMessage': "Configurazione non valida. Accertati di aver utilizzato il codice quello generato dalla bookmarklet.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Errore",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "La configurazione è stato generata da una vecchia versione della bookmarklet. Sei pregato di aggiornare subito la tua bookmarklet.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Annulla",
+'mainPanelDeletingRecordPanelConfirmationTitle': "Eliminazione della scheda in corso",
+'mainPanelDeleteRecordPanelConfirmationText': "Vuoi veramente eliminare la scheda selezionata?",
+'mainPanelDeletingRecordPanelInitialTitle': "Eliminazione della scheda in corso",
+'mainPanelDeletingRecordPanelInitialText': "---",
+'mainPanelDeletingRecordPanelCompletedText': "Fatto",
+'deleteRecordPanelCollectRecordDataMessageTitle': "Elimina scheda",
+'deleteRecordPanelCollectRecordDataMessageText': "Aggiorna elenco delle schede",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Elimina scheda",
+'deleteRecordPanelEncryptUserDataMessageText': "Cripta localmente l&#x27;intestazione delle schede",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Elimina scheda",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Carica le intestazioni criptate delle schede su Clipperz",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Elimina scheda",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Aggiornamento dell&#x27;interfaccia",
+'recordDetailNoRecordSelectedTitle': "Nessuna scheda selezionata",
+'recordDetailNoRecordSelectedDescription': "<p>Selezionare una scheda dall&#x27;elenco a sinistra.</p> ",
+'recordDetailLoadingRecordMessage': "Scarica scheda criptata da Clipperz",
+'recordDetailDecryptingRecordMessage': "Decodifica locale dei dati della scheda",
+'recordDetailLoadingRecordVersionMessage': "Scarica l&#x27;ultima versione della scheda",
+'recordDetailDecryptingRecordVersionMessage': "Decodifica locale dell&#x27;ultima versione",
+'recordDetailLoadingErrorMessageTitle': "Errore nello scaricamento della scheda",
+'recordDetailNotesLabel': "Note",
+'recordDetailLabelFieldColumnLabel': "Nome del campo",
+'recordDetailDataFieldColumnLabel': "Dati del campo",
+'recordDetailTypeFieldColumnLabel': "Tipo",
+'recordDetailSavingChangesMessagePanelInitialTitle': "Salvataggio scheda",
+'recordDetailSavingChangesMessagePanelInitialText': "---",
+'recordDetailRemoveFieldButtonLabel': "-",
+'recordDetailAddFieldButtonLabel': "Aggiungi nuovo campo",
+'recordDetailPasswordFieldHelpLabel': "clicca le stelline per copiare la password e poi Ctrl-C",
+'recordDetailPasswordFieldScrambleLabel': "nascondi",
+'recordDetailPasswordFieldUnscrambleLabel': "mostra",
+'recordDetailDirectLoginBlockTitle': "Login diretti",
+'recordDetailNewDirectLoginDescription': "<p>Configurazione del login diretto</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>Questa scheda contiene credenziali di accesso ad un servizio online?</p> <p>In tal caso puoi utilizzare la bookmarklet per configurare un “login diretto” da Clipperz con un solo clic!</p> ",
+'recordDetailDeleteDirectLoginButtonLabel': "-",
+'recordDetailAddNewDirectLoginButtonLabel': "Aggiungi nuovo login diretto",
+'recordDetailEditButtonLabel': "Modifica",
+'recordDetailSaveButtonLabel': "Salva",
+'recordDetailCancelButtonLabel': "Annulla",
+'newRecordTitleLabel': "_nuova scheda_",
+'newDirectLoginLabelSuffix': "",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Salva scheda",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Aggiorna elenco delle schede",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Salva scheda",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Cripta localmente l&#x27;intestazione delle schede",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Salva scheda",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Cripta localmente i dati della scheda",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Salva scheda",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Cripta localmente la versione della scheda",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Salva scheda",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Carica le intestazioni criptate delle schede su Clipperz",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Salva scheda",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Aggiornamento dell&#x27;interfaccia",
+'passwordGeneratorPanelTitle': "Generatore di password",
+'passwordGeneratorPanelOkLabel': "Ok",
+'passwordGeneratorPanelCancelLabel': "Annulla",
+'passwordGeneratorLengthLabel': "lung . :",
+//'DWRUtilLoadingMessage': "Caricamento dati",
+'comingSoon': "Presto disponibile ...",
+'panelCollectingEntryopyMessageText': "Raccolta entropia",
+'importData_parsingDataTitle': "Importa",
+'importData_previewingDataTitle': "Importa",
+'importData_processingDataTitle': "Importa",
+'ImportWizard': {
+ 'EDIT': "Modifica",
+ 'IMPORT': "Importa",
+ 'CSV_NOTES': "Note",
+ 'EXCEL_EDIT': "Modifica"
+},
+'importData_importConfirmation_title': "Importa",
+'WELCOME_BACK': "Bentornato!",
+'currentConnectionText': "Sei collegato da ip __ip__; probabilmente in __country__, utilizzando __browser__ con __operatingSystem__.",
+'latestConnectionText': "Il tuo ultimo accesso è stato __elapsedTimeDescription__ (__time__) da ip __ip__; probabilmente in __country__, utilizzando __browser__ con __operatingSystem__.",
+'fullLoginHistoryLinkLabel': "vai al registro degli accessi",
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "più di un mese fa",
+ 'MORE_THAN_A_WEEK_AGO': "più di una settimana fa",
+ 'MORE_THAN_*_WEEKS_AGO': "più di __elapsed__ settimane fa",
+ 'YESTERDAY': "ieri",
+ '*_DAYS_AGO': "__elapsed__ giorni fa",
+ 'ABOUT_AN_HOUR_AGO': "circa un&#x27;ora fa",
+ '*_HOURS_AGO': "__elapsed__ ore fa",
+ 'JUST_A_FEW_MINUTES_AGO': "pochi minuti fa",
+ 'ABOUT_*_MINUTES_AGO': "circa __elapsed__ minuti fa"
+},
+'unknown_ip': "sconosciuto",
+'countries': {
+ '--': "sconosciuto",
+ 'AD': "Andorra",
+ 'AE': "Emirati arabi uniti",
+ 'AF': "Afghanistan",
+ 'AG': "Antigua e Barbuda",
+ 'AI': "Anguilla",
+ 'AL': "Albania",
+ 'AM': "Armenia",
+ 'AN': "Antille olandesi",
+ 'AO': "Angola",
+ 'AR': "Argentina",
+ 'AS': "Samoa americane",
+ 'AT': "Austria",
+ 'AU': "Australia",
+ 'AW': "Aruba",
+ 'AZ': "Azerbaigian",
+ 'BB': "Barbados",
+ 'BD': "Bangladesh",
+ 'BE': "Belgio",
+ 'BF': "Burkina-Faso",
+ 'BG': "Bulgaria",
+ 'BH': "Bahrein",
+ 'BI': "Burundi",
+ 'BJ': "Benin",
+ 'BM': "Bermuda",
+ 'BN': "Brunei",
+ 'BO': "Bolivia",
+ 'BR': "Brasile",
+ 'BS': "Bahamas",
+ 'BT': "Bhutan",
+ 'BW': "Botswana",
+ 'BY': "Bielorussia",
+ 'BZ': "Belize",
+ 'CA': "Canada",
+ 'CD': "Repubblica democratica del Congo",
+ 'CF': "Repubblica centrafricana",
+ 'CH': "Svizzera",
+ 'CK': "Isole Cook",
+ 'CL': "Cile",
+ 'CM': "Camerun",
+ 'CN': "Cina",
+ 'CO': "Colombia",
+ 'CR': "Costa Rica",
+ 'CS': "Repubblica del Montenegro",
+ 'CU': "Cuba",
+ 'CY': "Cipro",
+ 'CZ': "Repubblica ceca",
+ 'DE': "Germania",
+ 'DJ': "Gibuti",
+ 'DK': "Danimarca",
+ 'DO': "Repubblica dominicana",
+ 'DZ': "Algeria",
+ 'EC': "Ecuador",
+ 'EE': "Estonia",
+ 'EG': "Egitto",
+ 'ER': "Eritrea",
+ 'ES': "Spagna",
+ 'ET': "Etiopia",
+ 'FI': "Finlandia",
+ 'FJ': "Figi",
+ 'FM': "Micronesia",
+ 'FO': "Isole Fær Øer",
+ 'FR': "Francia",
+ 'GA': "Gabon",
+ 'GB': "Regno Unito",
+ 'GD': "Grenada",
+ 'GE': "Georgia",
+ 'GF': "Guyana francese",
+ 'GG': "Guernsey",
+ 'GH': "Ghana",
+ 'GI': "Gibilterra",
+ 'GL': "Groenlandia",
+ 'GM': "Gambia",
+ 'GP': "Guadalupa",
+ 'GR': "Grecia",
+ 'GT': "Guatemala",
+ 'GU': "Guam",
+ 'GW': "Guinea-Bissau",
+ 'GY': "Guyana",
+ 'HK': "Hong Kong",
+ 'HN': "Honduras",
+ 'HT': "Haiti",
+ 'HU': "Ungheria",
+ 'ID': "Indonesia",
+ 'IE': "Irlanda",
+ 'IL': "Israele",
+ 'IM': "Isola di Man",
+ 'IN': "India",
+ 'IO': "Territorio britannico dell&#x27;Oceano Indiano",
+ 'IQ': "Iraq",
+ 'IR': "Iran",
+ 'IS': "Islanda",
+ 'IT': "Italia",
+ 'JE': "Jersey",
+ 'JM': "Giamaica",
+ 'JO': "Giordania",
+ 'JP': "Giappone",
+ 'KE': "Kenya",
+ 'KG': "Kirghizistan",
+ 'KH': "Cambogia",
+ 'KI': "Kiribati",
+ 'KN': "Saint Kitts e Nevis",
+ 'KR': "Corea del Sud",
+ 'KW': "Kuwait",
+ 'KY': "Isole Cayman",
+ 'KZ': "Kazakistan",
+ 'LA': "Laos",
+ 'LB': "Libano",
+ 'LC': "Saint Lucia",
+ 'LI': "Liechtenstein",
+ 'LK': "Sri Lanka",
+ 'LR': "Liberia",
+ 'LS': "Lesotho",
+ 'LT': "Lituania",
+ 'LU': "Lussemburgo",
+ 'LV': "Lettonia",
+ 'LY': "Libia",
+ 'MA': "Marocco",
+ 'MC': "Monaco",
+ 'MD': "Moldova",
+ 'MG': "Madagascar",
+ 'MH': "Isole Marshall",
+ 'ML': "Mali",
+ 'MM': "Myanmar",
+ 'MN': "Mongolia",
+ 'MP': "Marianne settentrionali",
+ 'MR': "Mauritania",
+ 'MS': "Montserrat",
+ 'MT': "Malta",
+ 'MU': "Maurizio",
+ 'MV': "Maldive",
+ 'MW': "Malawi",
+ 'MX': "Messico",
+ 'MY': "Malaysia",
+ 'MZ': "Mozambico",
+ 'NA': "Namibia",
+ 'NC': "Nuova Caledonia",
+ 'NF': "Isola Norfolk",
+ 'NG': "Nigeria",
+ 'NI': "Nicaragua",
+ 'NL': "Paesi Bassi",
+ 'NO': "Norvegia",
+ 'NP': "Nepal",
+ 'NR': "Nauru",
+ 'NU': "Niue",
+ 'NZ': "Nuova Zelanda",
+ 'OM': "Oman",
+ 'PA': "Panama",
+ 'PE': "Perù",
+ 'PF': "Polinesia francese",
+ 'PG': "Papua Nuova Guinea",
+ 'PH': "Filippine",
+ 'PK': "Pakistan",
+ 'PL': "Polonia",
+ 'PR': "Puerto Rico",
+ 'PS': "Territori palestinesi",
+ 'PT': "Portogallo",
+ 'PW': "Palau",
+ 'PY': "Paraguay",
+ 'QA': "Qatar",
+ 'RO': "Romania",
+ 'RS': "Serbia",
+ 'RU': "Russia",
+ 'RW': "Ruanda",
+ 'SA': "Arabia Saudita",
+ 'SB': "Isole Salomone",
+ 'SC': "Seicelle",
+ 'SD': "Sudan",
+ 'SE': "Svezia",
+ 'SG': "Singapore",
+ 'SI': "Slovenia",
+ 'SL': "Sierra Leone",
+ 'SM': "San Marino",
+ 'SN': "Senegal",
+ 'SR': "Suriname",
+ 'SV': "El Salvador",
+ 'SY': "Siria",
+ 'SZ': "Swaziland",
+ 'TC': "Turks e Caicos",
+ 'TG': "Togo",
+ 'TH': "Thailandia",
+ 'TJ': "Tagikistan",
+ 'TM': "Turkmenistan",
+ 'TN': "Tunisia",
+ 'TO': "Tonga",
+ 'TR': "Turchia",
+ 'TV': "Tuvalu",
+ 'TW': "Taiwan",
+ 'TZ': "Tanzania",
+ 'UA': "Ucraina",
+ 'UG': "Uganda",
+ 'US': "Stati Uniti",
+ 'UY': "Uruguay",
+ 'UZ': "Uzbekistan",
+ 'VA': "Santa Sede (Stato della Città del Vaticano)",
+ 'VE': "Venezuela",
+ 'VG': "Isole Vergini britanniche",
+ 'VI': "Isole Vergini statunitensi",
+ 'VN': "Vietnam",
+ 'VU': "Vanuatu",
+ 'WS': "Samoa",
+ 'YE': "Yemen",
+ 'ZA': "Sud Africa",
+ 'ZM': "Zambia",
+ 'ZW': "Zimbabwe"
+},
+'browsers': {
+ 'UNKNOWN': "sconosciuto"
+},
+'operatingSystems': {
+ 'UNKNOWN': "sconosciuto",
+ 'MOBILE': "Cellulare"
+},
+'calendarStrings': {
+ 'months': {
+ '0': "Gennaio",
+ '1': "Febbraio",
+ '2': "Marzo",
+ '3': "Aprile",
+ '4': "Mag",
+ '5': "Giugno",
+ '6': "Luglio",
+ '7': "Agosto",
+ '8': "Settembre",
+ '9': "Ottobre",
+ '10': "Novembre",
+ '11': "Dicembre"
+ },
+ 'shortMonths': {
+ '0': "Gen",
+ '1': "Feb",
+ '2': "Mar",
+ '3': "Apr",
+ '4': "Mag",
+ '5': "Giu",
+ '6': "Lug",
+ '7': "Ago",
+ '8': "Set",
+ '9': "Ott",
+ '10': "Nov",
+ '11': "Dic"
+ },
+ 'days': {
+ '0': "Domenica",
+ '1': "Lunedì",
+ '2': "Martedì",
+ '3': "Mercoledì",
+ '4': "Giovedì",
+ '5': "Venerdì",
+ '6': "Sabato"
+ },
+ 'shortDays': {
+ '0': "Dom",
+ '2': "Mar",
+ '3': "Mer",
+ '4': "Gio",
+ '5': "Ven",
+ '6': "Sab"
+ },
+ 'veryShortDays': {
+ '1': "Lu",
+ '4': "Gi",
+ '5': "Ve"
+ }
+},
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_ja-JP.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_ja-JP.js
new file mode 100644
index 0000000..2b571b7
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_ja-JP.js
@@ -0,0 +1,808 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+Clipperz.PM.Strings.Languages['ja-JP'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+'clipperzServiceDescription': "<h2>自分で管理しよう!</h2> <ul> <li> <h3>Clipperz は</h3> <ul> <li> <p>安全でシンプルなパスワードマネージャです</p> </li> <li> <p>シングルサインオンを提供します</p> </li> <li> <p>機密情報のデジタル格納庫です</p> </li> </ul> </li> <li> <h3>Clipperz でできること</h3> <ul> <li> <p>パスワードを保管して管理できます</p> </li> <li> <p>ユーザー名やパスワードを入力せずに登録したウェブサービスにログインできます</p> </li> <li> <p>暗証番号やクレジットカード番号などあらゆる機密情報を守ります</p> </li> <li> <p>家族や信用できる相手と機密情報を共有できます(提供予定)</p> </li> </ul> </li> <li> <h3>Clipperz のよいところ</h3> <ul> <li> <p>無料で匿名利用できます</p> </li> <li> <p>いつでもどのコンピュータからでもアクセスできます</p> </li> <li> <p>ソフトウェアのダウンロードやインストールは不要です</p> </li> <li> <p>PC や紙に機密情報を残す必要がありません</p> </li> </ul> </li> <li> <h3>Clipperz のセキュリティ</h3> <ul> <li> <p>データはブラウザで暗号化されてから Clipprez に送信されます</p> </li> <li> <p>暗号化のキーはあなただけが知っているパスフレーズです</p> </li> <li> <p>保管したデータは暗号化されていて、保管中には決して中身を見ることができません</p> </li> <li> <p>標準が確立された暗号化手順を採用しています</p> </li> <li> <p>ソースコードはいつでも参照できますが、暗号化について何も知らなくても使えます</p> </li> </ul> </li> <li><a href=\"http://www.clipperz.com\" target=\"_blank\">もっと見る</a> </li> </ul> ",
+'loginFormTitle': "Clipperz のアカウントでログイン",
+'loginFormUsernameLabel': "ユーザー名",
+'loginFormPassphraseLabel': "パスフレーズ",
+'loginFormDontHaveAnAccountLabel': "アカウントを持っていない?",
+'loginFormCreateOneLabel': "新規作成",
+'loginFormForgotYourCredentialsLabel': "パスフレーズを忘れた?",
+'loginFormAarghThatsBadLabel': "それは困った!",
+'loginFormAfraidOfMaliciousScriptsLabel': "偽サイトかも?",
+'loginFormVerifyTheCodeLabel': "確認する",
+'loginFormButtonLabel': "ログイン",
+'loginFormOneTimePasswordCheckboxLabel': "ワンタイムパスフレーズ使用",
+'loginFormOneTimePasswordCheckboxDescription': "",
+'loginPanelSwithLanguageDescription': "<h5>言語設定の変更</h5> ",
+'browserCompatibilityDescription': "<p>Clipperz は Firefox に最適化されています。 しかし Clipperz は Opera や Safari そしてインターネットエクスプローラでも十分動作します。</p> ",
+'OTPloginMessagePanelInitialTitle': "ワンタイムパスフレーズでログイン中",
+'OTPloginMessagePanelInitialText': "OTP 情報送信中 ...",
+'OTPloginMessagePanelLoadingTitle': "ワンタイムパスフレーズでログイン中",
+'OTPloginMessagePanelLoadingText': "認証情報を取得中 ...",
+'OTPloginMessagePanelProcessingTitle': "ワンタイムパスフレーズでログイン中",
+'OTPloginMessagePanelProcessingText': "認証情報を復号中 ...",
+'loginMessagePanelInitialTitle': "ログイン中 ...",
+'loginMessagePanelInitialText': "---",
+'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>さらに詳しくは Clipperz のサイトをごらんください。</p> ",
+'splashAlertCloseButtonLabel': "OK",
+'registrationFormTitle': "新規アカウント作成",
+'registrationFormUsernameLabel': "ユーザー名",
+'registrationFormPassphraseLabel': "パスフレーズ",
+'registrationFormRetypePassphraseLabel': "パスフレーズをもう一度",
+'registrationFormSafetyCheckLabel': "パスフレーズを忘れたら復活できないことを了承します。",
+'registrationFormTermsOfServiceCheckLabel': "利用許諾に同意します 。",
+'registrationFormDoYouAlreadyHaveAnAccountLabel': "アカウントを持っている?",
+'registrationFormSimplyLoginLabel': "すぐにログイン",
+'registrationFormButtonLabel': "登録",
+'registrationFormWarningMessageNotMatchingPassphrases': "パスフレーズの入力に誤りがあります。 再入力してください。",
+'registrationFormWarningMessageSafetyCheckNotSelected': "説明を読んで下のボックスを全てチェックしてください。",
+'registrationFormWarningMessageTermsOfServiceCheckNotSelected': "利用許諾に同意してください。",
+'registrationMessagePanelInitialTitle': "アカウント作成中 ...",
+'registrationMessagePanelInitialText': "---",
+'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': "パスフレーズを忘れたら復活できないことを了承します。",
+'changePasswordFormSubmitLabel': "変更",
+'changePasswordFormWrongUsernameWarning': "ユーザー名が違います",
+'changePasswordFormWrongPassphraseWarning': "パスフレーズが違います",
+'changePasswordFormWrongRetypePassphraseWarning': "パスフレーズの入力に誤りがあります。 再入力してください。",
+'changePasswordFormSafetyCheckWarning': "説明を読んでボックスをチェックしてください。",
+'changePasswordFormProgressDialogTitle': "認証情報を変更中",
+'changePasswordFormProgressDialogEmptyText': "---",
+'changePasswordFormProgressDialogConnectedMessageTitle': "接続完了",
+'changePasswordFormProgressDialogConnectedMessageText': "完了",
+'changePasswordFormProgressDialogErrorMessageTitle': "エラー",
+'changePasswordFormProgressDialogErrorMessageText': "変更に失敗しました",
+'changeCredentialsPanelEncryptingDataMessageTitle': "パスフレーズを変更中",
+'changeCredentialsPanelEncryptingDataMessageText': "カードヘッダ暗号化",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "パスフレーズを変更中",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "認証情報を送信中",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "パスフレーズを変更中",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "暗号化データを送信中",
+'changeCredentialsPanelDoneMessageTitle': "パスフレーズを変更中",
+'changeCredentialsPanelDoneMessageText': "完了",
+'manageOTPTabLabel': "ワンタイムパスフレーズ管理",
+'manageOTPTabTitle': "ワンタイムパスフレーズ管理",
+'manageOTPTabDescription': "<p>ワンタイムパスフレーズは通常のパスフレームと同様に機能しますが、一回限りの使い捨てパスフレーズです。</p> <p>同じパスフレーズで再度ログインすることはできません。</p> <p>不正アクセス防止のためにログインに成功したら直ちにワンタイムパスフレーズは削除されます</p> <p>ワンタイムパスフレーズはキーロガーやスパイウェアからパスフレーズを守るすばらしい機能です</p> <p><b>インターネットカフェや図書館などから Clipperz にアクセする場合にはワンタイムパスフレーズを利用することを強くお薦めします。</b> </p> ",
+'oneTimePasswordReadOnlyMessage': "<h6>ごめんなさい</h6> <p>ローカルコピー使用中はワンタイムパスフレーズを利用できません。</p> ",
+'oneTimePasswordLoadingMessage': "<h6>ロード中</h6> <p>お待ちください ...</p> ",
+'oneTimePasswordNoPasswordAvailable': "<h6>有効なワンタイムパスフレーズがありません</h6> <p>「新規」ボタンをクリックしてワンタイムパスフレーズを作成してください。</p> ",
+'createNewOTPButtonLabel': "新規",
+'deleteOTPButtonLabel': "削除",
+'printOTPButtonLabel': "印刷",
+'disabledOneTimePassword_warning': "無効",
+'oneTimePasswordSelectionLink_selectLabel': "選択:",
+'oneTimePasswordSelectionLink_all': "すべて",
+'oneTimePasswordSelectionLink_none': "解除",
+'oneTimePasswordSelectionLink_used': "使用済",
+'oneTimePasswordSelectionLink_unused': "未使用",
+'saveOTP_encryptUserDataTitle': "ワンタイムパスフレーズを保存中",
+'saveOTP_encryptUserDataText': "OTP 認証譲歩を作成中 ...",
+'saveOTP_encryptOTPDataTitle': "ワンタイムパスフレーズを保存中",
+'saveOTP_encryptOTPDataText': "暗号化データを作成中 ...",
+'saveOTP_sendingDataTitle': "ワンタイムパスフレーズを保存中",
+'saveOTP_sendingDataText': "暗号化データを送信中 ...",
+'saveOTP_updatingInterfaceTitle': "ワンタイムパスフレーズを保存中",
+'saveOTP_updatingInterfaceText': "インターフェイスを更新中 ...",
+'accountPreferencesLabel': "設定",
+'accountPreferencesTabTitle': "設定",
+'accountPreferencesLanguageTitle': "言語設定",
+'accountPreferencesLanguageDescription': "<p>リストから使用する言語を選択してください。</p> ",
+'showDonationReminderPanelTitle': "ドネーションリマインダ",
+'showDonationReminderPanelDescription': "<p>ドネーションリマインダを表示</p> ",
+'saveUserPreferencesFormSubmitLabel': "保存",
+'cancelUserPreferencesFormSubmitLabel': "キャンセル",
+'accountPreferencesSavingPanelTitle_Step1': "保存中",
+'accountPreferencesSavingPanelText_Step1': "暗号化中",
+'accountPreferencesSavingPanelTitle_Step2': "保存中",
+'accountPreferencesSavingPanelText_Step2': "送信中",
+'accountLoginHistoryLabel': "ログイン履歴",
+'loginHistoryTabTitle': "ログイン履歴",
+'loginHistoryReadOnlyMessage': "<h6>ごめんなさい</h6> <p>ローカルコピー使用中はログイン履歴を利用できません。</p> ",
+'loginHistoryLoadingMessage': "<h6>ロード中</h6> <p>お待ちください ...</p> ",
+'loginHistoryLoadedMessage': "<h6>最近 10 回のログイン</h6> <p> </p> ",
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "日付",
+'loginHistoryCurrentSessionText': "現在のログイン",
+'loginHistoryReloadButtonLabel': "ログイン履歴を更新",
+'deleteAccountTabLabel': "アカウント削除",
+'deleteAccountTabTitle': "アカウント削除",
+'deleteAccountFormUsernameLabel': "ユーザー名",
+'deleteAccountFormPassphraseLabel': "パスフレーズ",
+'deleteAccountFormSafetyCheckboxLabel': "全てのデータが消去されて復元不可能になることを了承します。",
+'deleteAccountFormSubmitLabel': "アカウント削除",
+'deleteAccountFormWrongUsernameWarning': "ユーザー名が違います",
+'deleteAccountFormWrongPassphraseWarning': "パスフレーズが違います",
+'deleteAccountFormSafetyCheckWarning': "説明を読んでボックスをチェックしてください。",
+'accountPanelDeletingAccountPanelConfirmationTitle': "確認",
+'accountPanelDeleteAccountPanelConfirmationText': "本当にアカウントを削除しますか?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "はい",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "いいえ",
+'accountPanelDeletingAccountPanelProgressTitle': "アカウント情報削除中",
+'accountPanelDeletingAccountPanelProgressText': "しばらくお待ちください",
+'offlineCopyTabLabel': "ローカルコピー",
+'offlineCopyTabTitle': "ローカルコピー",
+'offlineCopyTabDescription': "<p>ダウンロードのリンクをクリクするとインターネットに接続していないときでも利用できる読み取り専用のローカル版をダウンロードできます。</p> <p>ローカル版はオンライン版と同じ暗号化処理がされているため、編集可能なオンライン版と同じ安全性があります。</p> <ol> <li> <p>下の「ダウンロード」をクリックします。</p> </li> <li> <p>ブラウザーが &quot;Clipperz_YYYYMMDD.html&quot; をダウンロードするか確認します。 ファイルをハードディスクに保存してください。</p> </li> <li> <p>ローカルコピーをダブルクリックして起動してください。</p> </li> <li> <p>オンライン版と同じユーザー名とパスフレーズを入力してください。</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "ダウンロード",
+'offlineCopyDownloadWarning': "<h4><a href=\"#\" id=\"offlineCopyDownloadWarningLink\">ローカルコピーを更新してください</a> </h4> <p>ローカルコピーを作成後に新しいカードを追加または編集しています。 最新の情報を保つためローカルコピーを更新してください。</p> ",
+'offlineCopyDownloadOk': "",
+'sharingTabLabel': "共有",
+'sharingTabTitle': "共有",
+'sharingTabDescription': "<p>暗証番号などを他人に教える必要があることは日常生活で往々にして発生します。</p> <p>同僚に留守番電話のメッセージを代わりに聞いてもらうために暗証番号を教えたり、秘書に代わりに銀行に行ってもらうために暗証番号を教えたりということはよくあることです。</p> <p>Clipperz では機密情報を安全に、そして簡単に共有できます。</p> <p> </p> <p><b>近日登場 ...</b> </p> ",
+'importTabLabel': "インポート",
+'importTabTitle': "インポート",
+'importTabDescription': "<p>コンピュータから Clipperz にデータを一括インポートできます。</p> ",
+'printingTabLabel': "エクスポート",
+'printingTabTitle': "エクスポート",
+'printingTabDescription': "<h5>印刷</h5> <p>「印刷用データ」のリンクをクリックするとウィンドウが開いて全てのデータが印刷可能な状態で表示されます。</p> <p>バックアップが目的なら、誰でも見ることができる印刷版よりは安全なローカルコピーをお薦めします。</p> ",
+'printingLinkLabel': "印刷用データ",
+'exportTabDescription': "<h5>JSON エクスポート</h5> <p>JSON はすべてのデータをエクスポートできます。 ダイレクトログインを含むすべての情報が保存されます。</p> <p>このフォーマットはすべてのデータを別の Clipperz アカウントに移動するときに便利です。 トラブルが発生したときにデータを復旧するのにも役立ちます。</p> <p>「JSON 出力」のリンクをクリックするとエクスポートが開始されます。</p> ",
+'exportLinkLabel': "JSON 出力",
+'exportDataInProgressDescription': "<h4>出力中。しばらくお待ちください ...</h4> ",
+'exportDataDescription': "<h4>利用法</h4> <p>下のテキストを任意のエディターにコピーして保存します。 (例: 「clipperz_export_20071217.json」)</p> ",
+'contactsTabLabel': "コンタクト",
+'contactsTabTitle': "コンタクト",
+'passwordGeneratorTabLabel': "パスワードジェネレータ",
+'bookmarkletTabLabel': "ブックマークレット",
+'compactTabLabel': "コンパクト版",
+'httpAuthTabLabel': "HTTP 認証",
+'passwordGeneratorTabTitle': "パスワードジェネレータ",
+'bookmarkletTabTitle': "ブックマークレット",
+'compactTabTitle': "コンパクト版",
+'httpAuthTabTitle': "HTTP 認証",
+'paswordGeneratorTabDescription': "<p> </p> ",
+'passwordGeneratorTabButtonLabel': "パスワード生成",
+'bookmarkletTabLabel': "ブックマークレット",
+'bookmarkletTabTitle': "ブックマークレット",
+'bookmarkletTabDescription': "<p>ブックマークレットはブラウザのブックマークに登録して使う小さなプログラムです。 通常のウェブページのブックマークと同じようにブラウザに登録できます。</p> <p>Clipperz のブックマークレットを使えば簡単に新規カードを追加したり、既存のカードにダイレクトログインを追加したりできます。</p> <p><b>Clipperz のブックマークレットにはユーザー名やパスフレーズなどの個人情報は含まれていません。ブックマークレットは全ユーザー共通のものです。</b> </p> <h3>ブックマークレットの登録方法</h3> <h>Firefox, Camino, Opera, Safari <ol> <li> <p>ブックマークバー(パーソナルバー)が表示されていることを確認します。 (「表示」メニュー(「表示>ツールバー」サブメニューの場合もあり)から変更できます。)</p> </li> <li> <p>下の「Clipperz に追加」をブックマークバー(パーソナルバー)にドラッグします。</p> </li> </ol> <h5>インターネットエクスプローラー</h5> <ol> <li> <p>アドレスバーが表示されていることを確認します。 (「表示>ツールバー>アドレスバー」メニューから変更できます。)</p> </li> <li> <p>下の「Clipperz に追加」を右クリックします。</p> </li> <li> <p>コンテキストメニューから「お気に入りに追加」を選択します。</p> </li> <li> <p>セキュリティ警告が表示されますので「はい」をクリックします。</p> </li> <li> <p>保存先の「リンク」フォルダーを開き「OK」をクリックします。</p> </li> </ol> ",
+'bookmarkletTabBookmarkletTitle': "Clipperz に追加",
+'bookmarkletTabInstructions': "<h3>ダイレクトログイン用の新規カードの作成方法</h3> <ol> <li> <p>保存したいサービスのログインページを開きます。 (パスワードなどを入力する画面があるところです)</p> </li> <li> <p>ブックマークレットをクリックします。 画面上にウィンドウがポップアップします。</p> </li> <li> <p>ポップアップしたウィンドウに表示された登録用コードをコピーします。 (ctrl-C)</p> </li> <li> <p>Clipperz にログインして 「新規カード追加」のボタンをクリックします。</p> </li> <li> <p>「ダイレクトログイン」のテンプレートを選んでコード入力用のスペースに先ほどコピーしたコードを貼り付けます。 (ctrl-V)</p> </li> <li> <p>「作成」ボタンをクリックして、内容を確認して「保存」ボタンをクリックします。</p> </li> </ol> <h3>既存カードへのダイレクトログインの追加方法</h3> <ol> <li> <p>上記と同じです。</p> </li> <li> <p>上記と同じです。</p> </li> <li> <p>上記と同じです。</p> </li> <li> <p>Clipperz にログインして変更したいカードを選択後「編集」ボタンをクリックします。</p> </li> <li> <p>ダイレクトログインコード用のスペースに先ほどコピーしたコードを貼り付けます。 (ctrl-V)</p> </li> <li> <p>「ダイレクトログイン追加」ボタンをクリックして、内容を確認して「保存」ボタンをクリックします。</p> </li> </ol> <p> </p> <p>ブックマークレットに関する詳しい情報はこちら。</p> ",
+'compactTabDescription': "<p>Clipprez Compact は Firefox のサイドバーで利用するようデザインされた Clipperz の特別版です。</p> <p>ダイレクトログインを常時アクセス可能にします。 さらに詳しく </p> <h3>Clipperz Compact の利用法</h3> <ol> <li> <p>Firefox を入手します。 サイドバーは Firefox だけで利用できるため、 Clipperz Compact を利用するには Firefox が必須です。</p> </li> <li> <p>下の「Clipperz Compact」 URL を Firefox のブックマークに登録します。ブックマークバーにドラッグするのが簡単です。</p> <div id=\"compactLinkBox\"><a href=\"https://www.clipperz.com/beta/index.html?compact\" target=\"_search\">Clipperz Compact</a> </div> </li> <li> <p>ブックマークを右クリックして「情報を見る」を選択後、「このブックマークをサイドバーに読み込む」にチェックを入れます。</p> </li> </ol> <h5>追加情報:Clipperz Compact は Opera のパネルでも操作します。</h5> ",
+'httpAuthTabDescription': "<p>HTTP 認証は HTML の基本機能を使ってブラウザからユーザー名とパスワードでログインする方式です。</p> <p>すでに主流ではありませんが、またプライベートなサイトなどで使われています。 HTTP 認証が必要なサイトにアクセスしようとすると、ブラウザがポップアップウィンドウを開いてユーザー名とパスワードの入力を要求してきます。</p> <p>残念ながら、 Clipperz のブックマークレットは HTTP 認証には対応していません。 しかし、ダイレクトログインを設定する方法はあります。</p> <h3>HTTP 認証サイトでのダイレクトログイン設定方法</h3> <ol> <li> <p>サイトの URL とユーザー名、パスワードを新規カードに登録します。</p> </li> <li> <p>下記の設定をコピーして、カード編集画面の「ダイレクトログイン設定」のセクションに貼り付けます。</p> </li> <li> <p>「新規ダイレクトログイン追加」ボタンをクリックして、 URL とユーザー名、パスワードを入力して保存します。</p> </li> </ol> <h5><a href=\"http://support.microsoft.com/kb/834489\" target=\"_blank\">警告:インターネットエクスプローラは HTTP 認証に対応していません。</a> </h5> ",
+'mainPanelDirectLoginBlockLabel': "ダイレクトログイン",
+'directLinkReferenceShowButtonLabel': "表示",
+'mainPanelDirectLoginBlockDescription': "<p>ダイレクトログインを設定してユーザー名やパスワードを入力することなくログインできるようにしましょう。</p> <p>ダイレクトログインでさらにセキュリティを強化するために:</p> <ul> <li> <p>より複雑なパスワードを設定しましょう</p> </li> <li> <p>推測されやすい同じパスワードを複数のサイトで使わないようにしましょう。</p> </li> </ul> <p>ブックマークレットを使うと簡単に設定できます。</p><a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">ダイレクトログインに関する詳しい情報</a> ",
+'mainPanelRecordsBlockLabel': "カード",
+'mainPanelAddRecordButtonLabel': "新規カード追加",
+'mainPanelRemoveRecordButtonLabel': "カード削除",
+'mainPanelRecordFilterBlockAllLabel': "すべて",
+'mainPanelRecordFilterBlockTagsLabel': "タグ",
+'mainPanelRecordFilterBlockSearchLabel': "検索",
+'recordDetailNoRecordAtAllTitle': "Clipperz へようこそ",
+'recordDetailNoRecordAtAllDescription': "<h5>まず最初にカードを追加しましょう。</h5> <p>カードはパスワードやその他の重要な情報を保管するためのシンプルでフレキシブルなフォームです。</p> <p>カードにはウェブサイトのログインパスワード、自転車の鍵の番号、クレジットカードの番号など何でも記入できます。</p> <h5>ブックマークレットを活用しましょう。</h5> <p>まずは簡単にカードを追加できるブックマークレットをインストールしましょう。</p> <p>ブックマークレットのタブをクリックしてインストール方法と利用方法を確認しましょう。</p> <p> </p> <p>ブックマークレットをインストールしたら Clipperz を活用しましょう。</p> <p> </p><a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">カードに関する詳しい情報</a> ",
+'newRecordWizardTitleBox': "<h5>テンプレート選択</h5> <p>カードはシンプルでパスワードや重要な情報を何でも保存できる柔軟性があります。</p> <p>まずはテンプレートを選んでください。  カードはいつでも自由に変更できます。</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "ダイレクトログイン",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>ブックマークレットが生成したコードを下に貼り付けてください。</p> <p>ダイレクトログイン情報を含む新しいカードが作成されます。</p> ",
+'newRecordWizardCreateButtonLabel': "作成",
+'newRecordWizardCancelButtonLabel': "キャンセル",
+'donateSplashPanelTitle': "Clipperz のために今すぐ寄付しよう",
+'donateSplashPanelDescription': "<p>寄付する理由:</p> <ul> <li> <p>新機能追加をサポートします</p> </li> <li> <p>Clipperz を無料に保ちます</p> </li> <li> <p>開発陣の仕事に感謝します</p> </li> </ul> <p>詳しくは寄付のページをごらんください .</p> <p><b>寄付しますか?</b> </p> ",
+'donateCloseButtonLabel': "あとでする",
+'donateDonateButtonLabel': "はい",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "ウェブパスワード",
+ 'description': "<p>ログイン情報用のシンプルなカードです。</p> ",
+ 'fields': {
+ 'URL': "ウェブアドレス",
+ 'TXT': "ユーザー名またはメールアドレス",
+ 'PWD': "パスワード"
+ }
+ },
+ 'BankAccount': {
+ 'title': "銀行口座",
+ 'description': "<p>口座番号とオンラインバンキング情報用のカードです。</p> ",
+ 'fields': {
+ 'TXT': "銀行",
+ 'TXT': "口座番号",
+ 'URL': "銀行サイト",
+ 'TXT': "オンラインバンキング ID",
+ 'PWD': "オンラインバンキングパスワード"
+ }
+ },
+ 'CreditCard': {
+ 'title': "クレジットカード",
+ 'description': "<p>クレジットカードに関するあらゆる情報を保管できます。</p> ",
+ 'fields': {
+ 'TXT': "種類(Visa 、 AMEX など)",
+ 'TXT': "番号",
+ 'TXT': "所有者名",
+ 'TXT': "有効期限",
+ 'TXT': "CVV2 番号",
+ 'PWD': "暗証番号",
+ 'URL': "カード会社サイト",
+ 'TXT': "ユーザー名",
+ 'PWD': "パスワード"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "アドレス帳",
+ 'description': "<p>Clipperz はプライベートなアドレス帳としても機能します。 このテンプレートを利用して簡単に新しい住所を追加できます。</p> ",
+ 'fields': {
+ 'TXT': "名前",
+ 'TXT': "メールアドレス",
+ 'TXT': "電話番号",
+ 'TXT': "携帯電話",
+ 'ADDR': "住所"
+ }
+ },
+ 'Custom': {
+ 'title': "カスタムカード",
+ 'description': "<p>カスタムカードを使えばどんな情報でも保管できます。</p> ",
+ 'fields': {
+ 'TXT': "ラベル 1",
+ 'TXT': "ラベル 2",
+ 'TXT': "ラベル 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "テキスト入力欄",
+ 'shortDescription': "テキスト"
+ },
+ 'PWD': {
+ 'description': "通常は非表示になるテキスト入力欄",
+ 'shortDescription': "パスワード"
+ },
+ 'URL': {
+ 'description': "表示モードではクリックできる URL 入力欄",
+ 'shortDescription': "ウェブアドレス"
+ },
+ 'DATE': {
+ 'description': "日付入力欄",
+ 'shortDescription': "日付"
+ },
+ 'ADDR': {
+ 'description': "Google マップ用の URL に似た文字列",
+ 'shortDescription': "住所"
+ },
+ 'CHECK': {
+ 'description': "チェックボックスの詳細",
+ 'shortDescription': "チェックボックス"
+ },
+ 'RADIO': {
+ 'description': "ラジオボタンの詳細",
+ 'shortDescription': "ラジオボタン"
+ },
+ 'SELECT': {
+ 'description': "セレクトリストの詳細",
+ 'shortDescription': "セレクトリスト"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "エラー",
+'newRecordPanelGeneralExceptionMessage': "コードが不正です。 ブックマークレットを確認してもう一度やり直してください。",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "エラー",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "古いバージョンのブックマークレットで生成されたコードです。 ブックマークレットを更新してやり直してください。",
+'newRecordPanelExceptionPanelCloseButtonLabel': "キャンセル",
+'mainPanelDeletingRecordPanelConfirmationTitle': "カード削除中",
+'mainPanelDeleteRecordPanelConfirmationText': "本当に削除しますか?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "はい",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "いいえ",
+'mainPanelDeletingRecordPanelInitialTitle': "カード削除中",
+'mainPanelDeletingRecordPanelInitialText': "---",
+'mainPanelDeletingRecordPanelCompletedText': "完了",
+'deleteRecordPanelCollectRecordDataMessageTitle': "カード削除",
+'deleteRecordPanelCollectRecordDataMessageText': "カードリスト更新中",
+'deleteRecordPanelEncryptUserDataMessageTitle': "カード削除",
+'deleteRecordPanelEncryptUserDataMessageText': "カードヘッダ暗号化",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "カード削除",
+'deleteRecordPanelSendingDataToTheServerMessageText': "送信中",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "カード削除",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "更新中",
+'recordDetailNoRecordSelectedTitle': "カードが選択されていません",
+'recordDetailNoRecordSelectedDescription': "<p>左のリストからカードを選択してください。</p> ",
+'recordDetailLoadingRecordMessage': "データ受信中",
+'recordDetailDecryptingRecordMessage': "データ復元中",
+'recordDetailLoadingRecordVersionMessage': "最新情報を受信中",
+'recordDetailDecryptingRecordVersionMessage': "最新情報を復元中",
+'recordDetailLoadingErrorMessageTitle': "受信エラー",
+'recordDetailNotesLabel': "ノート",
+'recordDetailLabelFieldColumnLabel': "ラベル",
+'recordDetailDataFieldColumnLabel': "データ",
+'recordDetailTypeFieldColumnLabel': "タイプ",
+'recordDetailSavingChangesMessagePanelInitialTitle': "保存中",
+'recordDetailSavingChangesMessagePanelInitialText': "---",
+'recordDetailRemoveFieldButtonLabel': "-",
+'recordDetailAddFieldButtonLabel': "フィールド追加",
+'recordDetailPasswordFieldHelpLabel': "パスワードをコピーするには星マークをクリックして ctrl-C をタイプします",
+'recordDetailPasswordFieldScrambleLabel': "隠す",
+'recordDetailPasswordFieldUnscrambleLabel': "可視化",
+'recordDetailDirectLoginBlockTitle': "ダイレクトログイン",
+'recordDetailNewDirectLoginDescription': "<p>ダイレクトログイン設定</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>オンラインサービスのログイン情報を含んでいますか?</p> <p>ブックマークレットを使ってダイレクトログインを設定しましょう!</p> ",
+'recordDetailDeleteDirectLoginButtonLabel': "-",
+'recordDetailAddNewDirectLoginButtonLabel': "新規ダイレクトログイン追加",
+'recordDetailEditButtonLabel': "編集",
+'recordDetailSaveButtonLabel': "保存",
+'recordDetailCancelButtonLabel': "キャンセル",
+'newRecordTitleLabel': "_新規カード_",
+'newDirectLoginLabelSuffix': "",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "カード保存",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "更新中",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "カード保存",
+'recordSaveChangesPanelEncryptUserDataMessageText': "カードヘッダ暗号化",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "カード保存",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "カードデータ暗号化",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "カード保存",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "バージョンデータ暗号化",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "カード保存",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "カード送信中",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "カード保存",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "更新中",
+'passwordGeneratorPanelTitle': "パスワードジェネレータ",
+'passwordGeneratorPanelOkLabel': "OK",
+'passwordGeneratorPanelCancelLabel': "キャンセル",
+'passwordGeneratorLowercaseLabel': "abc",
+'passwordGeneratorUppercaseLabel': "ABC",
+'passwordGeneratorNumberLabel': "012",
+'passwordGeneratorSymbolLabel': "@#$",
+'passwordGeneratorLengthLabel': "文字数:",
+//'DWRUtilLoadingMessage': "ロード中 ...",
+'comingSoon': "近日登場 ...",
+'panelCollectingEntryopyMessageText': "整頓中",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "はい",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "いいえ",
+'importFormats': {
+ 'CSV': {
+ 'label': "CSV",
+ 'description': "<p>広く普及しているフォーマットです。 いくつかのパスワードマネージャは CSV でのエクスポートに対応しています。</p>"
+ },
+ 'Excel': {
+ 'label': "エクセル",
+ 'description': "<p>マイクロソフトの有名な表計算ソフトです。 エクセルのファイルでパスワードを保存することは広く行われていますがおすすめできません。</p>"
+ },
+ 'KeePass': {
+ 'label': "KeePass",
+ 'description': "<p>パスワードマネージャ KeePass で生成されるテキストファイルです。</p>"
+ },
+ 'PasswordPlus': {
+ 'label': "Password Plus",
+ 'description': "<p>パスワードマネージャ Password Plus で生成される CSV ファイルです。</p>"
+ },
+ 'Roboform': {
+ 'label': "RoboForm",
+ 'description': "<p>パスワードマネージャ Roboform で印刷用に表示される HTML ファイルです。</p>"
+ },
+ 'ClipperzExport': {
+ 'label': "JSON",
+ 'description': "<p>Clipperz で生成されるフォーマットです。 ダイレクトログインを含むすべての情報が含まれます。</p>"
+ }
+},
+'Clipperz_ImportWizard_Title': "JSON インポート",
+'importOptions_clipperz_description': "<p>Clipperz で生成された JSON ファイルをテキストエディタで開きます。 次に下のテキストエリアにファイルの内容をコピーします。</p> ",
+'CSV_ImportWizard_Title': "CSV インポート",
+'importOptions_csv_description_': "<p>CSV ファイルをテキストエディタで開きます。 下のテキストエリアにファイルの内容をコピーします。</p> <p>区切り記号などを選択します。</p> ",
+'Excel_ImportWizard_Title': "エクセルインポート",
+'importOptions_excel_description_': "<p>エクセルでファイルを開いてインポートしたいセルを選択します。 次に下のテキストエリアに選択したセルをコピーします。</p> ",
+'KeePass_ImportWizard_Title': "KeePass インポート",
+'importOptions_keePass_description_': "<p>KeePas で生成されたファイルをテキストエディタで開きます。 次に下のテキストエリアにファイルの内容をコピーします。</p> ",
+'PasswordPlus_ImportWizard_Title': "Password Plus インポート",
+'importOptions_passwordPlus_description': "<p>Password Plus で生成された CSV ファイルをテキストエディタで開きます。 下のテキストエリアにファイルの内容をコピーします。</p> ",
+'RoboForm_ImportWizard_Title': "RoboForm インポート",
+'importOptions_roboForm_description': "<p>RoboForm で生成された HTML ファイルをテキストエディタで開きます。 次に下のテキストエリアにファイルの内容をコピーします。</p> ",
+'importData_parsingDataTitle': "インポート",
+'importData_parsingDataText': "分析中 ...",
+'importData_previewingDataTitle': "インポート",
+'importData_previewingDataText': "変換中 ...",
+'importData_processingDataTitle': "インポート",
+'importData_processingDataText': "カード作成中 ...",
+'ImportWizard': {
+ 'EDIT': "編集",
+ 'PREVIEW': "プレビュー",
+ 'IMPORT': "インポート",
+ 'KEEPASS_SETTINGS': "設定",
+ 'CSV_EDIT': "貼り付け",
+ 'CSV_COLUMNS': "列",
+ 'CSV_HEADER': "ラベル",
+ 'CSV_TITLE': "タイトル",
+ 'CSV_NOTES': "ノート",
+ 'CSV_FIELDS': "タイプ",
+ 'EXCEL_EDIT': "編集"
+},
+'CSV_ImportWizard_Columns': "<p>インポートする列を選択してください。</p> ",
+'CSV_ImportWizard_Header': "<p>最初の行にラベルが含まれている場合、下のチェックボックスをチェックしてください。</p> ",
+'CSV_ImportWizard_Header_Settings_firstRowHeaderLabel': "先頭行をラベルとして利用する",
+'CSV_ImportWizard_Title': "<p>カードのタイトルになる列を選択してください。 (必須)</p>",
+'CSV_ImportWizard_Notes': "<p>ノートに相当する列を選択してください。 (オプション)</p> ",
+'CSV_ImportWizard_Notes_Settings_noSelectionLabel': "ノートは利用できません",
+'CSV_ImportWizard_Fields': "<p>それぞれの列のデータタイプをドロップダウンリストから選択してください。</p> ",
+'CSV_ImportWizard_Fields_MissingLabelWarning': "ラベルがありません",
+'importData_importConfirmation_title': "インポート",
+'importData_importConfirmation_text': "__numberOfRecords__ 枚のカードをインポートしますか?",
+'WELCOME_BACK': "おかえりなさい",
+'currentConnectionText': "あなたの利用 IP アドレスは __ip__, です。 country__, から __operatingSystem__ 版 __browser__ を利用しています。",
+'latestConnectionText': "前回の利用は __elapsedTimeDescription__ (__time__)、IP アドレスは __ip__, でした。 country__ から __operatingSystem__ 版 __browser__ を利用しました。",
+'fullLoginHistoryLinkLabel': "ログイン履歴を詳しく見る",
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "1 か月以上前",
+ 'MORE_THAN_A_WEEK_AGO': "1 週間以上前",
+ 'MORE_THAN_*_WEEKS_AGO': "elapsed__ 週間以上前",
+ 'YESTERDAY': "昨日",
+ '*_DAYS_AGO': "__elapsed__ 日前",
+ 'ABOUT_AN_HOUR_AGO': "約 1 時間前",
+ '*_HOURS_AGO': "__elapsed__ 時間前",
+ 'JUST_A_FEW_MINUTES_AGO': "直前",
+ 'ABOUT_*_MINUTES_AGO': "約 __elapsed__ 分前"
+},
+'unknown_ip': "不明",
+'countries': {
+ '--': "不明",
+ 'AD': "アンドラ",
+ 'AE': "アラブ首長国連邦",
+ 'AF': "アフガニスタン",
+ 'AG': "アンティグアバーブーダ",
+ 'AI': "アングイラ",
+ 'AL': "アルバニア",
+ 'AM': "アルメニア",
+ 'AN': "オランダ アンティル諸島",
+ 'AO': "アンゴラ",
+ 'AP': "その他のアジアパシフィック地域",
+ 'AR': "アルゼンチン",
+ 'AS': "米国領サモア",
+ 'AT': "オーストリア",
+ 'AU': "オーストラリア",
+ 'AW': "アルーバ",
+ 'AX': "アーラント諸島",
+ 'AZ': "アゼルバイジャン",
+ 'BA': "ボスニア・ヘルツェゴビナ",
+ 'BB': "バルバドス",
+ 'BD': "バングラデシュ",
+ 'BE': "ベルギー",
+ 'BF': "ブルキナファソ",
+ 'BG': "ブルガリア",
+ 'BH': "バーレーン",
+ 'BI': "ブルンジ",
+ 'BJ': "ベナン",
+ 'BN': "ブルネイダルサラーム",
+ 'BO': "ボリビア",
+ 'BR': "ブラジル",
+ 'BS': "バハマ",
+ 'BT': "ブータン",
+ 'BW': "ボツワナ",
+ 'BY': "ベラルーシ",
+ 'BZ': "ベリーズ",
+ 'CA': "カナダ",
+ 'CD': "コンゴ民主共和国",
+ 'CF': "中央アフリカ共和国",
+ 'CH': "スイス",
+ 'CI': "コートジボワール",
+ 'CK': "クック諸島",
+ 'CL': "チリ",
+ 'CM': "カメルーン",
+ 'CN': "中国",
+ 'CO': "コロンビア",
+ 'CR': "コスタリカ",
+ 'CS': "セルビア・モンテネグロ",
+ 'CU': "キューバ",
+ 'CY': "キプロス",
+ 'CZ': "チェコ共和国",
+ 'DE': "ドイツ",
+ 'DJ': "ジブチ",
+ 'DK': "デンマーク",
+ 'DO': "ドミニカ共和国",
+ 'DZ': "アルジェリア",
+ 'EC': "エクアドル",
+ 'EE': "エストニア",
+ 'EG': "エジプト",
+ 'ER': "エリトリア",
+ 'ES': "スペイン",
+ 'ET': "エチオピア",
+ 'EU': "欧州連合",
+ 'FI': "フィンランド",
+ 'FJ': "フィジー",
+ 'FM': "ミクロネシア連邦邦国",
+ 'FR': "フランス",
+ 'GA': "ガボン",
+ 'GB': "英国",
+ 'GD': "グラナダ",
+ 'GE': "グルジア",
+ 'GF': "仏領ギアナ",
+ 'GG': "ガーンジー",
+ 'GH': "ガーナ",
+ 'GI': "ジブラルタル",
+ 'GL': "グリーンランド",
+ 'GP': "グアドロープ",
+ 'GR': "ギリシャ",
+ 'GT': "カタロニア",
+ 'GU': "グアム",
+ 'GW': "ギニアビサウ",
+ 'GY': "ガイアナ",
+ 'HK': "香港",
+ 'HN': "ホンデュラス",
+ 'HR': "クロアチア",
+ 'HT': "ハイチ",
+ 'HU': "ハンガリー",
+ 'ID': "インドネシア",
+ 'IE': "アイルランド",
+ 'IL': "イスラエル",
+ 'IM': "マン島",
+ 'IN': "インド",
+ 'IO': "英領インド洋植民地",
+ 'IQ': "イラク",
+ 'IR': "イラン・イスラム共和国",
+ 'IS': "アイスランド",
+ 'IT': "イタリア",
+ 'JE': "ジャージー",
+ 'JO': "ヨルダン",
+ 'JP': "日本",
+ 'KE': "ケニア",
+ 'KG': "キルギスタン",
+ 'KH': "カンボジア",
+ 'KI': "キリバス",
+ 'KN': "セントキッツネヴィス",
+ 'KR': "大韓民国 (韓国)",
+ 'KW': "クウェート",
+ 'KY': "カイマン諸島",
+ 'KZ': "カザフスタン",
+ 'LA': "ラオス人民民主共和国",
+ 'LB': "レバノン",
+ 'LC': "セントルシア",
+ 'LI': "リヒテンシュタイン",
+ 'LK': "スリランカ",
+ 'LR': "リベリア",
+ 'LS': "レソト",
+ 'LT': "リトアニア",
+ 'LU': "ルクセンブルグ",
+ 'LV': "ラトビア",
+ 'LY': "リビア・アラブ・Jamahiriya",
+ 'MA': "モロッコ",
+ 'MC': "モナコ",
+ 'MD': "モルドバ共和国",
+ 'MG': "マダガスカル",
+ 'MH': "マーシャル諸島",
+ 'MK': "マケドニア共和国",
+ 'ML': "マリ",
+ 'MM': "ミャンマー",
+ 'MN': "モンゴル",
+ 'MO': "マカオ",
+ 'MP': "北マリアナ諸島",
+ 'MR': "モーリタニア",
+ 'MT': "マルタ",
+ 'MU': "モーリシャス",
+ 'MV': "モルジヴ",
+ 'MW': "マラウイ",
+ 'MX': "メキシコ",
+ 'MY': "マレーシア",
+ 'MZ': "モザンビーク",
+ 'NA': "ナミビア",
+ 'NC': "ニューカレドニア",
+ 'NF': "ノーフォーク諸島",
+ 'NG': "ナイジェリア",
+ 'NI': "ニカラグア",
+ 'NL': "オランダ",
+ 'NO': "ノルウェー",
+ 'NP': "ネパール",
+ 'NR': "ナウル",
+ 'NU': "ニウエ",
+ 'NZ': "ニュージーランド",
+ 'OM': "オマーン",
+ 'PA': "パナマ",
+ 'PE': "ペルー",
+ 'PF': "仏領ポリネシア",
+ 'PG': "パプアニューギニア",
+ 'PH': "フィリピン",
+ 'PK': "パキスタン",
+ 'PL': "ポーランド",
+ 'PR': "プエルトリコ",
+ 'PS': "パレスチナ占領地区",
+ 'PT': "ポルトガル",
+ 'PW': "パラオ",
+ 'PY': "パラグアイ",
+ 'QA': "カタール",
+ 'RO': "ルーマニア",
+ 'RS': "セルビア",
+ 'RU': "ロシア連邦",
+ 'RW': "ルワンダ",
+ 'SA': "サウジアラビア",
+ 'SB': "ソロモン諸島",
+ 'SC': "セイシェル",
+ 'SD': "スーダン",
+ 'SE': "スウェーデン",
+ 'SG': "シンガポール",
+ 'SI': "スロベニア",
+ 'SK': "スロバキア",
+ 'SL': "シエラレオネ",
+ 'SM': "サンマリノ",
+ 'SN': "セネガル",
+ 'SR': "スリナム",
+ 'SV': "エルサルバドル",
+ 'SY': "シリアアラブ共和国",
+ 'SZ': "スワジランド",
+ 'TC': "タークスアンドケーコス諸島",
+ 'TG': "トーゴ",
+ 'TH': "タイ",
+ 'TJ': "タジキスタン",
+ 'TM': "トルクメニスタン",
+ 'TN': "チュニジア",
+ 'TO': "トンガ",
+ 'TR': "トルコ",
+ 'TT': "トリニダードトバコ",
+ 'TV': "ツヴァル",
+ 'TW': "中国領・台湾",
+ 'TZ': "タニザニア連合共和国",
+ 'UA': "ウクライナ",
+ 'UG': "ウガンダ",
+ 'US': "アメリカ合衆国",
+ 'UY': "ウルグアイ",
+ 'UZ': "ウズベキスタン",
+ 'VA': "聖庁 (バチカン市国)",
+ 'VE': "ベネズェラ",
+ 'VG': "英国ヴァージン諸島",
+ 'VI': "米国ヴァージン諸島",
+ 'VN': "ベトナム",
+ 'VU': "バヌアツ",
+ 'WF': "ワリーエフトゥーナ諸島",
+ 'WS': "サモア",
+ 'YE': "イエメン",
+ 'ZA': "南アフリカ",
+ 'ZM': "ザンビア",
+ 'ZW': "ジンバブエ",
+ 'ZZ': "Reserved"
+},
+'browsers': {
+ 'UNKNOWN': "不明",
+ 'MSIE': "インターネットエクスプローラー",
+ 'FIREFOX': "Firefox",
+ 'OPERA': "Opera",
+ 'SAFARI': "Safari",
+ 'OMNIWEB': "OmniWeb",
+ 'CAMINO': "Camino"
+},
+'operatingSystems': {
+ 'UNKNOWN': "不明",
+ 'WINDOWS': "ウィンドウズ",
+ 'MAC': "Mac",
+ 'LINUX': "Linux",
+ 'IPHONE': "iPhone",
+ 'MOBILE': "携帯電話",
+ 'OPENBSD': "OpenBSD",
+ 'FREEBSD': "FreeBSD",
+ 'NETBSD': "NetBSD"
+},
+'calendarStrings': {
+ 'months': {
+ '0': "1 月",
+ '1': "2 月",
+ '2': "3 月",
+ '3': "4 月",
+ '4': "5",
+ '5': "6 月",
+ '6': "7 月",
+ '7': "8 月",
+ '8': "9 月",
+ '9': "10 月",
+ '10': "11 月",
+ '11': "12 月"
+ },
+ 'shortMonths': {
+ '0': "1",
+ '1': "2",
+ '2': "3",
+ '3': "4",
+ '4': "5",
+ '5': "6",
+ '6': "7",
+ '7': "8",
+ '8': "9",
+ '9': "10",
+ '10': "11",
+ '11': "12"
+ },
+ 'days': {
+ '0': "日曜日",
+ '1': "月曜日",
+ '2': "火曜日",
+ '3': "水曜日",
+ '4': "木曜日",
+ '5': "金曜日",
+ '6': "土曜日"
+ },
+ 'shortDays': {
+ '0': "日",
+ '1': "月",
+ '2': "火",
+ '3': "水",
+ '4': "木",
+ '5': "金",
+ '6': "土"
+ },
+ 'veryShortDays': {
+ '0': "月",
+ '1': "月",
+ '2': "日",
+ '3': "金",
+ '4': "木",
+ '5': "金",
+ '6': "水"
+ },
+ 'amDesignation': "土",
+ 'pmDesignation': "午後"
+},
+'fullDate_format': "l, F d, Y H:i:s",
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js
new file mode 100644
index 0000000..db6c2f6
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-BR.js
@@ -0,0 +1,478 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+Clipperz.PM.Strings.Languages['pt-BR'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+'clipperzServiceDescriptionConfig': "<h2>Guarde com você!</h2> <ul> <li> <h3>Clipperz é:</h3> <ul> <li> <p>um simples e seguro gerenciador de senhas</p> </li> <li> <p>uma efetiva solução com uma única assinatura</p> </li> <li> <p>um cofre digital para suas informações confidenciais</p> </li> </ul> </li> <li> <h3>Com Clipperz você pode:</h3> <ul> <li> <p>guardar e gerenciar suas senhas e credenciais online</p> </li> <li> <p>logar em seus serviços web sem precisar entrar com nenhum nome de usuário ou senha</p> </li> <li> <p>proteger todos os seus dados sensíveis: códigos de alarme, PINs, números de cartão de crédito, &hellip;</p> </li> <li> <p>compartilhar segredos com membros da família e associados (em breve)</p> </li> </ul> </li> <li> <h3>Clipperz proporciona:</h3> <ul> <li> <p>anonimato completo e gratuito</p> </li> <li> <p>acesso a qualquer hora em qualquer computador</p> </li> <li> <p>sem software ou download e nada que instalar</p> </li> <li> <p>evite guardar seus segredos em seu PC ou papel</p> </li> </ul> </li> <li> <h3>Segurança Clipperz:</h3> <ul> <li> <p>seus segredos são codificados localmente por seu navegador antes de ser enviado para Clipperz</p> </li> <li> <p>a chave de codificação é uma senha que só você conhece</p> </li> <li> <p>Clipperz armazena apenas seus dados confidenciais codificados, nunca acessando os dados originais</p> </li> <li> <p>Clipperz é construído a partir de esquemas de codificação padrão, ou seja, nada é exclusivo ou caseiro</p> </li> <li> <p>você pode revisar o código a qualquer momento, mas você não precisa conhecer nada sobre criptograia para ser um usuário feliz!</p> </li> </ul> </li> <li> <a href=\"http://www.clipperz.com\" target=\"_blank\">Saiba mais</a> </li> </ul> ",
+'loginFormTitle': "entre sua conta Clipperz",
+'loginFormUsernameLabel': "nome do usuário",
+'loginFormPassphraseLabel': "frase chave",
+'loginFormDontHaveAnAccountLabel': "não tem uma conta?",
+'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>.",
+'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",
+'changePasswordFormProgressDialogConnectedMessageTitle': "Conectado",
+'changePasswordFormProgressDialogConnectedMessageText': "Concluído",
+'changePasswordFormProgressDialogErrorMessageTitle': "Erro",
+'changePasswordFormProgressDialogErrorMessageText': "Mudança de credenciais falhou!",
+'changeCredentialsPanelEncryptingDataMessageTitle': "Alterando sua frase chave",
+'changeCredentialsPanelEncryptingDataMessageText': "Codificação local de cabeçalho de cartões",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Alterando sua frase chave",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Atualizando suas credenciais",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Alterando sua frase chave",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Enviando suas credenciais codificadas para Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "Alterando sua frase chave",
+'changeCredentialsPanelDoneMessageText': "Concluído",
+'manageOTPTabLabel': "Gerenciar suas frases chaves descartáveis",
+'manageOTPTabTitle': "Gerenciar suas frases chaves descartáveis",
+'manageOTPTabDescription': "<p>Uma frase chave descartável funciona como uma frase chave normal, mas só pode ser utilizada uma única vez.</p> <p>Se a mesma frase chave for utilizada novamente num próximo login, ela será rejeitada e o login não irá ocorrer.</p> <p>Imediatamente após um login com sucesso, sua frase chave descartável será apagada para evitar logins fraudulentos.</p> <p>Frases chaves descartáveis são uma excelente opção se você está preocupado com keyloggers ou spywares que podem estar coletando seus dados em determinadas máquinas.</p> <p> <b>É recomendável que você utilize frases chaves descartáveis sempre que utilizar terminais públicos como Internet cafés e bibliotecas.</b> </p> ",
+'oneTimePasswordReadOnlyMessage': "<h6>Desculpe!</h6> <p>Você não pode gerenciar sua frase chave descartável quando usando a versão offline do Clipperz.</p> ",
+'oneTimePasswordLoadingMessage': "<h6>Carregando informação</h6> <p>Por favor, aguarde ...</p> ",
+'oneTimePasswordNoPasswordAvailable': "<h6>Nenhuma frase chave descartável disponível</h6> <p>Clique o botão “Novo” acima para adicionar uma frase chave descartável em sua conta.</p> ",
+'createNewOTPButtonLabel': "Novo",
+'deleteOTPButtonLabel': "Apagar",
+'printOTPButtonLabel': "Imprimir",
+'disabledOneTimePassword_warning': "desativada",
+'oneTimePasswordSelectionLink_selectLabel': "Selecionar:",
+'oneTimePasswordSelectionLink_all': "tudo",
+'oneTimePasswordSelectionLink_none': "nenhum",
+'oneTimePasswordSelectionLink_used': "usado",
+'oneTimePasswordSelectionLink_unused': "não usado",
+'saveOTP_encryptUserDataTitle': "Salvando a frase chave descartável",
+'saveOTP_encryptUserDataText': "Processando novas credenciais descartáveis ...",
+'saveOTP_encryptOTPDataTitle': "Salvando a frase chave descartável",
+'saveOTP_encryptOTPDataText': "Codificação local da informação de autenticação ...",
+'saveOTP_sendingDataTitle': "Salvando a frase chave descartável",
+'saveOTP_sendingDataText': "Enviando informação de autenticação para o servidor ...",
+'saveOTP_updatingInterfaceTitle': "Salvando a frase chave descartável",
+'saveOTP_updatingInterfaceText': "Atualizando interface ...",
+'accountPreferencesLabel': "Preferências",
+'accountPreferencesTabTitle': "Preferências",
+'accountPreferencesLanguageTitle': "Seleção de idioma",
+'accountPreferencesLanguageDescription': "<p>Escolha seu idioma preferido da lista abaixo.</p> ",
+'showDonationReminderPanelTitle': "Lembretes de doação",
+'showDonationReminderPanelDescription': "<p>Mostrar lembretes de doação</p> ",
+'saveUserPreferencesFormSubmitLabel': "Salvar",
+'cancelUserPreferencesFormSubmitLabel': "Cancelar",
+'accountPreferencesSavingPanelTitle_Step1': "Salvando preferências",
+'accountPreferencesSavingPanelText_Step1': "Codificação local de suas preferências",
+'accountPreferencesSavingPanelTitle_Step2': "Salvando preferências",
+'accountPreferencesSavingPanelText_Step2': "Enviando informação codificada para o servidor",
+'accountLoginHistoryLabel': "Histórico de conexão",
+'loginHistoryTabTitle': "Histórico de conexão",
+'loginHistoryReadOnlyMessage': "<h6>Desculpe!</h6> <p>Seu histórico de conexão não está disponível quando usando uma versão offline do Clipperz.</p> ",
+'loginHistoryLoadingMessage': "<h6>Carregando informação</h6> <p>Por favor, aguarde ...</p> ",
+'loginHistoryLoadedMessageConfig': "<h6>Suas 10 últimas conexões</h6> <p> </p> ",
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "data",
+'loginHistoryCurrentSessionText': "sessão atual",
+'loginHistoryReloadButtonLabel': "Recarregar histórico de conexão",
+'deleteAccountTabLabel': "Apagar sua conta",
+'deleteAccountTabTitle': "Apagar sua conta",
+'deleteAccountFormUsernameLabel': "nome de usuário",
+'deleteAccountFormPassphraseLabel': "frase chave",
+'deleteAccountFormSafetyCheckboxLabel': "Eu compreendo que toda minha informação será apagada e que esta ação é irreversível.",
+'deleteAccountFormSubmitLabel': "Apagar minha conta",
+'deleteAccountFormWrongUsernameWarning': "Nome de usuário errado",
+'deleteAccountFormWrongPassphraseWarning': "Frase chave errada",
+'deleteAccountFormSafetyCheckWarning': "Por favor leia e confira os campos abaixo.",
+'accountPanelDeletingAccountPanelConfirmationTitle': "ATENÇÃO",
+'accountPanelDeleteAccountPanelConfirmationText': "Você tem certeza que quer apagar esta conta?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "Sim",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "Não",
+'offlineCopyTabLabel': "Cópia offline",
+'offlineCopyTabTitle': "Cópia offline",
+'offlineCopyTabDescription': "<p>Com apenas um click você pode passar toda sua informação codificada dos servidores Clipperz para seu hard disk e criar uma versão read-only offline do Clipperz para ser utilizada quando você não estiver conectado na Internet.</p> <p>Essa versão read-only é tão segura quanto a versão online e não vai expor suas informações a riscos maiores já que ambas tem a mesma arquitetura de código e segurança.</p> <ol> <li> <p>Clique no link abaixo para iniciar o download.</p> </li> <li> <p>O navegador vai perguntar o que fazer com o arquivo “Clipperz_YYYYMMDD.html”. Grave-o em seu hard disk.</p> </li> <li> <p>Clique duas vezes no arquivo baixado para abrir a versão offline em seu navegador.</p> </li> <li> <p>Entre sua frase chave e nome de usuário como sempre faz.</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "Baixar",
+'offlineCopyDownloadWarningConfig': "<h4> <a href=\"#\" id=\"offlineCopyDownloadWarningLink\">Atualize sua “cópia offline”!</a> </h4> <p>Vocie recentemente criou ou modificou um ou mais cartões, seria inteligente baixar uma nova “cópia offline”.</p> ",
+'sharingTabLabel': "Compartilhar",
+'sharingTabTitle': "Compartilhar",
+'sharingTabDescriptionConfig': "<p>Frequentemente uma informação confidencial precisa ser compartilhada com uma ou mais pessoas.</p> <p>Isso pode ser tão simples quanto permitir o acesso de seus colegas ao seu voice mail quando você está fora do escritório, ou tão complicado quanto permitir que seus herdeiros acessem seu caixa num banco quando você morrer.</p> <p>Clipperz pode fazer o processo de compartilhamento simples e seguro.</p> <p> </p> <p> <b>Em breve ...</b> </p> ",
+'importTabLabel': "Importar",
+'importTabTitle': "Importar",
+'importTabDescription': "<p> <b>Em breve ...</b> <p> ",
+'printingTabLabel': "Exportar",
+'printingTabTitle': "Exportar",
+'printingTabDescription': "<p> <b>Versão para impressão</b> </p> <p>Clicando no link abaixo você abre uma nova janela contendo todos os seus cartões em formato de impressão.</p> <p>Se você vai impriir para backup, considere a opção mais segura criando uma “cópia offline”.</p> ",
+'printingLinkLabel': "Versão para impressão",
+'contactsTabLabel': "Contatos",
+'contactsTabTitle': "Contatos",
+'passwordGeneratorTabLabel': "Gerador de senhas",
+'passwordGeneratorTabTitle': "Gerador de senhas",
+'passwordGeneratorTabButtonLabel': "Gerar senha",
+'bookmarkletTabLabel': "Bookmarklet",
+'bookmarkletTabTitle': "Bookmarklet",
+'bookmarkletTabDescription': "<p>Um bookmarklet é uma ferramenta “one-click” que pode executar diversas tarefas úteis. Pode ser salva e utilizada como uma página web preferida normal.</p> <p>Os bookmarklet Clipperz vão ajudar você a a rapidamente criar novos cartões e novos logins diretos a partir dos cartões existentes.</p> <p> <b>Por favor, note que o bookmarklet não inclui nenhuma informação relacionada à sua conta (e.g. seu nome de usuário ou frase chave), o bookmarklet é um ferramenta contendo o mesmo código para todos ois usuários Clipperz.</b> </p> <h3>Como instalar o bookmarlet</h3> <h5>Firefox, Camino, Opera, Safari</h5> <ol> <li> <p>Assegure-se que a “Barra de Bookmarks” está visível, selecionando “View > Toolbars > Bookmarks”, ou menu similar no menu do navegador</p> </li> <li> <p>Arraste o link “Adicionar ao Clipperz” abaixo para a barra de bookmark.</p> </li> </ol> <h5>Internet Explorer</h5> <ol> <li> <p>Assegure-se que o barra de “Links” está visível selecionando “View > Toolbar > Links” no menu do navegador.</p> </li> <li> <p>Clique com o botão direito no link “Adicionar ao Clipperz” abaixo.</p> </li> <li> <p>Select “Selecione “Add to favorites” no menu contextual.</p> </li> <li> <p>Clique “Yes” para qualquer mensagem de segurança que surgir em pop-up.</p> </li> <li> <p>Abra o folder “Links” e clique “OK”.</p> </li> </ol> ",
+'bookmarkletTabBookmarkletTitle': "Adicionar ao Clipperz",
+'bookmarkletTabInstructions': "<h3>Como criar um novo cartão para acessar diretamente um serviço online</h3> <ol> <li> <p>Abra a página web onde o formulário de login está. (é a página onde você usualmente entra com suas credenciais)</p> </li> <li> <p>Dispare a preferência clicando nela: um pop-up vai aparecer sobre a página.</p> </li> <li> <p>Copie para o clipboard o conteúdo da área de texto do pop-up. (ctrl-C)</p> </li> <li> <p>Entre em sua conta Clipperz e clique no botão <b>Adicionar novo cartão</b>.</p> </li> <li> <p>Selecione o template de \"Login Direto\" e cole o conteúdo do clipboard para a grande área de texto do formulário. (ctrl-V)</p> </li> <li> <p>Pressione o botão <b>Criar</b>, reveja os detalhes e clique <b>Save</b>.</p> </li> </ol> <h3>Como adicionar login direto a um cartão existente</h3> <ol> <li> <p>Idem acima.</p> </li> <li> <p>Idem acima.</p> </li> <li> <p>Idem acima.</p> </li> <li> <p>Entre em sua conta Clipperz e selecione o cartão contendo as credenciais para o serviço web que você visitou e clique no botão <b>Editar</b>.</p> </li> <li> <p>Cole o conteúdo do clipboard para a grande área de texto da sessão “Logins diretos”. (ctrl-V)</p> </li> <li> <p>Pressione o botão <b>Adicionar login direto</b>, reveja os detalhes e clique <b>Salvar</b>.</p> </li> </ol> <p> </p> <p>Mais informações sobre as preferências estão <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">disponíveis aqui</a>.</p> ",
+'mainPanelDirectLoginBlockLabel': "Logins diretos",
+'directLinkReferenceShowButtonLabel': "mostrar",
+'mainPanelDirectLoginBlockDescription': "<p>Adicionar “logins diretos” para entrar em páginas web sem ter que digitar nome de usuário e senhas!</p> <p>“Logins diretos” ampliam a segurança de sus senha já que você pode:</p> <ul> <li> <p>utilizar senhas mais complexas;</p> </li> <li> <p>nunca re-utilizar a mesma senha fácil-de-lembrar.</p> </li> </ul> <p>Configuração simples e rápida com os <b>bookmarklet</b> Clipperz.</p> <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Saiba mais sobre “logins diretos”</a> ",
+'mainPanelRecordsBlockLabel': "Cartões",
+'mainPanelAddRecordButtonLabel': "Adicionar novo cartão",
+'mainPanelRemoveRecordButtonLabel': "Apagar cartão",
+'mainPanelRecordFilterBlockAllLabel': "todos",
+'mainPanelRecordFilterBlockTagsLabel': "tags",
+'mainPanelRecordFilterBlockSearchLabel': "buscar",
+'recordDetailNoRecordAtAllTitle': "Bem-vindo ao Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>Inicie criando cartões para sua conta.</h5> <p>Cartões são formulários simples e flexíveis onde você guarda senhas e outras informações confidenciais.</p> <p>Cartões podem conter credenciais de login a sites, a combinação do seu cadeado da bicicleta, detalhes do seu cartão de crédito, ...</p> <h5>Não esqueça o bookmarklet</h5> <p>Antes de começar, instale o bookmarklet “Adicionar ao Clipperz”: ele vai tornar o processo de criar cartões mais fácil e divertido.</p> <p> </p> <p>Depois, apenas click no botão <b>Adicionar novo cartão</b> e aproveite sua conta Clipperz.</p> <p> </p> <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">Saiba mais sobre criar e gerenciar cartões</a> ",
+'newRecordWizardTitleBox': "<h5>Por favor selecione um template</h5> <p>Cartões são formulários simples e flexíveis onde você pode arquivar suas senhas ou outras informações confidenciais.</p> <p>Comece escolhendo um dos templates abaixo. Você poderá customizar seus cartões mais tarde, adicionando e removendo campos.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "Login direto",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>Coloque abaixo o código de configuração gerado pelo bookmarklet Clipperz.</p> <p>Um novo cartão completo com login direto para sua conta web será criado.</p> ",
+'newRecordWizardCreateButtonLabel': "Criar",
+'newRecordWizardCancelButtonLabel': "Cancelar",
+'donateSplashPanelTitle': "Apoie Clipperz, faça uma doação hoje!",
+'donateSplashPanelDescription': "<p>Algumas boas razões para doar:</p> <ul> <li> <p>apoie o desenvolvimento de novas funcionalidades</p> </li> <li> <p>mantenha Clipperz gratuito</p> </li> <li> <p>mostrar apreciação por trabalho duro</p> </li> </ul> <p>Para qualquer informação adicional, por favor visite nossa <a href=\"http://www.clipperz.com/donations\" target=\"_blank\">página de Doações</a>.</p> <p> <b>Pronto para doar?</b> </p> ",
+'donateCloseButtonLabel': "Não ainda",
+'donateDonateButtonLabel': "Sim",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "Senha web",
+ 'description': "<p>Um cartão simples para arquivar credenciais de login para seus serviços online.</p> ",
+ 'fields': {
+ 'URL': "Endereço web",
+ 'TXT': "Nome de usuário ou email",
+ 'PWD': "Senha"
+ }
+ },
+ 'BankAccount': {
+ 'title': "Conta bancária",
+ 'description': "<p>Arquive com segurança o número de sua conta corrente e suas credenciais de online banking.</p> ",
+ 'fields': {
+ 'TXT': "Banco",
+ 'TXT': "Número da conta",
+ 'URL': "Website do banco",
+ 'TXT': "ID de online banking",
+ 'PWD': "Senha de online banking"
+ }
+ },
+ 'CreditCard': {
+ 'title': "Cartão de crédito",
+ 'description': "<p>Número do cartão, validade, CVV2 e PIN sempre disponíveis no Clipperz</p> ",
+ 'fields': {
+ 'TXT': "Tipo (Visa, AmEx, ...)",
+ 'TXT': "Número",
+ 'TXT': "Nome do proprietário",
+ 'TXT': "Prazo de validade",
+ 'TXT': "CVV2",
+ 'PWD': "PIN",
+ 'URL': "Website do cartão",
+ 'TXT': "Nome do usuário",
+ 'PWD': "Senha"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "Agenda de endereços",
+ 'description': "<p>Clipperz pode também funcionar como sua agenda de endereços particular. Use esse template para facilmente adicionar novas entradas.</p> ",
+ 'fields': {
+ 'TXT': "Nome",
+ 'TXT': "Email",
+ 'TXT': "Fone",
+ 'TXT': "Mobile",
+ 'ADDR': "Endereço"
+ }
+ },
+ 'Custom': {
+ 'title': "Cartão customizado",
+ 'description': "<p>Não importa o tipo de informação confidencial você precisa proteger, crie um cartão customizado para sua necessidade.</p> ",
+ 'fields': {
+ 'TXT': "Label 1",
+ 'TXT': "Label 2",
+ 'TXT': "Label 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field",
+ 'shortDescription': "texto"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "senha"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "endereço web"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "data"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "endereço"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "select"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "Erro",
+'newRecordPanelGeneralExceptionMessage': "O texto de configuração não é válido. Certifique-se do texto no pop-up de bookmarklet e tente novamente.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Erro",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "O texto de configuração foi gerado por uma velha versão de bookmarklet. Por favor, atualize seus preferidos e tente novamente.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Cancelar",
+'mainPanelDeletingRecordPanelConfirmationTitle': "Apagando o cartão selecionado",
+'mainPanelDeleteRecordPanelConfirmationText': "Você quer mesmo apagar o cartão selecionado?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "Sim",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "Não",
+'mainPanelDeletingRecordPanelInitialTitle': "Apagando o cartão selecionado",
+'mainPanelDeletingRecordPanelCompletedText': "Concluído",
+'deleteRecordPanelCollectRecordDataMessageTitle': "Apagar cartão",
+'deleteRecordPanelCollectRecordDataMessageText': "Atualizando lista de cartões",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Apagar cartão",
+'deleteRecordPanelEncryptUserDataMessageText': "Codificação local de cabeçalhos de cartão",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Apagar cartão",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Enviando os cabeçalhos de cartão codificados para Clipperz",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Apagar cartão",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Atualizando a interface",
+'recordDetailNoRecordSelectedTitle': "Nenhum cartão selecionado",
+'recordDetailNoRecordSelectedDescription': "<p>Por favor selecione um cartão da lista na esquerda.</p> ",
+'recordDetailLoadingRecordMessage': "Baixando cartão codificados do Clipperz",
+'recordDetailDecryptingRecordMessage': "Descrição local dos dados do cartão",
+'recordDetailLoadingRecordVersionMessage': "Baixando a versão mais recente do cartão",
+'recordDetailDecryptingRecordVersionMessage': "Descrição local da versão mais recente",
+'recordDetailLoadingErrorMessageTitle': "Erro enquanto baixando o cartão",
+'recordDetailNotesLabel': "Notas",
+'recordDetailLabelFieldColumnLabel': "Legenda do campo",
+'recordDetailDataFieldColumnLabel': "Dados do campo",
+'recordDetailTypeFieldColumnLabel': "Tipo",
+'recordDetailSavingChangesMessagePanelInitialTitle': "Salvando cartão",
+'recordDetailAddFieldButtonLabel': "Adicionar novo campo",
+'recordDetailPasswordFieldHelpLabel': "para copiar a senha para o clipboard clique nas estrelas e em seguida Ctrl-C",
+'recordDetailPasswordFieldScrambleLabel': "misturar",
+'recordDetailPasswordFieldUnscrambleLabel': "mostrar",
+'recordDetailDirectLoginBlockTitle': "Logins diretos",
+'recordDetailNewDirectLoginDescription': "<p>Configuração de login direto</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescriptionConfig': "<p>Este cartão contém credenciais para acessar um serviço online?</p> <p>Use o bookmarklet para configurar um “login direto” desde o Clipperz com apenas um click!</p> ",
+'recordDetailAddNewDirectLoginButtonLabel': "Adicionar novo login direto",
+'recordDetailEditButtonLabel': "Editar",
+'recordDetailSaveButtonLabel': "Salvar",
+'recordDetailCancelButtonLabel': "Cancelar",
+'newRecordTitleLabel': "_novo cartão_",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Salvar cartão",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Subindo cabeçalhos de cartão",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Salvar cartão",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Codificação local do cabeçalho do cartão",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Salvar cartão",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Codificação local da informação do cartão",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Salvar cartão",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Codificação local da informação de versão do cartão",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Salvar cartão",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Subindo o cabeçalho do cartão codificado para Clipperz",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Salvar cartão",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Atualizando a interface",
+'passwordGeneratorPanelTitle': "Gerador de senhas",
+'passwordGeneratorPanelOkLabel': "Ok",
+'passwordGeneratorPanelCancelLabel': "Cancelar",
+'passwordGeneratorLengthLabel': "compr.:",
+//'DWRUtilLoadingMessage': "Carregando ...",
+'comingSoon': "em breve ...",
+'panelCollectingEntryopyMessageText': "Coletando entropia",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "Sim",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "Não",
+'WELCOME_BACK': "Welcome back!",
+'currentConnectionText': "Você está conectado do ip&nbsp;__ip__, aparentemente desde __country__, usando __browser__ num __operatingSystem__.",
+'latestConnectionText': "Sua úlitima conexão foi __elapsedTimeDescription__ (__time__) do ip&nbsp;__ip__, aparentemente desde __country__, usando __browser__ num __operatingSystem__.",
+'fullLoginHistoryLinkLabel': "mostrar o histórico de logins completos",
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "mais de um mês atrás",
+ 'MORE_THAN_A_WEEK_AGO': "mais de uma semana atrás",
+ 'MORE_THAN_*_WEEKS_AGO': "mais de __elapsed__ semanas atrás",
+ 'YESTERDAY': "ontem",
+ '*_DAYS_AGO': "__elapsed__ dias atrás",
+ 'ABOUT_AN_HOUR_AGO': "cerca de uma hora atrás",
+ '*_HOURS_AGO': "__elapsed__ horas atrás",
+ 'JUST_A_FEW_MINUTES_AGO': "apenas alguns minutos atrás",
+ 'ABOUT_*_MINUTES_AGO': "cerca de __elapsed__ minutos atrás"
+},
+'unknown_ip': "desconhecido",
+'calendarStrings': {
+ 'months': {
+ '0': "Janeiro",
+ '1': "Fevereiro",
+ '2': "Março",
+ '3': "Abril",
+ '4': "Maio",
+ '5': "Junho",
+ '6': "Julho",
+ '7': "Agosto",
+ '8': "Setembro",
+ '9': "Outubro",
+ '10': "Novembro",
+ '11': "Dezembro"
+ },
+ 'shortMonths': {
+ '0': "Jan",
+ '1': "Fev",
+ '2': "Mar",
+ '3': "Abr",
+ '4': "Mai",
+ '5': "Jun",
+ '6': "Jul",
+ '7': "Ago",
+ '8': "Set",
+ '9': "Out",
+ '10': "Nov",
+ '11': "Dez"
+ },
+ 'days': {
+ '0': "Domingo",
+ '1': "Segunda-feira",
+ '2': "Terça-feira",
+ '3': "Quarta-feira",
+ '4': "Quinta-feira",
+ '5': "Sexta-feira",
+ '6': "Sábado"
+ },
+ 'shortDays': {
+ '0': "Dom",
+ '1': "Seg",
+ '2': "Ter",
+ '3': "Qua",
+ '4': "Quin",
+ '5': "Sex",
+ '6': "Sab"
+ },
+ 'veryShortDays': {
+ '0': "Do",
+ '1': "Se",
+ '2': "Te",
+ '3': "Qa",
+ '4': "Qi",
+ '5': "Se",
+ '6': "Sa"
+ },
+ 'amDesignation': "am",
+ 'pmDesignation': "pm"
+},
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-PT.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-PT.js
new file mode 100644
index 0000000..5284683
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_pt-PT.js
@@ -0,0 +1,42 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+//=============================================================================
+//
+// P O R T U G U Ê S ( pt_PT )
+//
+//=============================================================================
+
+Clipperz.PM.Strings.Languages['pt-pt'] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['pt-br'], {
+
+
+
+ //-------------------------------------------------------------------------
+ __syntaxFix__: "syntax fix"
+});
+
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js
new file mode 100644
index 0000000..41c904f
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_ru-RU.js
@@ -0,0 +1,440 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+Clipperz.PM.Strings.Languages['ru-RU'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+'clipperzServiceDescription': "<h2>Держи при себе!</h2> <ul> <li> <h3>Clipperz - это:</h3> <ul> <li> <p>безопасный и простой менеджер паролей</p> </li> <li> <p>эффективное решение для единой регистрации</p> </li> <li> <p>цифровое хранилище Ваших конфидециальных данных</p> </li> </ul> </li> <li>
+ <h3>C помошью Clipperz Вы можете:</h3> <ul>
+ <li> <p>хранить и управлять Вашими паролями</p> </li> <li> <p>входить в любые веб-сервисы без ввода логина и пароля</p> </li> <li> <p>защитить все важные данные: коды охранной сигнализации, ПИНы, номера кредитных кард, ...</p> </li> <li> <p>открыть доступ Вашим членам семьи, друзьям, коллегам</p> </li> </ul> </li> <li>
+ <h3>Преимущества Clipperz:</h3> <ul>
+ <li> <p>бесплатный и абсолютно анонимный</p> </li> <li> <p>доступен в любое время и с любого компьютера</p> </li> <li> <p>не нужно ничего устанавливать</p> </li> <li> <p>не надо хранить секреты на компьютере или бумаге</p> </li> </ul> </li> <li>
+ <h3>Безопасность Clipperz:</h3> <ul>
+ <li> <p>все данные перед отправкой в Clipperz шифруются в браузере</p> </li> <li> <p>секретный ключ - это фраза, которую знаете только Вы</p> </li> <li> <p>Clipperz управляет важными данными в зашифрованном виде и никогда не получит доступ к ним в открытом виде</p> </li> <li> <p>Clipperz основан на стандартных криптографических протоколах: без каких-либо самоделок</p> </li> <li> <p>Вы можете просмотреть исходный код, но Вам ничего не надо знать о криптографии, чтобы быть просто пользоваться</p> </li> </ul> </li> <li>
+ <a href=\"http://www.clipperz.com\" target=\"_blank\">Подробнее</a> </li> </ul> ",
+'loginFormTitle': "войти под Вашим аккаунтом Clipperz",
+'loginFormUsernameLabel': "имя пользователя",
+'loginFormPassphraseLabel': "ключевая фраза",
+'loginFormDontHaveAnAccountLabel': "у вас еще нет аккаунта?",
+'loginFormCreateOneLabel': "создать",
+'loginFormForgotYourCredentialsLabel': "забыли пароль?",
+'loginFormAarghThatsBadLabel': "о! это плохо!",
+'loginFormAfraidOfMaliciousScriptsLabel': "опасаетесь вредоносных скриптов?",
+'loginFormVerifyTheCodeLabel': "проверить код",
+'loginFormButtonLabel': "Войти",
+'loginFormOneTimePasswordCheckboxLabel': "использовать одноразовую ключевую фразу",
+'loginPanelSwithLanguageDescription': "<h5>Переключиться на Ваш язык</h5> ",
+'browserCompatibilityDescription': "<p>Лучше работать с Clipperz в Firefox. Однако Clipperz хорошо совместим с 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>.",
+'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': "Соединено",
+'changePasswordFormProgressDialogConnectedMessageText': "Выполнено",
+'changePasswordFormProgressDialogErrorMessageTitle': "Ошибка",
+'changePasswordFormProgressDialogErrorMessageText': "Ошибка изменения учетной записи!",
+'changeCredentialsPanelEncryptingDataMessageTitle': "Изменение ключевой фразы",
+'changeCredentialsPanelEncryptingDataMessageText': "Шифрование заголовков карточек",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "Изменение ключевой фразы",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "Обновление учетной записи",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "Изменение ключевой фразы",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "Загрузка данных учетной записи в Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "Изменение ключевой фразы",
+'changeCredentialsPanelDoneMessageText': "Выполнено",
+'manageOTPTabLabel': "Управление одноразовыми ключевыми фразами",
+'manageOTPTabTitle': "Управление одноразовыми ключевыми фразами",
+'manageOTPTabDescription': "<p>Одноразовый пароль работает, как Ваша обычная ключевая фраза, но может быть использована только один раз.</p> <p>Если один и тот же пароль будет использоваться снова на следующих этапах, она будет отклонен и процедура входа завершится неудачно.</p> <p>Сразу после входа одноразовый пароль будет удален, чтобы предовратить любую несанкционированную попытку доступа.</p> <p>Одноразовые пароли - удачный выбор для тех, кто обеспокоен кейлоггерами или spyware, которые могут собирать информ.</p> <p> <b>Строго рекомендуется использовать одноразовые пароли для доступа к Clipperz с чужих компьютеров, из интернет-кафе и библиотек.</b> </p> ",
+'oneTimePasswordReadOnlyMessage': "<h6>Извините!</h6> <p>Вы не можете управлять одноразовыми ключевыми фразами в оффлайновой версии Clipperz.</p> ",
+'oneTimePasswordLoadingMessage': "<h6>Загрузка данных</h6> <p>Подождите, пожайлуста ...</p> ",
+'oneTimePasswordNoPasswordAvailable': "<h6>Нет свободных для использования одноразовых ключевых фраз.</h6> <p>Нажмите кнопку “Новая”, чтобы добавить еще одноразовые ключевые фразы в аккаунт.</p> ",
+'createNewOTPButtonLabel': "новая",
+'deleteOTPButtonLabel': "удалить",
+'printOTPButtonLabel': "печать",
+'disabledOneTimePassword_warning': "запрещено",
+'oneTimePasswordSelectionLink_selectLabel': "Выбрать:",
+'oneTimePasswordSelectionLink_all': "все",
+'oneTimePasswordSelectionLink_none': "ни одного",
+'oneTimePasswordSelectionLink_used': "использованные",
+'oneTimePasswordSelectionLink_unused': "неиспользованные",
+'saveOTP_encryptUserDataTitle': "Сохранение одноразовых ключевых фраз",
+'saveOTP_encryptUserDataText': "Обработка новых данных учетной записи ...",
+'saveOTP_encryptOTPDataTitle': "одноразовыми ключевыми фразами",
+'saveOTP_encryptOTPDataText': "Шифрование аутентификационных данных ...",
+'saveOTP_sendingDataTitle': "одноразовыми ключевыми фразами",
+'saveOTP_sendingDataText': "Передача аутентификационных данных на сервер ...",
+'saveOTP_updatingInterfaceTitle': "одноразовыми ключевыми фразами",
+'saveOTP_updatingInterfaceText': "Обновление интерфейса ...",
+'accountPreferencesLabel': "Настройки",
+'accountPreferencesTabTitle': "Настройки",
+'accountPreferencesLanguageTitle': "Выбор языка",
+'accountPreferencesLanguageDescription': "<p>Выберите Ваш язык из списка.</p> ",
+'showDonationReminderPanelTitle': "Напоминания о пожертвованиях",
+'showDonationReminderPanelDescription': "<p>Показать напоминания о пожертвованиях</p> ",
+'saveUserPreferencesFormSubmitLabel': "Сохранить",
+'cancelUserPreferencesFormSubmitLabel': "Отмена",
+'accountPreferencesSavingPanelTitle_Step1': "Сохранение настроек",
+'accountPreferencesSavingPanelText_Step1': "Шифрование настроек",
+'accountPreferencesSavingPanelTitle_Step2': "Сохранение настроек",
+'accountPreferencesSavingPanelText_Step2': "Передача зашифрованных настроек в Clipperz",
+'accountLoginHistoryLabel': "История входов",
+'loginHistoryTabTitle': "История входов",
+'loginHistoryReadOnlyMessage': "<h6>Извините!</h6> <p>История входов не доступна в оффлайновой версии Clipperz.</p> ",
+'loginHistoryLoadingMessage': "<h6>Загрузка данных</h6> <p>Подождите, пожайлуста ...</p> ",
+'loginHistoryLoadedMessage': "<h6>Десять Ваших последних входов</h6> <p> </p> ",
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "дата",
+'loginHistoryCurrentSessionText': "текущая сессия",
+'loginHistoryReloadButtonLabel': "Обновить историю",
+'deleteAccountTabLabel': "Удалить аккаунт",
+'deleteAccountTabTitle': "Удалить аккаунт",
+'deleteAccountFormUsernameLabel': "имя пользователя",
+'deleteAccountFormPassphraseLabel': "ключевая фраза",
+'deleteAccountFormSafetyCheckboxLabel': "Я понимаю, что все мои данные будут удалены и это действие необратимо.",
+'deleteAccountFormSubmitLabel': "Удалить мой аккаунт",
+'deleteAccountFormWrongUsernameWarning': "Неверное имя пользователя",
+'deleteAccountFormWrongPassphraseWarning': "Неверная ключевая фраза",
+'deleteAccountFormSafetyCheckWarning': "Прочтите и отметьте все поля ниже.",
+'accountPanelDeletingAccountPanelConfirmationTitle': "ВНИМАНИЕ",
+'accountPanelDeleteAccountPanelConfirmationText': "Вы уверены, что хотите удалить аккаунт?",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "Да",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "Нет",
+'offlineCopyTabLabel': "Оффлайновая копия",
+'offlineCopyTabTitle': "Оффлайновая копия",
+'offlineCopyTabDescription': "<p>Одним кликом Вы можете сохранить все зашифрованные данные с серверов Clipperz на жесткий диск и создать оффлайновую версию, которую будете использовать при отсутствии подключения к Интернету.</p> <p>Версия только для чтения безопасна также, как и полная, и не подвергает Ваши данные большим рискам, так как использует тот же код и архитектуру.</p> <ol> <li> <p>Нажмите на ссылку, чтобы начать скачивание.</p> </li> <li> <p>Браузер спросит, что сделать с файлом “Clipperz_YYYYMMDD.html”. Сохраните его на Ваш жесткий диск.</p> </li> <li> <p>Double click on the downloaded file to launch the offline version in your browser.</p> </li> <li> <p>Как обычно, введите имя пользователя и ключевую фразу.</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "Скачать",
+'offlineCopyDownloadWarning': "<h4> <a href=\"#\" id=\"offlineCopyDownloadWarningLink\">Обновите Вашу “оффлайновую копию”!</a> </h4> <p>Вы недавно создали или изменили одну или более карточек: было бы разумным скачать новую оффлайновую копию.</p> ",
+'sharingTabLabel': "Совместное использование",
+'sharingTabTitle': "Совместное использование",
+'sharingTabDescription': "<p>Достаточно часто конфидециальную информацию нужно открыть одному или нескольким людям.</p> <p>Это может быть просто, как дать коллеге ключ доступа к Вашей голосовой почте, когда Вас нет в офисе, или сложно, как открыть доступ наследникам к Вашему счету в местном банке, когда Вы скончаетесь.</p> <p>Clipperz поможет сделать совместное использование Ваших секретов безопасным и простым процессом.</p> <p> </p> <p> <b>Скоро ...</b> </p> ",
+'importTabLabel': "Импорт",
+'importTabTitle': "Импорт",
+'importTabDescription': "<p> <b>Скоро ...</b> </p> ",
+'printingTabLabel': "Экспорт",
+'printingTabTitle': "Экспорт",
+'printingTabDescription': "<p> <b>Печать Ваших данных</b> </p> <p>Нажмите по ссылке, чтобы открыть новое окно со всеми Вашими карточками для печати.</p> <p>Если вы собираетесь распечатать в резервных целях, пожайлуста, рассмотрите более безопасный вариант, как создание “оффлайновой копии”.</p> ",
+'printingLinkLabel': "Версия для печати",
+'contactsTabLabel': "Контакты",
+'contactsTabTitle': "Контакты",
+'passwordGeneratorTabLabel': "Генератор паролей",
+'passwordGeneratorTabTitle': "Генератор паролей",
+'passwordGeneratorTabButtonLabel': "Генератор паролей",
+'bookmarkletTabLabel': "Закладка",
+'bookmarkletTabTitle': "Закладка",
+'bookmarkletTabDescription': "<p>Закладка - это простой инструмент, который может решать очень полезные задачи. Ее можно сохранить и использовать как обычную веб-страницу.</p> <p>Закладки помогут Вам быстро создать новые карточки и новые логины внутри существующих карточек.</p> <p> <b>Пожайлуста, учтите, что закладки действительно не включают какой-либо информации, связанной с аккаунтом (например, имя или ключевая фраза), закладки содержат один и тот же код для каждого пользователя.</b> </p> <h3>Как установить закладку</h3> <h5>Firefox, Camino, Opera, Safari</h5> <ol> <li> <p>Убедитесь, что панель закладок отображается выбором “View > Toolbars > Bookmarks” или похожими пунктами из меню браузера.</p> </li> <li> <p>Нажмите и перетащите ссылку “Добавить в Clipperz” на панель закладок.</p> </li> </ol> <h5>Internet Explorer</h5> <ol> <li> <p>Убедитесь, что отображается панель “Ссылки” выбором “View > Toolbars > Links” из меню браузера.</p> </li> <li> <p>Нажмите правой кнопкой на ссылку “Добавить в Clipperz”.</p> </li> <li> <p>Выберите “Add to favorites” из контекстного меню.</p> </li> <li> <p>Нажмите “Yes” для любых сообщений, которые появятся.</p> </li> <li> <p>Откройте папку “Links” и нажмите “OK”.</p> </li> </ol> ",
+'bookmarkletTabBookmarkletTitle': "Добавить в Clipperz",
+'bookmarkletTabInstructions': "<h3>Как создать новую карточку с ссылками “прямого подключения” в онлайновый сервис</h3> <ol> <li> <p>Откройте веб-страницу с формой входа. (обычно на этой страницы Вы вводите данные вашей учетной записи)</p> </li> <li> <p>Запустите закладку, нажав на нее: появится всплывающее окно.</p> </li> <li> <p>Скопируйте в буфер обмена содержимое текстового поля из всплывающего окна. (ctrl-C)</p> </li> <li> <p>Ввойдите в Ваш аккаунт и нажмите “Добавить новую карточку”.</p> </li> <li> <p>Выберите шаблон “Прямого подключения” и вставьте в текстовое поле содержимое буфера обмена. (ctrl-V)</p> </li> <li> <p>Нажмите кнопку “Создать”, проверьте правильность и нажмите “Сохранить”.</p> </li> </ol> <h3>Как создать ссылку “Прямого подключения” в существующей карточке</h3> <ol> <li> <p>Тоже самое, как и выше.</p> </li> <li> <p>Тоже самое, как и выше.</p> </li> <li> <p>Тоже самое, как и выше.</p> </li> <li> <p>Ввойдите в Ваш аккаунт и выберите карточку с данными учетной записи для только что посещенного веб-сервиса и нажмите “Редактировать”.</p> </li> <li> <p>Вставьте содержимое буфера обмена в текстовое поле в разделе “Прямого подключения”. (ctrl-V)</p> </li> <li> <p>Нажмите “Добавить новое прямое подключение”, проверьте правильность и нажмите “Сохранить”.</p> </li> </ol> <p> </p> <p>Подробнее о закладках <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">здесь</a>.</p> ",
+'mainPanelDirectLoginBlockLabel': "Прямые подключения",
+'directLinkReferenceShowButtonLabel': "показать",
+'mainPanelDirectLoginBlockDescription': "<p>Добавьте “Прямые подключения”, чтобы срау входить в веб-сервисы без ввода имени и пароля!</p> <p>“Прямые подключения” значительно усиливают безопасность, так как:</p> <ul> <li> <p>удобно принимать и вводить сложные пароли;</p> </li> <li> <p>никогда не надо использовать простой и один и тот же пароль.</p> </li> </ul> <p>Простая и быстрая конфигурация с помощью закладок.</p> <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">Подробнее о прямых подключениях</a> ",
+'mainPanelRecordsBlockLabel': "Карточки",
+'mainPanelAddRecordButtonLabel': "Добавить новую карточку",
+'mainPanelRemoveRecordButtonLabel': "Удалить карточку",
+'mainPanelRecordFilterBlockAllLabel': "все",
+'mainPanelRecordFilterBlockTagsLabel': "теги",
+'mainPanelRecordFilterBlockSearchLabel': "поиск",
+'recordDetailNoRecordAtAllTitle': "Добро пожаловать в Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>Начните, добавив карточку.</h5> <p>Карточки - это простой и гибкий инструмент, с помощью которого Вы можете хранить пароли и любую другую информацию.</p> <p>Карточки могут содержать учетные записи для доступа к веб-сайтам, код для замка от велосипеда, данные кредитной карточки, ...</p> <h5>Не забывай о закладках!</h5> <p>Перед началом работы установите закладку “Добавить в Clipperz”: создание карточек будет простым и забавным.</p> <p>Перейдите на панель закладок, чтобы изучить, как установить и использовать их.</p> <p> </p> <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">Подробнее об создании и управлениями закладками</a> ",
+'newRecordWizardTitleBox': "<h5>Пожайлуста, выберите шаблон</h5> <p>Карточки - это простой и гибкий инструмент, с помощью которого Вы можете хранить пароли и любую другую информацию.</p> <p>Выберите один из шаблонов. Вы всегда сможете настроить ваши карточки, добавляя или удаляя поля.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "Прямое подключение",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>Вставьте конфигурационный код, сгенерированный с помощью закладки</p> <p>Будет создана новая карточка с поддержкой прямого подключения.</p> ",
+'newRecordWizardCreateButtonLabel': "Создать",
+'newRecordWizardCancelButtonLabel': "Отмена",
+'donateSplashPanelTitle': "Поддержите Clipperz, сделайте пожертвование сегодня!",
+'donateSplashPanelDescription': "<p>Несколько причин сделать пожертвование:</p> <ul> <li> <p>поддержка развития новых функций</p> </li> <li> <p>оставить Clipperz бесплатным</p> </li> <li> <p>показать признательность нашей упорной работе</p> </li> </ul> <p>Для дополнительной информации посетите нашу <a href=\"http://www.clipperz.com/donations\" target=\"_blank\">страницу пожертвований</a>.</p> <p> <b>Готовы пожертвовать?</b> </p> ",
+'donateCloseButtonLabel': "Еще нет",
+'donateDonateButtonLabel': "Да",
+ 'recordTemplates': {
+ 'WebAccount': {
+ 'title': "Интернет Пароль",
+ 'description': "Простая форма для хранения учетной записи в онлайновый сервис."
+ },
+ 'BankAccount': {
+ 'title': "Банковский аккаунт",
+ 'description': "Безопасное хранение номера Вашей банковской карты и учетной записи для онлайнового банкинга."
+ },
+ 'CreditCard': {
+ 'title': "Кредитная карта",
+ 'description': "Номер карты, срок действия, CCV2 и ПИН всегда в Ваших руках."
+ },
+ 'AddressBookEntry': {
+ 'title': "Запись адресной книги",
+ 'description': "Clipperz может также работать, как новая частная адресная книга. Используйте этот шаблон, чтобы легко добавить новую запись."
+ },
+ 'Custom': {
+ 'title': "Пользовательская карточка",
+ 'description': "Не важно, какие данные нужно защитить, просто создайте карточку."
+ }
+ },
+ 'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field",
+ 'shortDescription': "текст"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "пароль"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "веб-адрес"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "дата"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "почтовый адрес"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "select"
+ }
+ },
+'newRecordPanelGeneralExceptionTitle': "Ошибка",
+'newRecordPanelGeneralExceptionMessage': "Конфигурационный текст неверен. Убедитесь, что Вы взяли его из окна закладки и попробуйте снова.",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "Ошибка",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "Конфигурационный текст был сгенерирован с помощью старой весии закладок. Пожайлуста, обновите Вашу закладку и попробуйте снова.",
+'newRecordPanelExceptionPanelCloseButtonLabel': "Отмена",
+'mainPanelDeletingRecordPanelConfirmationTitle': "Удаление выбранной карточки",
+'mainPanelDeleteRecordPanelConfirmationText': "Вы действительно хотите удалить эту карточку?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "Ага",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "Не-а",
+'mainPanelDeletingRecordPanelInitialTitle': "Удаление выбранной карточки",
+'mainPanelDeletingRecordPanelCompletedText': "Выполнено",
+'deleteRecordPanelCollectRecordDataMessageTitle': "Удаление карточки",
+'deleteRecordPanelCollectRecordDataMessageText': "Обновление списка карточек",
+'deleteRecordPanelEncryptUserDataMessageTitle': "Удаление карточки",
+'deleteRecordPanelEncryptUserDataMessageText': "Шифрование заголовков карточек",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "Удаление карточки",
+'deleteRecordPanelSendingDataToTheServerMessageText': "Передача зашифрованных заголовков карчточек в Clipperz",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "Удаление карточки",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "Обновление интерфейса",
+'recordDetailNoRecordSelectedTitle': "Не выбрана карточка",
+'recordDetailNoRecordSelectedDescription': "<p>Пожайлуста, выберите карточку из списка слева.</p> ",
+'recordDetailLoadingRecordMessage': "Загрузка зашифрованных карточек из Clipperz",
+'recordDetailDecryptingRecordMessage': "Расшифровка данных карточек",
+'recordDetailLoadingRecordVersionMessage': "Загрузка последней версии карточкиn",
+'recordDetailDecryptingRecordVersionMessage': "Расшифровка",
+'recordDetailLoadingErrorMessageTitle': "Ошибка при загрузку",
+'recordDetailNotesLabel': "Примечания",
+'recordDetailLabelFieldColumnLabel': "Метка поля",
+'recordDetailDataFieldColumnLabel': "Данные поля",
+'recordDetailTypeFieldColumnLabel': "Тип",
+'recordDetailSavingChangesMessagePanelInitialTitle': "Сохранение карточки",
+'recordDetailAddFieldButtonLabel': "Добавить новое поле",
+'recordDetailPasswordFieldHelpLabel': "чтобы скопировать пароль в буфер обмена, нажмите на звездочку, затем Ctrl-C",
+'recordDetailPasswordFieldScrambleLabel': "спрятать",
+'recordDetailPasswordFieldUnscrambleLabel': "показать",
+'recordDetailDirectLoginBlockTitle': "Прямые подключения",
+'recordDetailNewDirectLoginDescription': "<p>Настройка прямых подключений</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>В этой карточке есть данные для доступа в онлайновый сервис?</p> <p>Используйте закладки, чтобы настроить “прямые подключения”!</p> ",
+'recordDetailAddNewDirectLoginButtonLabel': "Добавить новое прямое подключение",
+'recordDetailEditButtonLabel': "Редактировать",
+'recordDetailSaveButtonLabel': "Сохранить",
+'recordDetailCancelButtonLabel': "Отмена",
+'newRecordTitleLabel': "_новую карточку_",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "Сохранение карточки",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "Обновление заголовков карточек",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "Сохранение карточки",
+'recordSaveChangesPanelEncryptUserDataMessageText': "Шифрование заголовков карточки",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "Сохранение карточки",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "Шифровани данных карточки",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "Сохранение карточки",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "Шифрование данных версии карточки",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "Сохранение карточки",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "Передача зашифрованного заголовка карточки в Clipperz",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "Сохранение карточки",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "Обновление интерфейса",
+'passwordGeneratorPanelTitle': "Генератор паролей",
+'passwordGeneratorPanelOkLabel': "OK",
+'passwordGeneratorPanelCancelLabel': "Отмена",
+'passwordGeneratorLengthLabel': "длина:",
+//'DWRUtilLoadingMessage': "Загрузка данных ...",
+'comingSoon': "вскоре ...",
+'panelCollectingEntryopyMessageText': "Определение энтропии",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "Да",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "Нет",
+'WELCOME_BACK': "Добро пожаловать снова!",
+'currentConnectionText': "Сейчас вы подключились с ip&nbsp;__ip__, очевидно __country__, используя __browser__ на __operatingSystem__.",
+'latestConnectionText': "Последнее соединение было __elapsedTimeDescription__ (__time__) с ip&nbsp;__ip__, очевидно __country__, используя __browser__ на __operatingSystem__.",
+'fullLoginHistoryLinkLabel': "показать полную историю входов",
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "за месяц",
+ 'MORE_THAN_A_WEEK_AGO': "за неделю",
+ 'MORE_THAN_*_WEEKS_AGO': "за несколько __elapsed__ недель",
+ 'YESTERDAY': "вчера",
+ '*_DAYS_AGO': "__elapsed__ дней(-я)",
+ 'ABOUT_AN_HOUR_AGO': "за час",
+ '*_HOURS_AGO': "__elapsed__ часов(-а)",
+ 'JUST_A_FEW_MINUTES_AGO': "несколько минут",
+ 'ABOUT_*_MINUTES_AGO': "около __elapsed__ минут"
+},
+'unknown_ip': "неизвестный",
+'calendarStrings': {
+ 'months': {
+ '0': "Январь",
+ '1': "Февраль",
+ '2': "Март",
+ '3': "Апрель",
+ '4': "Май",
+ '5': "Июнь",
+ '6': "Июль",
+ '7': "Август",
+ '8': "Сентябрь",
+ '9': "Октябрь",
+ '10': "Ноябрь",
+ '11': "Декабрь"
+ },
+ 'shortMonths': {
+ '0': "Янв",
+ '1': "Фев",
+ '2': "Мар",
+ '3': "Апр",
+ '4': "Май",
+ '5': "Июн",
+ '6': "Июл",
+ '7': "Авг",
+ '8': "Сен",
+ '9': "Окт",
+ '10': "Ноя",
+ '11': "Дек"
+ },
+ 'days': {
+ '0': "Воскресенье",
+ '1': "Понедельник",
+ '2': "Вторник",
+ '3': "Среда",
+ '4': "Четверг",
+ '5': "Пятница",
+ '6': "Суббота"
+ },
+ 'shortDays': {
+ '0': "Вск",
+ '1': "Пон",
+ '2': "Втр",
+ '3': "Сре",
+ '4': "Чет",
+ '5': "Пят",
+ '6': "Суб"
+ },
+ 'amDesignation': "am",
+ 'pmDesignation': "pm"
+},
+
+__syntaxFix__: "syntax fix"
+});
diff --git a/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js b/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js
new file mode 100644
index 0000000..a1d09f1
--- a/dev/null
+++ b/frontend/beta/js/Clipperz/PM/Strings/Strings_zh-CN.js
@@ -0,0 +1,477 @@
+/*
+
+Copyright 2008-2011 Clipperz Srl
+
+This file is part of Clipperz's Javascript Crypto Library.
+Javascript Crypto Library provides web developers with an extensive
+and efficient set of cryptographic functions. The library aims to
+obtain maximum execution speed while preserving modularity and
+reusability.
+For further information about its features and functionalities please
+refer to http://www.clipperz.com
+
+* Javascript Crypto Library 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.
+
+* Javascript Crypto Library 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 Javascript Crypto Library. If not, see
+ <http://www.gnu.org/licenses/>.
+
+*/
+
+Clipperz.PM.Strings.Languages['zh-CN'.toLowerCase()] = MochiKit.Base.merge(Clipperz.PM.Strings.Languages['en-us'], {
+'clipperzServiceDescription': "<h2>只有你知道</h2> <ul> <li> <h3>Clipperz 是:</h3> <ul> <li> <p>一个简单而又安全的密码管理员</p> </li> <li> <p>一个有效的单一登录解决方案</p> </li> <li> <p>一个您保密的资料数据库</p> </li> </ul> </li> <li> <h3> 使用 Clipperz 你能:</h3> <ul> <li> <p>储存和管理你的密码和网上证书</p> </li> <li> <p>无需输入密码自动帮助你登录网站服务</p> </li> <li> <p>保护你的敏感数据:通讯录,口令,信用卡号码, ...</p> </li> <li> <p>与家人和伙伴分享秘密(将要上线)</p> </li> </ul> </li> <li> <h3>Clipperz 的特点:</h3> <ul> <li> <p>免费,彻底匿名</p> </li> <li> <p>在任何时间 任何电脑都可以轻松获取你的密码</p> </li> <li> <p>无需下载和安装任何软件</p> </li> <li> <p>再也无需在电脑或者纸上记录密码了</p> </li> </ul> </li> <li> <h3>Clipperz 的安全性:</h3> <ul> <li> <p>密码将在本地浏览器加密,然后上传至 Clipperz</p> </li> <li> <p>加密密钥是一个只有你知道的密码短语</p> </li> <li> <p>Clipperz 服务会加密你的敏感数据,并不会出现数据的原始形式</p> </li> <li> <p>Clipperz 基于加密标准,没有任何的花哨</p> </li> <li> <p>只要你愿意,你随时都可以查看源代码,但是做为一个使用者来说完全没有去必要去了解那些繁琐的加密原理</p> </li> </ul> </li> <li> <a href=\"http://www.clipperz.com\" target=\"_blank\">更多</a> </li> </ul> ",
+'loginFormTitle': "用你的 Clipperz 帐户登录",
+'loginFormUsernameLabel': "用户名",
+'loginFormPassphraseLabel': "密码短语",
+'loginFormDontHaveAnAccountLabel': "还未建立帐户?",
+'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> 款.",
+'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': "连接",
+'changePasswordFormProgressDialogConnectedMessageText': "完成",
+'changePasswordFormProgressDialogErrorMessageTitle': "错误",
+'changePasswordFormProgressDialogErrorMessageText': "证书修改失败",
+'changeCredentialsPanelEncryptingDataMessageTitle': "正在修改你的密码短语",
+'changeCredentialsPanelEncryptingDataMessageText': "加密卡报头本地解密",
+'changeCredentialsPanelCreatingNewCredentialsMessageTitle': "正在修改你的密码短语",
+'changeCredentialsPanelCreatingNewCredentialsMessageText': "更新你的证书",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageTitle': "正在修改你的密码短语",
+'changeCredentialsPanelSendingNewCredentialsToTheServerMessageText': "正在上传本地证书到 Clipperz",
+'changeCredentialsPanelDoneMessageTitle': "正在修改你的密码短语",
+'changeCredentialsPanelDoneMessageText': "完成",
+'manageOTPTabLabel': "管理你的一次性密码短语",
+'manageOTPTabTitle': "管理你的一次性密码短语",
+'manageOTPTabDescription': "<p>一次性密码短语工作起来和一般的密码短语一样,但是只可以使用一次</p> <p>如果同样的密码短语在一段时间以内再次登录,会被拒绝。登录进程将会失败。</p> <p>为了防止任何欺诈登录,在成功登陆之后,你的一次性密码将会立即被删除,</p> <p>如果一次性密码被键盘记录程序或者间谍软件得到,可能会从被感染的机器上收集数据,这样的话,一次性密码绝对是个很好的选择。</p> <p> <b>强烈建议在公共场合登录 Clipperz 时,使用一次性密码。比如公关计算机,网吧,图书馆等</b> </p> ",
+'oneTimePasswordReadOnlyMessage': "<h6>对不起!</h6> <p>你不能从离线版本管理你的一次性密码短语</p> ",
+'oneTimePasswordLoadingMessage': "<h6>加载数据</h6> <p>请等待 ...</p> ",
+'oneTimePasswordNoPasswordAvailable': "<h6>一次性密码短语没有激活</h6> <p>点击“新建”按钮添加一次性密码短语到你的帐户</p> ",
+'createNewOTPButtonLabel': "新建",
+'deleteOTPButtonLabel': "删除",
+'printOTPButtonLabel': "打印",
+'disabledOneTimePassword_warning': "禁用",
+'oneTimePasswordSelectionLink_selectLabel': "选择:",
+'oneTimePasswordSelectionLink_all': "所有",
+'oneTimePasswordSelectionLink_none': "没有",
+'oneTimePasswordSelectionLink_used': "被使用",
+'oneTimePasswordSelectionLink_unused': "未使用",
+'saveOTP_encryptUserDataTitle': "保存一次性密码短语",
+'saveOTP_encryptUserDataText': "处理新的 OTP 证书 ...",
+'saveOTP_encryptOTPDataTitle': "保存一次性密码短语",
+'saveOTP_encryptOTPDataText': "本地解密认证数据 ...",
+'saveOTP_sendingDataTitle': "保存一次性密码短语",
+'saveOTP_sendingDataText': "发送信任数据到服务器 ...",
+'saveOTP_updatingInterfaceTitle': "保存一次性密码短语",
+'saveOTP_updatingInterfaceText': "更新界面...",
+'accountPreferencesLabel': "使用偏好",
+'accountPreferencesTabTitle': "使用偏好",
+'accountPreferencesLanguageTitle': "界面语言选择",
+'accountPreferencesLanguageDescription': "<p>在下拉菜单中选择你的首选语言</p> ",
+'showDonationReminderPanelTitle': "捐赠提示",
+'showDonationReminderPanelDescription': "<p>显示捐赠提示</p> ",
+'saveUserPreferencesFormSubmitLabel': "保存",
+'cancelUserPreferencesFormSubmitLabel': "取消",
+'accountPreferencesSavingPanelTitle_Step1': "保存使用偏好",
+'accountPreferencesSavingPanelText_Step1': "本地加密你的使用偏好",
+'accountPreferencesSavingPanelTitle_Step2': "保存使用偏好",
+'accountPreferencesSavingPanelText_Step2': "正在向 Clipperz 传送加密后的使用偏好",
+'accountLoginHistoryLabel': "登录历史",
+'loginHistoryTabTitle': "登录历史",
+'loginHistoryReadOnlyMessage': "<h6>对不起!</h6> <p>当你使用离线版本时登录历史是无法显示的</p> ",
+'loginHistoryLoadingMessage': "<h6>加载数据</h6> <p>请等待 ...</p> ",
+'loginHistoryLoadedMessage': "<h6>您的最近 10 次登陆</h6> <p> </p> ",
+'loginHistoryIPLabel': "IP",
+'loginHistoryTimeLabel': "时间",
+'loginHistoryCurrentSessionText': "当前登录信息",
+'loginHistoryReloadButtonLabel': "刷新登录历史",
+'deleteAccountTabLabel': "删除你的账户",
+'deleteAccountTabTitle': "删除你的账户",
+'deleteAccountFormUsernameLabel': "用户名",
+'deleteAccountFormPassphraseLabel': "密码短语",
+'deleteAccountFormSafetyCheckboxLabel': "我知道我的所有数据将被删除,并且是不可回复的.",
+'deleteAccountFormSubmitLabel': "删除我的账户",
+'deleteAccountFormWrongUsernameWarning': "用户名错误",
+'deleteAccountFormWrongPassphraseWarning': "密码短语错误",
+'deleteAccountFormSafetyCheckWarning': "请阅读并检查下面的选项框",
+'accountPanelDeletingAccountPanelConfirmationTitle': "注意",
+'accountPanelDeleteAccountPanelConfirmationText': "你确认要删除你的帐户",
+'accountPanelDeleteAccountPanelConfirmButtonLabel': "是",
+'accountPanelDeleteAccountPanelDenyButtonLabel': "否",
+'offlineCopyTabLabel': "离线拷贝",
+'offlineCopyTabTitle': "离线拷贝",
+'offlineCopyTabDescription': "<p>只需点击一次就可以从 Clipperz 服务器下载所有加密数据到你的硬盘,让你在不能连接互联网的时候使用离线只读版本的 Clipperz。</p> <p>你下载的离线数据和登陆我们网站在线使用是一样安全的,它们使用了同样的密码和安全体系,都不会有暴露数据的风险。</p> <ol> <li> <p>点击链接后开始下载。</p> </li> <li> <p>浏览器会问你如何处理 “Clipperz_YYYYMMDD.html” 文件。保存这个文件到你的硬盘。</p> </li> <li> <p>双击下载的文件在浏览器运行离线版本。</p> </li> <li> <p>输入你的用户名和密码短语。</p> </li> </ol> ",
+'offlineCopyDownloadLinkLabel': "下载",
+'offlineCopyDownloadWarning': "<h4> <a href=\"#\" id=\"offlineCopyDownloadWarningLink\">更新你的“离线版本”!</a> </h4> <p>你最近创建或修改了卡片,需要下载新的“离线版本”</p> ",
+'sharingTabLabel': "共享",
+'sharingTabTitle': "共享",
+'sharingTabDescription': "<p>往往一个机密的资料需要另外一个人或者多人共同使用</p> <p>你可以在这里设置一个简单的授权码,以便在离开办公室的时候你的同事可以访问你的邮箱,或者设置一个复杂的,当你去世后子孙可以在这里找到取得银行保险箱的方法。</p> <p>Clipperz 可以安全并且简单的分享你的密码</p> <p> </p> <p> <b>即将发布...</b> </p> ",
+'importTabLabel': "导入",
+'importTabTitle': "导入",
+'importTabDescription': "<p> <b>即将发布 ...</b> </p> ",
+'printingTabLabel': "导出",
+'printingTabTitle': "导出",
+'printingTabDescription': "<p> <b>打印你的数据</b> </p> <p>点击下面的链接,将会打开一个新窗口,以打印格式显示你的密码卡片</p> <p>如果你打印下来是为了备份,请考虑使用我们提供的\"离线版本\",这比打印更安全。</p> ",
+'printingLinkLabel': "打印版本",
+'contactsTabLabel': "联系",
+'contactsTabTitle': "联系",
+'passwordGeneratorTabLabel': "随机密码生成器",
+'passwordGeneratorTabTitle': "随机密码生成器",
+'passwordGeneratorTabButtonLabel': "生成随机密码",
+'bookmarkletTabLabel': "书签按钮",
+'bookmarkletTabTitle': "书签按钮",
+'bookmarkletTabDescription': "<p>这个书签按钮是一个简单的非常有用的“一键”工具,它能像一般网站一样储存并且使用</p> <p>Clipperz 按钮书签可以帮助你快速建立密码卡片并且用存在的密码卡片直接登录</p> <p> <b>请注意,这个书签按钮不包含你账户中的任何信息(例如你的用户名和密码),对所有的 Clipperz 使用者,这个书签按钮是大家的工具,代码都是相同的。</b> </p> <h3>怎样安装书签按钮</h3> <h5>Firefox, Camino, Opera, Safari</h5> <ol> <li> <p>选择 “查看 > 工具栏 > 书签工具栏” 确认 “书签工具栏” 显示在浏览器菜单上。</p> </li> <li> <p>拖动 “添加到 Clipperz” 链接到书签工具栏。</p> </li> </ol> <h5>Internet Explorer</h5> <ol> <li> <p>选择 “查看 > 工具栏 > 链接” 确认 “链接” 显示在浏览器菜单上。</p> </li> <li> <p>右键 “添加到 Clipperz”</p> </li> <li> <p>选择 “添加到收藏夹”</p> </li> <li> <p>如果弹出安全提示选择 “是”</p> </li> <li> <p>打开 “链接” 文件夹后单击 “添加”</p> </li> </ol> ",
+'bookmarkletTabBookmarkletTitle': "添加到 Clipperz",
+'bookmarkletTabInstructions': "<h3>如何在一个在线服务中创建可以直接登录的新的密码卡片</h3> <ol> <li> <p>打开你要登录的页面(这个页面通常就是你输入登录信息的页面)</p> </li> <li> <p>点击书签按钮,会出现一个新的弹出窗口</p> </li> <li> <p>复制弹出窗口中的所有文本到剪贴板(ctrl+c)</p> </li> <li> <p>登录你的 Clipperz 账户,然后点击 <b>新建密码卡片</b> 按钮</p> </li> <li> <p>选择“直接登录”模板,之后粘贴剪贴板中的内容到大文本框(ctrl+v)</p> </li> <li> <p>按下 <b>创建</b> 按钮,检查细节并且点击 <b>保存</b>.</p> </li> </ol> <h3>对于已经存在的密码卡片如何添加直接登陆</h3> <ol> <li> <p>与上面的步骤相同</p> </li> <li> <p>与上面的步骤相同</p> </li> <li> <p>与上面的步骤相同</p> </li> <li> <p>输入你的 Clipperz 帐号,选择你刚刚访问的网络服务的密码卡片然后点击 <b>编辑</b> 按钮.</p> </li> <li> <p>将剪贴板中的内容粘贴到“直接登录”区域的大文本框中 (ctrl-V)</p> </li> <li> <p>点击添加 <b>自动登录</b> 按钮,检查细节并且点击k <b>保存</b>.</p> </li> </ol> <p> </p> <p>如果需要关于书签按钮的进一步资料可以在 <a href=\"http://www.clipperz.com/support/user_guide/bookmarklet\" target=\"_blank\">这里获得</a>.</p> ",
+'mainPanelDirectLoginBlockLabel': "直接登录",
+'directLinkReferenceShowButtonLabel': "显示",
+'mainPanelDirectLoginBlockDescription': "<p>添加 “直接登录” 可以让你不用输入用户名和密码即可登录网络账户</p> <p>“直接登录” 可以大大提高你的密码安全性,因为你可以:</p> <ul> <li> <p>方便选择和输入复杂的密码</p> </li> <li> <p>永远不再使用相同的,容易猜测的密码</p> </li> </ul> <p>用 Clipperz 书签按钮简单快速的配置</p> <a href=\"http://www.clipperz.com/support/user_guide/direct_logins\" target=\"_blank\">关于 “直接登录” 的更多信息</a> ",
+'mainPanelRecordsBlockLabel': "密码卡片",
+'mainPanelAddRecordButtonLabel': "添加新密码卡片",
+'mainPanelRemoveRecordButtonLabel': "删除密码卡片",
+'mainPanelRecordFilterBlockAllLabel': "所有",
+'mainPanelRecordFilterBlockTagsLabel': "标签",
+'mainPanelRecordFilterBlockSearchLabel': "搜索",
+'recordDetailNoRecordAtAllTitle': "欢迎来到 Clipperz!",
+'recordDetailNoRecordAtAllDescription': "<h5>从你的账户添加密码卡片开始</h5> <p>密码卡片是简单灵活的方式,在这里你可以保存你的密码和其他机密资料.</p> <p>密码卡片含有一个全权访问网站的证书,你的通讯录,你的信用卡信息,……</p> <h5>不要忘记书签按钮</h5> <p>在你开始前,安装 “添加到 Clipperz” 书签按钮:它将使创建密码卡片变得简单并且有趣</p> <p>去书签按钮标签了解如何安装并使用它</p> <p> </p> <p>然后只需单击 “添加密码卡片” 按钮,即可尽情享受 Clipperz 帐户.</p> <p> <a href=\"http://www.clipperz.com/support/user_guide/managing_cards\" target=\"_blank\">关于创建和管理密码卡片的更多信息</a> </p> ",
+'newRecordWizardTitleBox': "<h5>请选择一个模板</h5> <p>密码卡片是简单灵活的方式,在这里你可以保存你的密码和其他机密资料.</p> <p>首先选择下面的一个模板。在添加或者删除以后,可以随时定制你的密码卡片.</p> ",
+'newRecordWizardBookmarkletConfigurationTitle': "直接登陆",
+'newRecordWizardBookmarkletConfigurationDescription': "<p>将从 Clipperz 书签按钮得到的代码粘贴到下面的文本框中</p> <p>一个直接登陆你的网络账户的新密码卡片将要被创建完成</p> ",
+'newRecordWizardCreateButtonLabel': "创建",
+'newRecordWizardCancelButtonLabel': "取消",
+'donateSplashPanelTitle': "今天就捐赠支持 Clipperz!",
+'donateSplashPanelDescription': "<p>捐赠我们的原因:</p> <ul> <li> <p>支持新特性的开发</p> </li> <li> <p>保持 Clipperz 的免费</p> </li> <li> <p>对我们的辛勤工作表示感谢</p> </li> </ul> <p> <a href=\"http://www.clipperz.com/donations\" target=\"_blank\">进一步资料,请浏览我们的捐款页</a>.</p> <p> <b>愿意捐款?</b> </p> ",
+'donateCloseButtonLabel': "不必了",
+'donateDonateButtonLabel': "是",
+'recordTemplates': {
+ 'WebAccount': {
+ 'title': "网站密码",
+ 'description': "<p>为您的网上服务提供简单的密码储存,自动登录服务.</p> ",
+ 'fields': {
+ 'URL': "网址",
+ 'TXT': "用户名或者电子邮件地址",
+ 'PWD': "密码"
+ }
+ },
+ 'BankAccount': {
+ 'title': "银行帐户",
+ 'description': "<p>安全储存你的银行账号和网上银行证书.</p> ",
+ 'fields': {
+ 'TXT': "银行",
+ 'TXT': "帐号",
+ 'URL': "银行网站",
+ 'TXT': "在线银行 ID",
+ 'PWD': "在线银行密码"
+ }
+ },
+ 'CreditCard': {
+ 'title': "信用卡",
+ 'description': "<p>信用卡号码,有效日期,CVV2和PIN 都由 Clipperz 管理</p> ",
+ 'fields': {
+ 'TXT': "类型(VISA, AmEx, ...)",
+ 'TXT': "号码",
+ 'TXT': "持卡人姓名",
+ 'TXT': "有效日期",
+ 'TXT': "CVV2",
+ 'PWD': "PIN",
+ 'URL': "信用卡网站",
+ 'TXT': "用户名",
+ 'PWD': "密码"
+ }
+ },
+ 'AddressBookEntry': {
+ 'title': "通讯录条目",
+ 'description': "<p>Clipperz 同样可以为你的私人通讯录服务. 使用这个模板,轻易添加新的条目.</p> ",
+ 'fields': {
+ 'TXT': "姓名",
+ 'TXT': "电子邮件",
+ 'TXT': "电话",
+ 'TXT': "手机",
+ 'ADDR': "地址"
+ }
+ },
+ 'Custom': {
+ 'title': "定制密码卡片",
+ 'description': "<p>无论你需要保护哪种类型的机密数据,创建定制密码卡片便可满足你的需求</p> ",
+ 'fields': {
+ 'TXT': "标签 1",
+ 'TXT': "标签 2",
+ 'TXT': "标签 3"
+ }
+ }
+},
+'recordFieldTypologies': {
+ 'TXT': {
+ 'description': "simple text field",
+ 'shortDescription': "文字"
+ },
+ 'PWD': {
+ 'description': "simple text field, with default status set to hidden",
+ 'shortDescription': "密码"
+ },
+ 'URL': {
+ 'description': "simple text field in edit mode, that became an active url in view mode",
+ 'shortDescription': "网址"
+ },
+ 'DATE': {
+ 'description': "a value set with a calendar helper",
+ 'shortDescription': "数据"
+ },
+ 'ADDR': {
+ 'description': "just like the URL, but the active link points to Google Maps (or similar service) passing the address value as argument",
+ 'shortDescription': "地址"
+ },
+ 'CHECK': {
+ 'description': "check description",
+ 'shortDescription': "check"
+ },
+ 'RADIO': {
+ 'description': "radio description",
+ 'shortDescription': "radio"
+ },
+ 'SELECT': {
+ 'description': "select description",
+ 'shortDescription': "select"
+ }
+},
+'newRecordPanelGeneralExceptionTitle': "错误",
+'newRecordPanelGeneralExceptionMessage': "配置文本不正确,请从书签中确认你的文本并且再试一次",
+'newRecordPanelWrongBookmarkletVersionExceptionTitle': "错误",
+'newRecordPanelWrongBookmarkletVersionExceptionMessage': "配置文本已经产生了一个旧版本书签,请更新你的书签然后再试试。",
+'newRecordPanelExceptionPanelCloseButtonLabel': "取消",
+'mainPanelDeletingRecordPanelConfirmationTitle': "删除所选密码卡片",
+'mainPanelDeleteRecordPanelConfirmationText': "确认要删除选定的密码卡片?",
+'mainPanelDeleteRecordPanelConfirmButtonLabel': "是",
+'mainPanelDeleteRecordPanelDenyButtonLabel': "否",
+'mainPanelDeletingRecordPanelInitialTitle': "删除选定的密码卡片",
+'mainPanelDeletingRecordPanelCompletedText': "完成",
+'deleteRecordPanelCollectRecordDataMessageTitle': "删除密码卡片",
+'deleteRecordPanelCollectRecordDataMessageText': "更新密码卡片列表",
+'deleteRecordPanelEncryptUserDataMessageTitle': "删除密码卡片",
+'deleteRecordPanelEncryptUserDataMessageText': "加密卡报头本地解密",
+'deleteRecordPanelSendingDataToTheServerMessageTitle': "删除密码卡片",
+'deleteRecordPanelSendingDataToTheServerMessageText': "从 Clipperz 更新加密卡报头",
+'deleteRecordPanelUpdatingTheInterfaceMessageTitle': "删除密码卡片",
+'deleteRecordPanelUpdatingTheInterfaceMessageText': "更新界面",
+'recordDetailNoRecordSelectedTitle': "未选择密码卡片",
+'recordDetailNoRecordSelectedDescription': "<p>从左边的列表中选择一个密码卡片</p> ",
+'recordDetailLoadingRecordMessage': "正在从 Clipperz 下载加密卡片",
+'recordDetailDecryptingRecordMessage': "密码卡片数据本地解密",
+'recordDetailLoadingRecordVersionMessage': "下载最新版本的密码卡片",
+'recordDetailDecryptingRecordVersionMessage': "本地解密最新版本密码卡片",
+'recordDetailLoadingErrorMessageTitle': "密码卡片下载错误",
+'recordDetailNotesLabel': "注释",
+'recordDetailLabelFieldColumnLabel': "标签区域",
+'recordDetailDataFieldColumnLabel': "数据区域",
+'recordDetailTypeFieldColumnLabel': "类型",
+'recordDetailSavingChangesMessagePanelInitialTitle': "保存密码卡片",
+'recordDetailAddFieldButtonLabel': "添加新区域",
+'recordDetailPasswordFieldHelpLabel': "点击星星复制密码到剪贴板,然后用 Ctrl+V 使用",
+'recordDetailPasswordFieldScrambleLabel': "隐藏密码",
+'recordDetailPasswordFieldUnscrambleLabel': "显示密码",
+'recordDetailDirectLoginBlockTitle': "直接登录",
+'recordDetailNewDirectLoginDescription': "<p>直接登录配置</p> ",
+'recordDetailDirectLoginBlockNoDirectLoginConfiguredDescription': "<p>这个密码卡片包含在线服务证书吗?</p> <p>仅仅单击就可以从 Clipperz 使用书签配置 “直接登录”</p> ",
+'recordDetailAddNewDirectLoginButtonLabel': "添加新的直接登录",
+'recordDetailEditButtonLabel': "编辑",
+'recordDetailSaveButtonLabel': "保存",
+'recordDetailCancelButtonLabel': "取消",
+'newRecordTitleLabel': "_新密码卡片_",
+'recordSaveChangesPanelCollectRecordInfoMessageTitle': "保存密码卡片",
+'recordSaveChangesPanelCollectRecordInfoMessageText': "更新密码卡片报头",
+'recordSaveChangesPanelEncryptUserDataMessageTitle': "保存密码卡片",
+'recordSaveChangesPanelEncryptUserDataMessageText': "本地加密卡片报头",
+'recordSaveChangesPanelEncryptRecordDataMessageTitle': "保存密码卡片",
+'recordSaveChangesPanelEncryptRecordDataMessageText': "本地加密卡片数据",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageTitle': "保存密码卡片",
+'recordSaveChangesPanelEncryptRecordVersionDataMessageText': "本地加密密码卡片版本数据",
+'recordSaveChangesPanelSendingDataToTheServerMessageTitle': "保存密码卡片",
+'recordSaveChangesPanelSendingDataToTheServerMessageText': "从 Clipperz 更新加密卡报头",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageTitle': "保存密码卡片",
+'recordSaveChangesPanelUpdatingTheInterfaceMessageText': "更新界面",
+'passwordGeneratorPanelTitle': "密码生成器",
+'passwordGeneratorPanelOkLabel': "确认",
+'passwordGeneratorPanelCancelLabel': "取消",
+'passwordGeneratorLengthLabel': "长度:",
+//'DWRUtilLoadingMessage': "加载数据。。。",
+'comingSoon': "即将到来。。。",
+'panelCollectingEntryopyMessageText': "收集平均信息",
+'directLoginConfigurationCheckBoxFieldSelectedValue': "是",
+'directLoginConfigurationCheckBoxFieldNotSelectedValue': "否",
+'WELCOME_BACK': "欢迎回来!",
+'currentConnectionText': "你的连接 IP 地址是&nbsp;__ip__; 来自 __country__, 在 __browser__ 上使用 __operatingSystem__。",
+'latestConnectionText': "你上次的登录 IP 是&nbsp;__ip__ 在 __elapsedTimeDescription__ (__time__); 来自 __country__, 在 __browser__ 上使用 __operatingSystem__。",
+'fullLoginHistoryLinkLabel': "显示所有登录历史",
+'elapsedTimeDescriptions': {
+ 'MORE_THAN_A_MONTH_AGO': "一个月之前",
+ 'MORE_THAN_A_WEEK_AGO': "一周之前",
+ 'MORE_THAN_*_WEEKS_AGO': "__elapsed__ 周以前",
+ 'YESTERDAY': "昨天",
+ '*_DAYS_AGO': "__elapsed__ 天之前",
+ 'ABOUT_AN_HOUR_AGO': "大约一个小时前",
+ '*_HOURS_AGO': "__elapsed__ 小时前",
+ 'JUST_A_FEW_MINUTES_AGO': "仅仅几分钟之前",
+ 'ABOUT_*_MINUTES_AGO': "大约 __elapsed__ 几分钟前"
+},
+'unknown_ip': "未知",
+'calendarStrings': {
+ 'months': {
+ '0': "一月",
+ '1': "二月",
+ '2': "三月",
+ '3': "四月",
+ '4': "五月",
+ '5': "六月",
+ '6': "七月",
+ '7': "八月",
+ '8': "九月",
+ '9': "十月",
+ '10': "十一月",
+ '11': "十二月"
+ },
+ 'shortMonths': {
+ '0': "一月",
+ '1': "二月",
+ '2': "三月",
+ '3': "四月",
+ '4': "五月",
+ '5': "六月",
+ '6': "七月",
+ '7': "八月",
+ '8': "九月",
+ '9': "十月",
+ '10': "十一月",
+ '11': "十二月"
+ },
+ 'days': {
+ '0': "星期日",
+ '1': "星期一",
+ '2': "星期二",
+ '3': "星期三",
+ '4': "星期四",
+ '5': "星期五",
+ '6': "星期六"
+ },
+ 'shortDays': {
+ '0': "日",
+ '1': "一",
+ '2': "二",
+ '3': "三",
+ '4': "四",
+ '5': "五",
+ '6': "六"
+ },
+ 'veryShortDays': {
+ '0': "日",
+ '1': "一",
+ '2': "二",
+ '3': "三",
+ '4': "四",
+ '5': "五",
+ '6': "六"
+ },
+ 'amDesignation': "上午",
+ 'pmDesignation': "下午"
+},
+
+__syntaxFix__: "syntax fix"
+});