Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-07-01 16:57:08 +0300
committerbrantje <brantje@gmail.com>2017-07-01 16:57:08 +0300
commit1b173e76a18ddbede577f5471d48e4f8cedc87e2 (patch)
tree632d01f905b6f414ce890bfb053465833e3e3f5f
parent8cde638391f2abbd4610b7188811ced528ec32f1 (diff)
parentb0d52b6d293afbd55e49eb93ebb6c76476cd18de (diff)
Merge remote-tracking branch 'origin/master' into csv_export_fix
-rw-r--r--.travis.yml4
-rw-r--r--appinfo/info.xml2
-rw-r--r--js/app/controllers/share.js2
-rw-r--r--js/templates.js4
-rw-r--r--l10n/ast.js137
-rw-r--r--l10n/ast.json135
-rw-r--r--l10n/ca.js37
-rw-r--r--l10n/ca.json37
-rw-r--r--l10n/cs.js15
-rw-r--r--l10n/cs.json15
-rw-r--r--l10n/de.js31
-rw-r--r--l10n/de.json31
-rw-r--r--l10n/de_DE.js37
-rw-r--r--l10n/de_DE.json37
-rw-r--r--l10n/el.js50
-rw-r--r--l10n/el.json50
-rw-r--r--l10n/en_GB.js327
-rw-r--r--l10n/en_GB.json325
-rw-r--r--l10n/es.js15
-rw-r--r--l10n/es.json15
-rw-r--r--l10n/es_AR.js327
-rw-r--r--l10n/es_AR.json325
-rw-r--r--l10n/es_MX.js39
-rw-r--r--l10n/es_MX.json39
-rw-r--r--l10n/fi.js1
-rw-r--r--l10n/fi.json1
-rw-r--r--l10n/fr.js15
-rw-r--r--l10n/fr.json15
-rw-r--r--l10n/is.js17
-rw-r--r--l10n/is.json17
-rw-r--r--l10n/it.js7
-rw-r--r--l10n/it.json7
-rw-r--r--l10n/lt_LT.js54
-rw-r--r--l10n/lt_LT.json54
-rw-r--r--l10n/nb.js73
-rw-r--r--l10n/nb.json73
-rw-r--r--l10n/nl.js15
-rw-r--r--l10n/nl.json15
-rw-r--r--l10n/pl.js99
-rw-r--r--l10n/pl.json99
-rw-r--r--l10n/pt_BR.js35
-rw-r--r--l10n/pt_BR.json35
-rw-r--r--l10n/ru.js29
-rw-r--r--l10n/ru.json29
-rw-r--r--l10n/sq.js82
-rw-r--r--l10n/sq.json82
-rw-r--r--l10n/sv.js23
-rw-r--r--l10n/sv.json23
-rw-r--r--l10n/tr.js17
-rw-r--r--l10n/tr.json17
-rw-r--r--l10n/zh_CN.js13
-rw-r--r--l10n/zh_CN.json13
-rw-r--r--templates/views/partials/forms/settings/general_settings.html3
-rw-r--r--templates/views/partials/forms/share_credential/basics.html2
54 files changed, 2774 insertions, 227 deletions
diff --git a/.travis.yml b/.travis.yml
index 97bf5068..c72ff7f0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,8 +58,8 @@ script:
# Test the app
- sh -c "if [ '$JSTESTS' != '1' ]; then find . -name \*.php -exec php -l \"{}\" \;; fi"
- cd ../../
- - sh -c "if [ '$JSTESTS' != '1' ]; then ./occ app:check-code $APP_NAME -c private -c strong-comparison; fi"
- - sh -c "if [ '$JSTESTS' != '1' ]; then ./occ app:check-code $APP_NAME -c deprecation; fi"
+ # - sh -c "if [ '$JSTESTS' != '1' ]; then ./occ app:check-code $APP_NAME -c private -c strong-comparison; fi"
+ # - sh -c "if [ '$JSTESTS' != '1' ]; then ./occ app:check-code $APP_NAME -c deprecation; fi"
- cd apps/$APP_NAME/
- sh -c "if [ '$JSTESTS' != '1' ]; then php build/phpunit.phar -v -c phpunit.xml --coverage-clover=coverage.clover --coverage-php=phpunit; fi"
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 02b37cd0..752bf944 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -37,7 +37,7 @@ For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
<dependencies>
<php min-version="5.6"/>
<owncloud min-version="9" max-version="11" />
- <nextcloud min-version="9" max-version="12" />
+ <nextcloud min-version="9" max-version="13" />
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<lib>openssl</lib>
diff --git a/js/app/controllers/share.js b/js/app/controllers/share.js
index 0d9e166f..861020ed 100644
--- a/js/app/controllers/share.js
+++ b/js/app/controllers/share.js
@@ -216,7 +216,7 @@
};
var found = false;
for (var z = 0; z < $scope.share_settings.credentialSharedWithUserAndGroup.length; z++) {
- if ($scope.share_settings.credentialSharedWithUserAndGroup[z].userId === shareWith[z].uid) {
+ if (shareWith[z] && $scope.share_settings.credentialSharedWithUserAndGroup[z].userId === shareWith[z].uid) {
found = true;
}
}
diff --git a/js/templates.js b/js/templates.js
index a9d98c30..67d6c2e1 100644
--- a/js/templates.js
+++ b/js/templates.js
@@ -57,7 +57,7 @@ angular.module('views/partials/forms/settings/export.html', []).run(['$templateC
angular.module('views/partials/forms/settings/general_settings.html', []).run(['$templateCache', function ($templateCache) {
'use strict';
$templateCache.put('views/partials/forms/settings/general_settings.html',
- '<div class="row"><div class="col-xs-12 col-md-6"><h3>{{ \'rename.vault\' | translate}}</h3><label>{{ \'rename.vault.name\' | translate}}</label><input type="text" ng-model="$parent.new_vault_name"> <button ng-click="saveVaultSettings()">{{ \'change\' | translate}}</button><h3>{{ \'change.vault.key\' | translate}}</h3><label>{{ \'old.vault.password\' | translate}}</label><input type="password" ng-model="oldVaultPass"><label>{{ \'new.vault.password\' | translate}}</label><password-gen ng-model="newVaultPass"></password-gen><ng-password-meter password="newVaultPass" score="vault_key_score"></ng-password-meter><label>{{ \'new.vault.pw.r\' | translate}}</label><input type="password" ng-model="newVaultPass2"><div ng-show="error || vault_key_score.score < minimal_value_key_strength" class="error"><ul><li>{{error}}</li><li ng-show="vault_key_score.score < minimal_value_key_strength">{{\'min.vault.key.strength\' | translate:required_score}}</li></ul></div><button ng-click="changeVaultPassword(oldVaultPass,newVaultPass,newVaultPass2)" ng-disabled="vault_key_score.score < minimal_value_key_strength">{{ \'change\' | translate}}</button><div ng-show="change_pw.total > 0">{{\'warning.leave\' | translate}}<br>{{ \'processing\' | translate}} {{cur_state.process}}<div progress-bar="cur_state.calculated" index="cur_state.current" total="cur_state.total"></div>{{ \'total.progress\' | translate}}<div progress-bar="change_pw.percent" index="change_pw.done" total="change_pw.total"></div></div><h3>{{\'delete.vault\' | translate}}</h3><b>{{ \'vault.remove.notice\' | translate }}</b><label>{{\'vault.password\' | translate}}</label><input type="password" ng-model="$parent.delete_vault_password"> <input type="checkbox" ng-model="$parent.confirm_vault_delete"> {{\'delete.vault.checkbox\' | translate}}<br><button class="btn btn-danger" ng-click="delete_vault()">{{\'delete.vault.confirm\' | translate}}</button><div ng-show="remove_pw">{{\'deleting.pw\' | translate:translationData}}<div progress-bar="remove_pw.percent" index="remove_pw.done" total="remove_pw.total"></div></div></div><div class="col-xs-12 col-md-6"><h3>{{ \'about.passman\' | translate}}</h3><p>{{ \'version\' | translate}}: <b>{{passman_version}}</b><br><br><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6YS8F97PETVU2" target="_blank" class="link">{{ \'donate.support\' | translate}}</a><br></p><h3>{{ \'bookmarklet\' | translate}}</h3><div><p>{{ \'bookmarklet.info1\' | translate}}<br>{{ \'bookmarklet.info2\' | translate}}<br></p></div><div><p ng-bind-html="bookmarklet" style="margin-top: 5px"></p></div></div></div>');
+ '<div class="row"><div class="col-xs-12 col-md-6"><h3>{{ \'rename.vault\' | translate}}</h3><label>{{ \'rename.vault.name\' | translate}}</label><input type="text" ng-model="$parent.new_vault_name"> <button ng-click="saveVaultSettings()">{{ \'change\' | translate}}</button><h3>{{ \'change.vault.key\' | translate}}</h3><label>{{ \'old.vault.password\' | translate}}</label><input type="password" ng-model="oldVaultPass"><label>{{ \'new.vault.password\' | translate}}</label><input type="password" ng-model="newVaultPass"><ng-password-meter password="newVaultPass" score="vault_key_score"></ng-password-meter><label>{{ \'new.vault.pw.r\' | translate}}</label><input type="password" ng-model="newVaultPass2"><div ng-show="error || vault_key_score.score < minimal_value_key_strength" class="error"><ul><li>{{error}}</li><li ng-show="vault_key_score.score < minimal_value_key_strength">{{\'min.vault.key.strength\' | translate:required_score}}</li></ul></div><button ng-click="changeVaultPassword(oldVaultPass,newVaultPass,newVaultPass2)" ng-disabled="vault_key_score.score < minimal_value_key_strength">{{ \'change\' | translate}}</button><div ng-show="change_pw.total > 0">{{\'warning.leave\' | translate}}<br>{{ \'processing\' | translate}} {{cur_state.process}}<div progress-bar="cur_state.calculated" index="cur_state.current" total="cur_state.total"></div>{{ \'total.progress\' | translate}}<div progress-bar="change_pw.percent" index="change_pw.done" total="change_pw.total"></div></div><h3>{{\'delete.vault\' | translate}}</h3><b>{{ \'vault.remove.notice\' | translate }}</b><label>{{\'vault.password\' | translate}}</label><input type="password" ng-model="$parent.delete_vault_password"> <input type="checkbox" ng-model="$parent.confirm_vault_delete"> {{\'delete.vault.checkbox\' | translate}}<br><button class="btn btn-danger" ng-click="delete_vault()">{{\'delete.vault.confirm\' | translate}}</button><div ng-show="remove_pw">{{\'deleting.pw\' | translate:translationData}}<div progress-bar="remove_pw.percent" index="remove_pw.done" total="remove_pw.total"></div></div></div><div class="col-xs-12 col-md-6"><h3>{{ \'about.passman\' | translate}}</h3><p>{{ \'version\' | translate}}: <b>{{passman_version}}</b><br><br><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=6YS8F97PETVU2" target="_blank" class="link">{{ \'donate.support\' | translate}}</a><br></p><h3>{{ \'bookmarklet\' | translate}}</h3><div><p>{{ \'bookmarklet.info1\' | translate}}<br>{{ \'bookmarklet.info2\' | translate}}<br></p></div><div><p ng-bind-html="bookmarklet" style="margin-top: 5px"></p></div></div></div>');
}]);
angular.module('views/partials/forms/settings/generic_csv_import.html', []).run(['$templateCache', function ($templateCache) {
@@ -93,7 +93,7 @@ angular.module('views/partials/forms/settings/tool.html', []).run(['$templateCac
angular.module('views/partials/forms/share_credential/basics.html', []).run(['$templateCache', function ($templateCache) {
'use strict';
$templateCache.put('views/partials/forms/share_credential/basics.html',
- '<div class="row"><div class="col-xs-12 col-md-6"><div><table class="table sharing_table"><thead><tr><td><tags-input ng-model="inputSharedWith" replace-spaces-with-dashes="false" add-from-autocomplete-only="true" placeholder="{{ \'search.u.g\' | translate}}"><auto-complete source="searchUsers($query)" min-length="0" template="autocomplete-template"></auto-complete></tags-input></td><td><button class="button" ng-click="shareWith(inputSharedWith, selectedAccessLevel)">+</button></td></tr><tr><td colspan="2"><small>{{ \'search.result.missing\' | translate}}</small></td></tr></thead></table><div ng-if="share_settings.cypher_progress.done > 0">{{\'cyphering\' | translate}}...<div progress-bar="share_settings.cypher_progress.percent" index="share_settings.cypher_progress.done" total="share_settings.cypher_progress.total"></div></div><div ng-if="share_settings.upload_progress.done > 0">{{ \'uploading\' | translate}}...<div progress-bar="share_settings.upload_progress.percent" index="share_settings.upload_progress.done" total="share_settings.upload_progress.total"></div></div></div></div><div class="col-xs-12 col-md-6" ng-show="share_settings.cypher_progress.times.length > 0"><table class="table"><thead><tr><td>{{ \'user\' | translate}}</td><td>{{ \'crypto.time\' | translate}}</td></tr></thead><tr ng-repeat="user in share_settings.cypher_progress.times"><td><i class="fa fa-cogs"></i> {{user.user}}</td><td>{{user.time}} s</td></tr></table>{{ \'crypto.total.time\' | translate}}: {{ calculate_total_time() }}</div></div><div class="row"><div class="col-xs-12 col-md-6"><table class="table shared_table" ng-show="share_settings.credentialSharedWithUserAndGroup.length > 0"><thead><tr><td>{{\'user\' | translate}}</td><td>{{ \'perm.read\' | translate}}</td><td>{{ \'perm.write\' | translate}}</td><td>{{ \'perm.files\' | translate}}</td><td>{{ \'perm.revisions\' | translate}}</td><td></td></tr></thead><tr ng-repeat="user in share_settings.credentialSharedWithUserAndGroup"><td><i class="fa fa-user" ng-if="user.pending === false"></i> <i class="fa fa-user-times" ng-if="user.pending === true"></i> {{user.userId}} <small ng-if="user.pending === true" class="pull-right col-xs-4">{{ \'pending\' | translate}}</small></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.READ)" ng-checked="hasPermission(user.acl, default_permissions.permissions.READ)"></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.WRITE)" ng-checked="hasPermission(user.acl, default_permissions.permissions.WRITE)"></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.FILES)" ng-checked="hasPermission(user.acl, default_permissions.permissions.FILES)"></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.HISTORY)" ng-checked="hasPermission(user.acl, default_permissions.permissions.HISTORY)"></td><td><i class="fa fa-trash" ng-click="unshareUser(user)"></i></td></tr></table></div></div><script type="text/ng-template" id="autocomplete-template"><i class="fa fa-user" ng-if="data.type === \'user\'"></i>\n' +
+ '<div class="row"><div class="col-xs-12 col-md-6"><div><table class="table sharing_table"><thead><tr><td><tags-input ng-model="inputSharedWith" replace-spaces-with-dashes="false" add-from-autocomplete-only="true" placeholder="{{ \'search.u.g\' | translate}}"><auto-complete source="searchUsers($query)" min-length="0" template="autocomplete-template"></auto-complete></tags-input></td><td><button class="button" ng-click="shareWith(inputSharedWith)">+</button></td></tr><tr><td colspan="2"><small>{{ \'search.result.missing\' | translate}}</small></td></tr></thead></table><div ng-if="share_settings.cypher_progress.done > 0">{{\'cyphering\' | translate}}...<div progress-bar="share_settings.cypher_progress.percent" index="share_settings.cypher_progress.done" total="share_settings.cypher_progress.total"></div></div><div ng-if="share_settings.upload_progress.done > 0">{{ \'uploading\' | translate}}...<div progress-bar="share_settings.upload_progress.percent" index="share_settings.upload_progress.done" total="share_settings.upload_progress.total"></div></div></div></div><div class="col-xs-12 col-md-6" ng-show="share_settings.cypher_progress.times.length > 0"><table class="table"><thead><tr><td>{{ \'user\' | translate}}</td><td>{{ \'crypto.time\' | translate}}</td></tr></thead><tr ng-repeat="user in share_settings.cypher_progress.times"><td><i class="fa fa-cogs"></i> {{user.user}}</td><td>{{user.time}} s</td></tr></table>{{ \'crypto.total.time\' | translate}}: {{ calculate_total_time() }}</div></div><div class="row"><div class="col-xs-12 col-md-6"><table class="table shared_table" ng-show="share_settings.credentialSharedWithUserAndGroup.length > 0"><thead><tr><td>{{\'user\' | translate}}</td><td>{{ \'perm.read\' | translate}}</td><td>{{ \'perm.write\' | translate}}</td><td>{{ \'perm.files\' | translate}}</td><td>{{ \'perm.revisions\' | translate}}</td><td></td></tr></thead><tr ng-repeat="user in share_settings.credentialSharedWithUserAndGroup"><td><i class="fa fa-user" ng-if="user.pending === false"></i> <i class="fa fa-user-times" ng-if="user.pending === true"></i> {{user.userId}} <small ng-if="user.pending === true" class="pull-right col-xs-4">{{ \'pending\' | translate}}</small></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.READ)" ng-checked="hasPermission(user.acl, default_permissions.permissions.READ)"></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.WRITE)" ng-checked="hasPermission(user.acl, default_permissions.permissions.WRITE)"></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.FILES)" ng-checked="hasPermission(user.acl, default_permissions.permissions.FILES)"></td><td><input type="checkbox" ng-click="setPermission(user.acl, default_permissions.permissions.HISTORY)" ng-checked="hasPermission(user.acl, default_permissions.permissions.HISTORY)"></td><td><i class="fa fa-trash" ng-click="unshareUser(user)"></i></td></tr></table></div></div><script type="text/ng-template" id="autocomplete-template"><i class="fa fa-user" ng-if="data.type === \'user\'"></i>\n' +
' <i class="fa fa-group" ng-if="data.type === \'group\'"></i>\n' +
' {{data.text}}</script>');
}]);
diff --git a/l10n/ast.js b/l10n/ast.js
new file mode 100644
index 00000000..1ed6fd02
--- /dev/null
+++ b/l10n/ast.js
@@ -0,0 +1,137 @@
+OC.L10N.register(
+ "passman",
+ {
+ "Passwords" : "Contraseñes",
+ "Passwords do not match" : "Les contraseñes nun concasen",
+ "General" : "Xeneral",
+ "Error loading file" : "Fallu cargando'l ficheru",
+ "An error happened during decryption" : "Asocedió un fallu nel descifráu",
+ "Credential created!" : "¡Creose la credencial!",
+ "Error downloading file, you probably don't have enough permissions" : "Fallu baxando'l ficheru, quiciabes nun tengas permisos abondos",
+ "Invalid QR code" : "Códigu QR non válidu",
+ "Decrypting credentials" : "Descifrando credenciales",
+ "Done" : "Fecho",
+ "Follow the following steps to import your file" : "Sigui los pasos de darréu pa importar el to ficheru",
+ "Credential has no label, skipping" : "La credencial nun tien etiquetes, saltando",
+ "Adding {{credential}}" : "Amestando {{credential}}",
+ "Added {{credential}}" : "Amestóse {{credential}}",
+ "Skip first row" : "Saltar primer filera",
+ "Saved!" : "¡Guardóse!",
+ "Toggle visibility" : "Alternar visibilidá",
+ "Copy to clipboard" : "Copiar al cartafueyu",
+ "Copied to clipboard!" : "¡Copióse al cartafueyu!",
+ "Generate password" : "Xenerar contraseña",
+ "Username" : "Nome d'usuariu",
+ "Repeat password" : "Repitir contraseña",
+ "Text" : "Testu",
+ "File" : "Ficheru",
+ "Add" : "Amestar",
+ "Expire date" : "Data de caducidá",
+ "No expire date set" : "Nun s'afitó data de caducidá",
+ "Day(s)" : "Día(es)",
+ "Month(s)" : "Mes(es)",
+ "Year(s)" : "Añu(os)",
+ "Password length" : "Llargor de contraseña",
+ "Minimum amount of digits" : "Cantidá mínima de díxitos",
+ "Use lowercase letters" : "Usar letres minúscules",
+ "Use special characters" : "Usar caráuteres especiales",
+ "Processing" : "Procesando",
+ "Total progress" : "Progresu total",
+ "About Passman" : "Tocante a Passman",
+ "Version" : "Versión",
+ "Donate to support development" : "Dona pa sofitar el desendolcu",
+ "Save your passwords with 1 click!" : "¡Guarda les tos contraseñes con 1 clic!",
+ "This process is irreversible" : "Esti procesu ye irreversible",
+ "Deleting {{password}}..." : "Desaniciando {{password}}...",
+ "Private Key" : "Clave privada",
+ "Public key" : "Clave pública",
+ "Key size" : "Tamañu de clave",
+ "Save keys" : "Guardar claves",
+ "Generate sharing keys" : "Xenerar claves de compartición",
+ "Generating sharing keys" : "Xenerando claves de comparticin",
+ "Minimum password stength" : "Fuercia mínimo de contraseña",
+ "Start scan" : "Aniciar escanéu",
+ "Result" : "Resultáu",
+ "A total of {{scan_result}} weak credentials were found." : "Alcontráronse un total de {{scan_result}} credenciales febles",
+ "Action" : "Aición",
+ "User" : "Usuariu",
+ "Files" : "Ficheros",
+ "Revisions" : "Revisiones",
+ "Pending" : "Pendiente",
+ "Show files" : "Amosar ficheros",
+ "Details" : "Detalles",
+ "Hide details" : "Anubrir detalles",
+ "Password score" : "Puntuación de contraseña",
+ "Pattern" : "Patrón",
+ "Showing revisions of" : "Amosando revisiones de ",
+ "Revision of" : "Revisión de",
+ "by" : "por",
+ "No revisions found." : "Nun s'alcontraron revisiones.",
+ "Label" : "Etiqueta",
+ "Restore revision" : "Restaurar revisión",
+ "Delete revision" : "Desaniciar revisión",
+ "Edit credential" : "Editar credencial",
+ "Save" : "Guardar",
+ "Cancel" : "Encaboxar",
+ "Settings" : "Axustes",
+ "All time" : "Tol tiempu",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Amosando {{number_filtered}} credenciales de {{credential_number}}",
+ "Search credential..." : "Guetar credencial...",
+ "Account" : "Cuenta",
+ "Password" : "Contraseña",
+ "OTP" : "OTP",
+ "E-mail" : "Corréu",
+ "URL" : "URL",
+ "Notes" : "Notes",
+ "Edit" : "Editar",
+ "Delete" : "Desaniciar",
+ "Share" : "Compartir",
+ "Destroy" : "Destruyir",
+ "You have incoming share requests." : "Tienes solicitúes de comparticiones entrantes.",
+ "Permissions" : "Permisos",
+ "Received from" : "Recibióse de",
+ "Date" : "Data",
+ "Accept" : "Aceutar",
+ "Decline" : "Refugar",
+ "Never" : "Enxamás",
+ "Reason to request deletion (optional):" : "Razón pa solicitar el desaniciu (opcional):",
+ "Warning! Adding credentials over http can be insecure!" : "¡Alvertencia! Amestar credenciales per http pue ser inseguro",
+ "Logout" : "Zarrar sesión",
+ "Donate" : "Donar",
+ "Someone has shared a credential with you." : "Daquién compartió una credencial contigo.",
+ "Loading..." : "Cargando...",
+ "Awwhh.... credential not found. Maybe it expired" : "Buuuuf... nun s'alcontró la credencial. Quiciabes caducare",
+ "Error while saving field" : "Fallu entrín se guardaba'l campu",
+ "A Passman item has expired" : "Caducó un elementu de Passman",
+ "A Passman item has been shared" : "Compartióse un elementu de Passman",
+ "A Passman item has been renamed" : "Renomóse un elementu de Passman",
+ "You created %1$s" : "Creesti %1$s",
+ "You updated %1$s" : "Anovesti %1$s",
+ "You renamed %1$s to %2$s" : "Renomesti %1$s a %2$s",
+ "You deleted %1$s" : "Desaniciesti %1$s",
+ "You recovered %1$s" : "Recuperesti %1$s",
+ "%s has been shared with a link" : "%s compartióse con un enllaz",
+ "Ignore" : "Inorar",
+ "%s shared \"%s\" with you. Click here to accept" : "%s compartió «%s» contigo. Primi equí p'aceutar",
+ "%s has declined your share request for \"%s\"." : "%s refugó la to solicitú de compartición pa «%s».",
+ "%s has accepted your share request for \"%s\"." : "%s aceutó la to solicitú de compartición pa «%s».",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Nun pue consiguise la información de versión",
+ "Passman Settings" : "Axustes de Passman",
+ "Github version:" : "Versión de GitHub:",
+ "A newer version of Passman is available" : "Ta disponible una versión nueva de Passman",
+ "Credential mover" : "Movedor de credenciales",
+ "Check for new versions" : "Comprobar versiones nueves",
+ "Enable HTTPS check" : "Habilitar comprobación HTTPS",
+ "Disable context menu" : "Deshabilitar menú contestual",
+ "Disable JavaScript debugger" : "Deshabilitar depurador JavaScript",
+ "Source account" : "Cuenta fonte",
+ "Destination account" : "Cuenta destín",
+ "Credentials moved!" : "¡Moviéronse les credenciales!",
+ "Reason" : "Razón",
+ "Connection to server lost" : "Perdióse la conexón col sirvidor",
+ "Saving..." : "Guardando...",
+ "Dismiss" : "Escartar",
+ "seconds ago" : "hai segundos"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/ast.json b/l10n/ast.json
new file mode 100644
index 00000000..5c64667b
--- /dev/null
+++ b/l10n/ast.json
@@ -0,0 +1,135 @@
+{ "translations": {
+ "Passwords" : "Contraseñes",
+ "Passwords do not match" : "Les contraseñes nun concasen",
+ "General" : "Xeneral",
+ "Error loading file" : "Fallu cargando'l ficheru",
+ "An error happened during decryption" : "Asocedió un fallu nel descifráu",
+ "Credential created!" : "¡Creose la credencial!",
+ "Error downloading file, you probably don't have enough permissions" : "Fallu baxando'l ficheru, quiciabes nun tengas permisos abondos",
+ "Invalid QR code" : "Códigu QR non válidu",
+ "Decrypting credentials" : "Descifrando credenciales",
+ "Done" : "Fecho",
+ "Follow the following steps to import your file" : "Sigui los pasos de darréu pa importar el to ficheru",
+ "Credential has no label, skipping" : "La credencial nun tien etiquetes, saltando",
+ "Adding {{credential}}" : "Amestando {{credential}}",
+ "Added {{credential}}" : "Amestóse {{credential}}",
+ "Skip first row" : "Saltar primer filera",
+ "Saved!" : "¡Guardóse!",
+ "Toggle visibility" : "Alternar visibilidá",
+ "Copy to clipboard" : "Copiar al cartafueyu",
+ "Copied to clipboard!" : "¡Copióse al cartafueyu!",
+ "Generate password" : "Xenerar contraseña",
+ "Username" : "Nome d'usuariu",
+ "Repeat password" : "Repitir contraseña",
+ "Text" : "Testu",
+ "File" : "Ficheru",
+ "Add" : "Amestar",
+ "Expire date" : "Data de caducidá",
+ "No expire date set" : "Nun s'afitó data de caducidá",
+ "Day(s)" : "Día(es)",
+ "Month(s)" : "Mes(es)",
+ "Year(s)" : "Añu(os)",
+ "Password length" : "Llargor de contraseña",
+ "Minimum amount of digits" : "Cantidá mínima de díxitos",
+ "Use lowercase letters" : "Usar letres minúscules",
+ "Use special characters" : "Usar caráuteres especiales",
+ "Processing" : "Procesando",
+ "Total progress" : "Progresu total",
+ "About Passman" : "Tocante a Passman",
+ "Version" : "Versión",
+ "Donate to support development" : "Dona pa sofitar el desendolcu",
+ "Save your passwords with 1 click!" : "¡Guarda les tos contraseñes con 1 clic!",
+ "This process is irreversible" : "Esti procesu ye irreversible",
+ "Deleting {{password}}..." : "Desaniciando {{password}}...",
+ "Private Key" : "Clave privada",
+ "Public key" : "Clave pública",
+ "Key size" : "Tamañu de clave",
+ "Save keys" : "Guardar claves",
+ "Generate sharing keys" : "Xenerar claves de compartición",
+ "Generating sharing keys" : "Xenerando claves de comparticin",
+ "Minimum password stength" : "Fuercia mínimo de contraseña",
+ "Start scan" : "Aniciar escanéu",
+ "Result" : "Resultáu",
+ "A total of {{scan_result}} weak credentials were found." : "Alcontráronse un total de {{scan_result}} credenciales febles",
+ "Action" : "Aición",
+ "User" : "Usuariu",
+ "Files" : "Ficheros",
+ "Revisions" : "Revisiones",
+ "Pending" : "Pendiente",
+ "Show files" : "Amosar ficheros",
+ "Details" : "Detalles",
+ "Hide details" : "Anubrir detalles",
+ "Password score" : "Puntuación de contraseña",
+ "Pattern" : "Patrón",
+ "Showing revisions of" : "Amosando revisiones de ",
+ "Revision of" : "Revisión de",
+ "by" : "por",
+ "No revisions found." : "Nun s'alcontraron revisiones.",
+ "Label" : "Etiqueta",
+ "Restore revision" : "Restaurar revisión",
+ "Delete revision" : "Desaniciar revisión",
+ "Edit credential" : "Editar credencial",
+ "Save" : "Guardar",
+ "Cancel" : "Encaboxar",
+ "Settings" : "Axustes",
+ "All time" : "Tol tiempu",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Amosando {{number_filtered}} credenciales de {{credential_number}}",
+ "Search credential..." : "Guetar credencial...",
+ "Account" : "Cuenta",
+ "Password" : "Contraseña",
+ "OTP" : "OTP",
+ "E-mail" : "Corréu",
+ "URL" : "URL",
+ "Notes" : "Notes",
+ "Edit" : "Editar",
+ "Delete" : "Desaniciar",
+ "Share" : "Compartir",
+ "Destroy" : "Destruyir",
+ "You have incoming share requests." : "Tienes solicitúes de comparticiones entrantes.",
+ "Permissions" : "Permisos",
+ "Received from" : "Recibióse de",
+ "Date" : "Data",
+ "Accept" : "Aceutar",
+ "Decline" : "Refugar",
+ "Never" : "Enxamás",
+ "Reason to request deletion (optional):" : "Razón pa solicitar el desaniciu (opcional):",
+ "Warning! Adding credentials over http can be insecure!" : "¡Alvertencia! Amestar credenciales per http pue ser inseguro",
+ "Logout" : "Zarrar sesión",
+ "Donate" : "Donar",
+ "Someone has shared a credential with you." : "Daquién compartió una credencial contigo.",
+ "Loading..." : "Cargando...",
+ "Awwhh.... credential not found. Maybe it expired" : "Buuuuf... nun s'alcontró la credencial. Quiciabes caducare",
+ "Error while saving field" : "Fallu entrín se guardaba'l campu",
+ "A Passman item has expired" : "Caducó un elementu de Passman",
+ "A Passman item has been shared" : "Compartióse un elementu de Passman",
+ "A Passman item has been renamed" : "Renomóse un elementu de Passman",
+ "You created %1$s" : "Creesti %1$s",
+ "You updated %1$s" : "Anovesti %1$s",
+ "You renamed %1$s to %2$s" : "Renomesti %1$s a %2$s",
+ "You deleted %1$s" : "Desaniciesti %1$s",
+ "You recovered %1$s" : "Recuperesti %1$s",
+ "%s has been shared with a link" : "%s compartióse con un enllaz",
+ "Ignore" : "Inorar",
+ "%s shared \"%s\" with you. Click here to accept" : "%s compartió «%s» contigo. Primi equí p'aceutar",
+ "%s has declined your share request for \"%s\"." : "%s refugó la to solicitú de compartición pa «%s».",
+ "%s has accepted your share request for \"%s\"." : "%s aceutó la to solicitú de compartición pa «%s».",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Nun pue consiguise la información de versión",
+ "Passman Settings" : "Axustes de Passman",
+ "Github version:" : "Versión de GitHub:",
+ "A newer version of Passman is available" : "Ta disponible una versión nueva de Passman",
+ "Credential mover" : "Movedor de credenciales",
+ "Check for new versions" : "Comprobar versiones nueves",
+ "Enable HTTPS check" : "Habilitar comprobación HTTPS",
+ "Disable context menu" : "Deshabilitar menú contestual",
+ "Disable JavaScript debugger" : "Deshabilitar depurador JavaScript",
+ "Source account" : "Cuenta fonte",
+ "Destination account" : "Cuenta destín",
+ "Credentials moved!" : "¡Moviéronse les credenciales!",
+ "Reason" : "Razón",
+ "Connection to server lost" : "Perdióse la conexón col sirvidor",
+ "Saving..." : "Guardando...",
+ "Dismiss" : "Escartar",
+ "seconds ago" : "hai segundos"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/ca.js b/l10n/ca.js
index 2d7c7ae0..de11d5c8 100644
--- a/l10n/ca.js
+++ b/l10n/ca.js
@@ -2,35 +2,64 @@ OC.L10N.register(
"passman",
{
"Passwords" : "Contrasenyes",
+ "Generating sharing keys ( %step / 2)" : "Generant les claus compartides ( %spas / 2)",
+ "Passwords do not match" : "Password did not match",
"General" : "General",
"Custom Fields" : "Camps personalitzats",
+ "Please fill in a label!" : "Si us plau, omple l'etiqueta!",
+ "Please fill in a value!" : "Si us plau, omple el valor!",
"Error loading file" : "Error al carregar l'arxiu",
"Credential created!" : "Credencials creades!",
"Credential deleted" : "Credencial eliminada",
"Credential updated" : "Credencial actualitzada",
+ "Credential recovered" : "Credencial recuperada",
"Credential destroyed" : "Credencial destruïda",
"Error downloading file, you probably don't have enough permissions" : "Error al descarregar l'arxiu, probablement no compta amb permisos suficients",
"Invalid QR code" : "Codi QR invàlid",
"Starting export" : "Començant la exportació",
+ "Decrypting credentials" : "Desencriptant les credencials",
"Done" : "Fet",
"File read successfully!" : "Lectura de l'arxiu correcta",
+ "Follow the following steps to import your file" : "Segueix els passos següents per importar el teu fitxer",
+ "Credential has no label, skipping" : "La credencial no té etiqueta, ometent",
"Adding {{credential}}" : "Afegint {{credential}}",
"Added {{credential}}" : "Afegida {{credential}}",
+ "Skipping credential, missing label on line {{line}}" : "Ometent credencial, mana etiqueta a la línia {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "Processades {{num}} credencials, començant a importar",
"Importing" : "Important",
+ "Start import" : "Inicia la importació",
+ "Select CSV file" : "Escull un fitxer CSV",
+ "Parsed {{rows}} lines from CSV file" : "Processades {{rows}} línies del fitxer CSV",
+ "Skip first row" : "Salta la primera fila",
+ "You need to assign the label field before you can start the import." : "Has d'assignar una etiqueta abans de començar la importació.",
+ "First 5 lines of the CSV are shown." : "Es mostren les 5 primeres línies del CSV.",
+ "Assign the proper fields to each column." : "Assigna els camps que pertoquin a cada columna.",
+ "Example imported credential" : "Exemple de credencial importada",
+ "Missing an importer? Try it with the generic CSV importer." : "Trobes a faltar un importador? Prova-ho amb l'importador genèric de CSV.",
+ "Go back to importers." : "Torna als importadors.",
"Revision deleted" : "Revisió detectada",
"Revision restored" : "Revisió restaurada",
+ "Save in passman" : "Guarda al passman",
"Settings saved" : "Paràmetres desats",
"General settings" : "Paràmetres generals",
+ "Password Audit" : "Auditoria de contrasenya",
"Password settings" : "Paràmetres de la contrasenya",
"Import credentials" : "Importar credencials",
"Export credentials" : "Exportar credencials",
"Sharing" : "Compartint",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Estàs segur que vols marxar? Això CORROMPRÀ totes les teves credencial",
"Your old password is incorrect!" : "La teva contrasenya antiga és incorrecta",
+ "New passwords do not match!" : "Les contrasenyes noves no concorden!",
"Share with users and groups" : "Comparteix amb usuaris i grups",
"Share link" : "Comparteix link",
+ "Credential unshared" : "Credencial descompartida",
"Credential shared" : "Credencial compartida",
"Saved!" : "Desat!",
+ "Poor" : "Pobre",
+ "Weak" : "Dèbil",
"Good" : "Correcte",
+ "Strong" : "Forta",
+ "Toggle visibility" : "Commuta la visibilitat",
"Copy to clipboard" : "Copiar al porta-papers",
"Copied to clipboard!" : "Copiat al porta-papers!",
"Generate password" : "Genera contrasenya",
@@ -40,6 +69,8 @@ OC.L10N.register(
"Username" : "Nom d'usuari",
"Repeat password" : "Repeteix la contrasenya",
"Add Tag" : "Afegeix etiqueta",
+ "Field label" : "Etiqueta del camp",
+ "Field value" : "Valor del camp",
"Choose a file" : "Escollir un arxiu",
"Text" : "Text",
"File" : "Arxiu",
@@ -51,25 +82,31 @@ OC.L10N.register(
"Filename" : "Nom de l'arxiu",
"Upload date" : "Data de pujada",
"Size" : "Mida",
+ "Upload or enter your OTP secret" : "Puja o entra el teu codi OTP",
"Current OTP settings" : "Paràmetres OTP actuals",
+ "Issuer" : "Emissor",
"Secret" : "Secret",
"Expire date" : "Data d'expiració",
+ "No expire date set" : "Sense data d'expiració",
"Renew interval" : "Renovar interval",
"Disabled" : "Inhabilitat",
"Day(s)" : "Dia(es)",
"Week(s)" : "Semana(es)",
"Month(s)" : "Mes(os)",
"Year(s)" : "Any(s)",
+ "Password generation settings" : "Paràmetres de generació de contrasenya",
"Password length" : "Longitud de la contrasenya",
"Use uppercase letters" : "Utilitzeu majúscules",
"Use lowercase letters" : "Utilitzeu minúscules",
"Use numbers" : "Utilitza números",
"Use special characters" : "Utilitzeu caràcters especials",
+ "Avoid ambiguous characters" : "Evita caràcters ambigus",
"Export type" : "Tipus d'exportaci",
"Export" : "Exporta",
"Change" : "Canvi",
"Processing" : "Processant",
"Total progress" : "Progrés total",
+ "About Passman" : "Sobre Passman",
"Version" : "Versió",
"Deleting {{password}}..." : "Esborrant {{password}}",
"Import type" : "Tipus d'importació",
diff --git a/l10n/ca.json b/l10n/ca.json
index e41cd958..217cd10f 100644
--- a/l10n/ca.json
+++ b/l10n/ca.json
@@ -1,34 +1,63 @@
{ "translations": {
"Passwords" : "Contrasenyes",
+ "Generating sharing keys ( %step / 2)" : "Generant les claus compartides ( %spas / 2)",
+ "Passwords do not match" : "Password did not match",
"General" : "General",
"Custom Fields" : "Camps personalitzats",
+ "Please fill in a label!" : "Si us plau, omple l'etiqueta!",
+ "Please fill in a value!" : "Si us plau, omple el valor!",
"Error loading file" : "Error al carregar l'arxiu",
"Credential created!" : "Credencials creades!",
"Credential deleted" : "Credencial eliminada",
"Credential updated" : "Credencial actualitzada",
+ "Credential recovered" : "Credencial recuperada",
"Credential destroyed" : "Credencial destruïda",
"Error downloading file, you probably don't have enough permissions" : "Error al descarregar l'arxiu, probablement no compta amb permisos suficients",
"Invalid QR code" : "Codi QR invàlid",
"Starting export" : "Començant la exportació",
+ "Decrypting credentials" : "Desencriptant les credencials",
"Done" : "Fet",
"File read successfully!" : "Lectura de l'arxiu correcta",
+ "Follow the following steps to import your file" : "Segueix els passos següents per importar el teu fitxer",
+ "Credential has no label, skipping" : "La credencial no té etiqueta, ometent",
"Adding {{credential}}" : "Afegint {{credential}}",
"Added {{credential}}" : "Afegida {{credential}}",
+ "Skipping credential, missing label on line {{line}}" : "Ometent credencial, mana etiqueta a la línia {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "Processades {{num}} credencials, començant a importar",
"Importing" : "Important",
+ "Start import" : "Inicia la importació",
+ "Select CSV file" : "Escull un fitxer CSV",
+ "Parsed {{rows}} lines from CSV file" : "Processades {{rows}} línies del fitxer CSV",
+ "Skip first row" : "Salta la primera fila",
+ "You need to assign the label field before you can start the import." : "Has d'assignar una etiqueta abans de començar la importació.",
+ "First 5 lines of the CSV are shown." : "Es mostren les 5 primeres línies del CSV.",
+ "Assign the proper fields to each column." : "Assigna els camps que pertoquin a cada columna.",
+ "Example imported credential" : "Exemple de credencial importada",
+ "Missing an importer? Try it with the generic CSV importer." : "Trobes a faltar un importador? Prova-ho amb l'importador genèric de CSV.",
+ "Go back to importers." : "Torna als importadors.",
"Revision deleted" : "Revisió detectada",
"Revision restored" : "Revisió restaurada",
+ "Save in passman" : "Guarda al passman",
"Settings saved" : "Paràmetres desats",
"General settings" : "Paràmetres generals",
+ "Password Audit" : "Auditoria de contrasenya",
"Password settings" : "Paràmetres de la contrasenya",
"Import credentials" : "Importar credencials",
"Export credentials" : "Exportar credencials",
"Sharing" : "Compartint",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Estàs segur que vols marxar? Això CORROMPRÀ totes les teves credencial",
"Your old password is incorrect!" : "La teva contrasenya antiga és incorrecta",
+ "New passwords do not match!" : "Les contrasenyes noves no concorden!",
"Share with users and groups" : "Comparteix amb usuaris i grups",
"Share link" : "Comparteix link",
+ "Credential unshared" : "Credencial descompartida",
"Credential shared" : "Credencial compartida",
"Saved!" : "Desat!",
+ "Poor" : "Pobre",
+ "Weak" : "Dèbil",
"Good" : "Correcte",
+ "Strong" : "Forta",
+ "Toggle visibility" : "Commuta la visibilitat",
"Copy to clipboard" : "Copiar al porta-papers",
"Copied to clipboard!" : "Copiat al porta-papers!",
"Generate password" : "Genera contrasenya",
@@ -38,6 +67,8 @@
"Username" : "Nom d'usuari",
"Repeat password" : "Repeteix la contrasenya",
"Add Tag" : "Afegeix etiqueta",
+ "Field label" : "Etiqueta del camp",
+ "Field value" : "Valor del camp",
"Choose a file" : "Escollir un arxiu",
"Text" : "Text",
"File" : "Arxiu",
@@ -49,25 +80,31 @@
"Filename" : "Nom de l'arxiu",
"Upload date" : "Data de pujada",
"Size" : "Mida",
+ "Upload or enter your OTP secret" : "Puja o entra el teu codi OTP",
"Current OTP settings" : "Paràmetres OTP actuals",
+ "Issuer" : "Emissor",
"Secret" : "Secret",
"Expire date" : "Data d'expiració",
+ "No expire date set" : "Sense data d'expiració",
"Renew interval" : "Renovar interval",
"Disabled" : "Inhabilitat",
"Day(s)" : "Dia(es)",
"Week(s)" : "Semana(es)",
"Month(s)" : "Mes(os)",
"Year(s)" : "Any(s)",
+ "Password generation settings" : "Paràmetres de generació de contrasenya",
"Password length" : "Longitud de la contrasenya",
"Use uppercase letters" : "Utilitzeu majúscules",
"Use lowercase letters" : "Utilitzeu minúscules",
"Use numbers" : "Utilitza números",
"Use special characters" : "Utilitzeu caràcters especials",
+ "Avoid ambiguous characters" : "Evita caràcters ambigus",
"Export type" : "Tipus d'exportaci",
"Export" : "Exporta",
"Change" : "Canvi",
"Processing" : "Processant",
"Total progress" : "Progrés total",
+ "About Passman" : "Sobre Passman",
"Version" : "Versió",
"Deleting {{password}}..." : "Esborrant {{password}}",
"Import type" : "Tipus d'importació",
diff --git a/l10n/cs.js b/l10n/cs.js
index 737e5724..c687fbc2 100644
--- a/l10n/cs.js
+++ b/l10n/cs.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Naparsováno {{num}} pověření, začíná import",
"Importing" : "Importování",
"Start import" : "Spustit import",
+ "Select CSV file" : "Vybrat soubor CSV",
+ "Parsed {{rows}} lines from CSV file" : "Z CSV souboru bylo parsováno {{rows}} řádků",
"Skip first row" : "Přeskočit první řádek",
"You need to assign the label field before you can start the import." : "Před začátkem importu musíte přiřadit pole popisku.",
+ "First 5 lines of the CSV are shown." : "Je zobrazeno prvních 5 řádků CSV souboru",
"Assign the proper fields to each column." : "Přiřaďte každému sloupci správné hodnoty.",
"Example imported credential" : "Příklad importovaného pověření",
+ "Missing an importer? Try it with the generic CSV importer." : "Chybí importovač? Zkuste obecný importovač CSV.",
"Go back to importers." : "Přejít zpět k importovačům.",
"Revision deleted" : "Revize smazána",
"Revision restored" : "Revize obnovena",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Uložit klíče",
"Generate sharing keys" : "Generovat sdílecí klíče",
"Generating sharing keys" : "Generování sdílecích klíčů",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Nástro hesel projde vaše heslo, spočítá průměrný čas prolomení a pokud je pod hranicí, tak ho zobrazí",
"Minimum password stength" : "Nemenší síla hesla",
+ "Start scan" : "Zahájit sken",
+ "Result" : "Výsledek",
+ "A total of {{scan_result}} weak credentials were found." : "Bylo nalezeno celkem {{scan_result}} slabých pověření.",
"Score" : "Skóre",
"Action" : "Akce",
"Search users or groups..." : "Hledat uživatele a skupiny...",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Jít zpět k trezorům",
"Please input the password for" : "Prosím, zadejte heslo pro",
"Set this vault as default." : "Nastavit tento trezor jako výchozí.",
+ "Log into this vault automatically." : "Automaticky se přihlašovat k tomuto trezoru.",
"Logout of this vault automatically after: " : "Automaticky se z tohoto trezoru odhlásit po: ",
"Decrypt vault" : "Dešifrovat trezor",
"Seems you lost the vault password and you're unable to login." : "Vypadá to, že jste ztratil(a) heslo k trezoru a nemůžete se přihlásit.",
+ "If you want this vault to be removed you can request that here." : "Pokud chcete, aby byl tento trezor odstraněn, můžete o jeho odstranění požádat zde.",
+ "An admin then accepts to the request (or not)" : "Administrátor pak přijme požadavek (nebo ne)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Poté,co administrátor potvrdí destrukci tohoto trezoru, všechna pověření budou ztracena",
"Reason to request deletion (optional):" : "Důvod žádosti o smazání (volitelné):",
"Request vault destruction" : "Požádat o destrukci trezoru",
"Yes, request an admin to destroy this vault" : "Ano, požádat administrátora o zničení tohoto trezoru",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s s tebou sdílí \"%s\". Kliknout pro přijetí",
"%s has declined your share request for \"%s\"." : "%s zamítl(a) tvůj požadavek na sdílení \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s přijal(a) tvůj požadavek na sdílení \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Nepodařilo se získat informace o verzi",
"Passman Settings" : "Nastavení passmanu",
"Github version:" : "Github verze:",
+ "A newer version of Passman is available" : "Je dostupná nová verze Passmanu",
"Password sharing" : "Sdílení hesla",
"Credential mover" : "Přesunovač pověření",
"Vault destruction requests" : "Požadavky na zničení trezoru",
"Check for new versions" : "Zkontrolovat nové verze",
"Enable HTTPS check" : "Povolit kontrolu HTTPS",
"Disable context menu" : "Zakázat kontextové menu",
+ "Disable JavaScript debugger" : "Zakázat ladění JavaScriptu",
"Allow users on this server to share passwords with a link" : "Povolit na tomto serveru uživatelům sdílení hesel pomocí odkazu",
"Allow users on this server to share passwords with other users" : "Povolit na tomto serveru uživatelům sdílení hesel s ostatními uživateli",
"Move credentials from one account to another" : "Přesuňte pověření z jednoho účtu do druhého",
diff --git a/l10n/cs.json b/l10n/cs.json
index 8218039d..780ae40b 100644
--- a/l10n/cs.json
+++ b/l10n/cs.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Naparsováno {{num}} pověření, začíná import",
"Importing" : "Importování",
"Start import" : "Spustit import",
+ "Select CSV file" : "Vybrat soubor CSV",
+ "Parsed {{rows}} lines from CSV file" : "Z CSV souboru bylo parsováno {{rows}} řádků",
"Skip first row" : "Přeskočit první řádek",
"You need to assign the label field before you can start the import." : "Před začátkem importu musíte přiřadit pole popisku.",
+ "First 5 lines of the CSV are shown." : "Je zobrazeno prvních 5 řádků CSV souboru",
"Assign the proper fields to each column." : "Přiřaďte každému sloupci správné hodnoty.",
"Example imported credential" : "Příklad importovaného pověření",
+ "Missing an importer? Try it with the generic CSV importer." : "Chybí importovač? Zkuste obecný importovač CSV.",
"Go back to importers." : "Přejít zpět k importovačům.",
"Revision deleted" : "Revize smazána",
"Revision restored" : "Revize obnovena",
@@ -136,7 +140,11 @@
"Save keys" : "Uložit klíče",
"Generate sharing keys" : "Generovat sdílecí klíče",
"Generating sharing keys" : "Generování sdílecích klíčů",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Nástro hesel projde vaše heslo, spočítá průměrný čas prolomení a pokud je pod hranicí, tak ho zobrazí",
"Minimum password stength" : "Nemenší síla hesla",
+ "Start scan" : "Zahájit sken",
+ "Result" : "Výsledek",
+ "A total of {{scan_result}} weak credentials were found." : "Bylo nalezeno celkem {{scan_result}} slabých pověření.",
"Score" : "Skóre",
"Action" : "Akce",
"Search users or groups..." : "Hledat uživatele a skupiny...",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Jít zpět k trezorům",
"Please input the password for" : "Prosím, zadejte heslo pro",
"Set this vault as default." : "Nastavit tento trezor jako výchozí.",
+ "Log into this vault automatically." : "Automaticky se přihlašovat k tomuto trezoru.",
"Logout of this vault automatically after: " : "Automaticky se z tohoto trezoru odhlásit po: ",
"Decrypt vault" : "Dešifrovat trezor",
"Seems you lost the vault password and you're unable to login." : "Vypadá to, že jste ztratil(a) heslo k trezoru a nemůžete se přihlásit.",
+ "If you want this vault to be removed you can request that here." : "Pokud chcete, aby byl tento trezor odstraněn, můžete o jeho odstranění požádat zde.",
+ "An admin then accepts to the request (or not)" : "Administrátor pak přijme požadavek (nebo ne)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Poté,co administrátor potvrdí destrukci tohoto trezoru, všechna pověření budou ztracena",
"Reason to request deletion (optional):" : "Důvod žádosti o smazání (volitelné):",
"Request vault destruction" : "Požádat o destrukci trezoru",
"Yes, request an admin to destroy this vault" : "Ano, požádat administrátora o zničení tohoto trezoru",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s s tebou sdílí \"%s\". Kliknout pro přijetí",
"%s has declined your share request for \"%s\"." : "%s zamítl(a) tvůj požadavek na sdílení \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s přijal(a) tvůj požadavek na sdílení \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Nepodařilo se získat informace o verzi",
"Passman Settings" : "Nastavení passmanu",
"Github version:" : "Github verze:",
+ "A newer version of Passman is available" : "Je dostupná nová verze Passmanu",
"Password sharing" : "Sdílení hesla",
"Credential mover" : "Přesunovač pověření",
"Vault destruction requests" : "Požadavky na zničení trezoru",
"Check for new versions" : "Zkontrolovat nové verze",
"Enable HTTPS check" : "Povolit kontrolu HTTPS",
"Disable context menu" : "Zakázat kontextové menu",
+ "Disable JavaScript debugger" : "Zakázat ladění JavaScriptu",
"Allow users on this server to share passwords with a link" : "Povolit na tomto serveru uživatelům sdílení hesel pomocí odkazu",
"Allow users on this server to share passwords with other users" : "Povolit na tomto serveru uživatelům sdílení hesel s ostatními uživateli",
"Move credentials from one account to another" : "Přesuňte pověření z jednoho účtu do druhého",
diff --git a/l10n/de.js b/l10n/de.js
index c1d34be2..b7aeded4 100644
--- a/l10n/de.js
+++ b/l10n/de.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "{{num}} Anmeldeinformationen eingelesen, Import wird gestartet",
"Importing" : "Importieren",
"Start import" : "Import starten",
+ "Select CSV file" : "CSV-Datei auswählen",
+ "Parsed {{rows}} lines from CSV file" : "{{rows}} Zeilen der CSV-Datei gelesen",
"Skip first row" : "Erste Zeile überspringen",
"You need to assign the label field before you can start the import." : "Sie müssen das Bezeichnunsg-Feld zuordnen, bevor Sie den Import starten können.",
+ "First 5 lines of the CSV are shown." : "Die ersten 5 Zeilen der CSV-Datei werden angezeigt.",
"Assign the proper fields to each column." : "Die richtigen Felder zu jeder Spalte zuordnen",
"Example imported credential" : "Beispiel einer importierten Anmeldeinformation",
+ "Missing an importer? Try it with the generic CSV importer." : "Fehlt ein Importer? Versuchen Sie es mit dem generischen CSV-Importer.",
"Go back to importers." : "Zurück zur Importfunktion.",
"Revision deleted" : "Überarbeitung gelöscht",
"Revision restored" : "Überarbeitung wiederhergestellt",
@@ -62,7 +66,7 @@ OC.L10N.register(
"Toggle visibility" : "Sichtbarkeit umschalten",
"Copy to clipboard" : "In die Zwischenablage kopieren",
"Copied to clipboard!" : "In die Zwischenablage kopiert!",
- "Generate password" : "Passwort generieren",
+ "Generate password" : "Passwort erzeugen",
"Copy password to clipboard" : "Passwort in die Zwischenablage kopieren",
"Password copied to clipboard!" : "Passwort in die Zwischenablage kopiert!",
"Complete" : "Fertigstellen",
@@ -126,7 +130,7 @@ OC.L10N.register(
"Vault password" : "Tresor-Passwort",
"This process is irreversible" : "Dieser Vorgang kann nicht rückgängig gemacht werden",
"Delete my precious passwords" : "Meine wertvollen Passwörter löschen",
- "Deleting {{password}}..." : "{{password}} löschen...",
+ "Deleting {{password}}..." : "{{password}} löschen…",
"Yes, delete my precious passwords" : "Ja, bitte alle meine wertvollen Passwörter löschen",
"Import type" : "Import-Typ",
"Import" : "Importieren",
@@ -138,10 +142,14 @@ OC.L10N.register(
"Save keys" : "Schlüssel speichern",
"Generate sharing keys" : "Schlüssel zum Teilen erzeugen",
"Generating sharing keys" : "Erzeuge Schlüssel zum Teilen",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Das Passwort-Tool analysiert dein Passwort, berechnet die Zeit zum knacken des Passwortes und listet die Passwörter auf die unter dem Grenzwert liegen. ",
"Minimum password stength" : "Minimale Passwortstärke",
+ "Start scan" : "Einen Scan starten",
+ "Result" : "Ergebnis",
+ "A total of {{scan_result}} weak credentials were found." : "Es wurden insgesamt {{scan_result}} schwache Anmeldeinformationen wurden gefunden.",
"Score" : "Bewertung",
"Action" : "Aktion",
- "Search users or groups..." : "Benutzer oder Gruppen suchen...",
+ "Search users or groups..." : "Benutzer oder Gruppen suchen…",
"Missing users? Only users that have vaults are shown." : "Nutzer gesucht? Es werden nur Nutzer mit einem Tresor angezeigt.",
"Cyphering" : "Verschlüsselung",
"Uploading" : "Lade hoch",
@@ -198,7 +206,7 @@ OC.L10N.register(
"Showing deleted since" : "Anzeigen gelöscht seit",
"All time" : "Gesamte Zeit",
"Showing {{number_filtered}} of {{credential_number}} credentials" : "{{number_filtered}} of {{credential_number}} Anmeldeinformationen anzeigen",
- "Search credential..." : "Anmeldeinformation suchen...",
+ "Search credential..." : "Anmeldeinformation suchen…",
"Account" : "Konto",
"Password" : "Passwort",
"OTP" : "OTP (One Time Passwort)",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Zurück zu den Tresoren",
"Please input the password for" : "Passwort eingeben für",
"Set this vault as default." : "Diesen Tresor als Standard setzen.",
+ "Log into this vault automatically." : "In diesen Tresor automatisch anmelden.",
"Logout of this vault automatically after: " : "Von diesem Tresor automatisch abmelden nach:",
"Decrypt vault" : "Tresor entschlüsseln",
"Seems you lost the vault password and you're unable to login." : "Es scheint, als hätten Sie das Tresor-Passwort vergessen und nicht mehr in der Lage, sich anzumelden.",
+ "If you want this vault to be removed you can request that here." : "Wenn du möchtest, dass dieser Tresor gelöscht wird, dann kannst du dies hier anfordern.",
+ "An admin then accepts to the request (or not)" : "Ein Admin akzeptiert dann diese Anfrage (oder nicht)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Wenn ein Administrator diesen Tresor löscht, gehen alle enthaltenen Anmeldeinformationen verloren",
"Reason to request deletion (optional):" : "Grund die Löschung anzufordern (optional):",
"Request vault destruction" : "Fordere Tresor-Löschung an",
"Yes, request an admin to destroy this vault" : "Ja, bitte einen Administrator diesen Tresor zu löschen",
@@ -246,15 +258,15 @@ OC.L10N.register(
"Request removed" : "Anfrage entfernt",
"Destruction request pending" : "Lösch-Anforderung wartet",
"Warning! Adding credentials over http can be insecure!" : "Achtung! Zugangsdaten über http kann unsicher sein!",
- "Logged in to {{vault_name}}" : "Eingeloggt in {{vault_name}}",
+ "Logged in to {{vault_name}}" : "Angemeldet in {{vault_name}}",
"Change vault" : "Wechsle Tresor",
"Deleted credentials" : "Zugangsdaten gelöscht",
- "Logout" : "Ausloggen",
+ "Logout" : "Abmelden",
"Donate" : "Spende",
"Someone has shared a credential with you." : "Jemand hat Zugangsdaten mit Dir geteilt.",
"Click here to request it" : "Hier klicken um es anzufordern",
- "Loading..." : "Lade...",
- "Awwhh.... credential not found. Maybe it expired" : "Oh... Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
+ "Loading..." : "Lade…",
+ "Awwhh.... credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
"Error while saving field" : "Fehler beim Speichern des Feldes",
"A Passman item has been created, modified or deleted" : "Ein Passman-Element wurde erstellt, modifiziert oder gelöscht",
"A Passman item has expired" : "Ein Passman-Element ist abgelaufen",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s teilt \"%s\" mit dir. Um dies zu akzeptieren, klicke hier",
"%s has declined your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Dir abgelehnt.",
"%s has accepted your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Dir akzeptiert.",
+ "Passman" : "Passman",
"Unable to get version info" : "Versionsinfo konnte nicht ermittelt werden",
"Passman Settings" : "Passman-Einstellungen",
"Github version:" : "Github-Version:",
+ "A newer version of Passman is available" : "Eine neue Version von Passman ist vefügbar.",
"Password sharing" : "Passwort teilen",
"Credential mover" : "Verschiebung der Anmeldeinformationen",
"Vault destruction requests" : "Tresor-Löschungs-Anforderungen",
"Check for new versions" : "Nach neuerer Version suchen",
"Enable HTTPS check" : "HTTPS-Prüfung aktivieren",
"Disable context menu" : "Kontextmenü deaktivieren",
+ "Disable JavaScript debugger" : "JavaScript-Debugger deaktivieren",
"Allow users on this server to share passwords with a link" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern via Link",
"Allow users on this server to share passwords with other users" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern mit anderen Benutzern",
"Move credentials from one account to another" : "Verschiebe Anmeldeinformationen von einem Konto zu einem anderen",
diff --git a/l10n/de.json b/l10n/de.json
index 4e1bc143..85521984 100644
--- a/l10n/de.json
+++ b/l10n/de.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "{{num}} Anmeldeinformationen eingelesen, Import wird gestartet",
"Importing" : "Importieren",
"Start import" : "Import starten",
+ "Select CSV file" : "CSV-Datei auswählen",
+ "Parsed {{rows}} lines from CSV file" : "{{rows}} Zeilen der CSV-Datei gelesen",
"Skip first row" : "Erste Zeile überspringen",
"You need to assign the label field before you can start the import." : "Sie müssen das Bezeichnunsg-Feld zuordnen, bevor Sie den Import starten können.",
+ "First 5 lines of the CSV are shown." : "Die ersten 5 Zeilen der CSV-Datei werden angezeigt.",
"Assign the proper fields to each column." : "Die richtigen Felder zu jeder Spalte zuordnen",
"Example imported credential" : "Beispiel einer importierten Anmeldeinformation",
+ "Missing an importer? Try it with the generic CSV importer." : "Fehlt ein Importer? Versuchen Sie es mit dem generischen CSV-Importer.",
"Go back to importers." : "Zurück zur Importfunktion.",
"Revision deleted" : "Überarbeitung gelöscht",
"Revision restored" : "Überarbeitung wiederhergestellt",
@@ -60,7 +64,7 @@
"Toggle visibility" : "Sichtbarkeit umschalten",
"Copy to clipboard" : "In die Zwischenablage kopieren",
"Copied to clipboard!" : "In die Zwischenablage kopiert!",
- "Generate password" : "Passwort generieren",
+ "Generate password" : "Passwort erzeugen",
"Copy password to clipboard" : "Passwort in die Zwischenablage kopieren",
"Password copied to clipboard!" : "Passwort in die Zwischenablage kopiert!",
"Complete" : "Fertigstellen",
@@ -124,7 +128,7 @@
"Vault password" : "Tresor-Passwort",
"This process is irreversible" : "Dieser Vorgang kann nicht rückgängig gemacht werden",
"Delete my precious passwords" : "Meine wertvollen Passwörter löschen",
- "Deleting {{password}}..." : "{{password}} löschen...",
+ "Deleting {{password}}..." : "{{password}} löschen…",
"Yes, delete my precious passwords" : "Ja, bitte alle meine wertvollen Passwörter löschen",
"Import type" : "Import-Typ",
"Import" : "Importieren",
@@ -136,10 +140,14 @@
"Save keys" : "Schlüssel speichern",
"Generate sharing keys" : "Schlüssel zum Teilen erzeugen",
"Generating sharing keys" : "Erzeuge Schlüssel zum Teilen",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Das Passwort-Tool analysiert dein Passwort, berechnet die Zeit zum knacken des Passwortes und listet die Passwörter auf die unter dem Grenzwert liegen. ",
"Minimum password stength" : "Minimale Passwortstärke",
+ "Start scan" : "Einen Scan starten",
+ "Result" : "Ergebnis",
+ "A total of {{scan_result}} weak credentials were found." : "Es wurden insgesamt {{scan_result}} schwache Anmeldeinformationen wurden gefunden.",
"Score" : "Bewertung",
"Action" : "Aktion",
- "Search users or groups..." : "Benutzer oder Gruppen suchen...",
+ "Search users or groups..." : "Benutzer oder Gruppen suchen…",
"Missing users? Only users that have vaults are shown." : "Nutzer gesucht? Es werden nur Nutzer mit einem Tresor angezeigt.",
"Cyphering" : "Verschlüsselung",
"Uploading" : "Lade hoch",
@@ -196,7 +204,7 @@
"Showing deleted since" : "Anzeigen gelöscht seit",
"All time" : "Gesamte Zeit",
"Showing {{number_filtered}} of {{credential_number}} credentials" : "{{number_filtered}} of {{credential_number}} Anmeldeinformationen anzeigen",
- "Search credential..." : "Anmeldeinformation suchen...",
+ "Search credential..." : "Anmeldeinformation suchen…",
"Account" : "Konto",
"Password" : "Passwort",
"OTP" : "OTP (One Time Passwort)",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Zurück zu den Tresoren",
"Please input the password for" : "Passwort eingeben für",
"Set this vault as default." : "Diesen Tresor als Standard setzen.",
+ "Log into this vault automatically." : "In diesen Tresor automatisch anmelden.",
"Logout of this vault automatically after: " : "Von diesem Tresor automatisch abmelden nach:",
"Decrypt vault" : "Tresor entschlüsseln",
"Seems you lost the vault password and you're unable to login." : "Es scheint, als hätten Sie das Tresor-Passwort vergessen und nicht mehr in der Lage, sich anzumelden.",
+ "If you want this vault to be removed you can request that here." : "Wenn du möchtest, dass dieser Tresor gelöscht wird, dann kannst du dies hier anfordern.",
+ "An admin then accepts to the request (or not)" : "Ein Admin akzeptiert dann diese Anfrage (oder nicht)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Wenn ein Administrator diesen Tresor löscht, gehen alle enthaltenen Anmeldeinformationen verloren",
"Reason to request deletion (optional):" : "Grund die Löschung anzufordern (optional):",
"Request vault destruction" : "Fordere Tresor-Löschung an",
"Yes, request an admin to destroy this vault" : "Ja, bitte einen Administrator diesen Tresor zu löschen",
@@ -244,15 +256,15 @@
"Request removed" : "Anfrage entfernt",
"Destruction request pending" : "Lösch-Anforderung wartet",
"Warning! Adding credentials over http can be insecure!" : "Achtung! Zugangsdaten über http kann unsicher sein!",
- "Logged in to {{vault_name}}" : "Eingeloggt in {{vault_name}}",
+ "Logged in to {{vault_name}}" : "Angemeldet in {{vault_name}}",
"Change vault" : "Wechsle Tresor",
"Deleted credentials" : "Zugangsdaten gelöscht",
- "Logout" : "Ausloggen",
+ "Logout" : "Abmelden",
"Donate" : "Spende",
"Someone has shared a credential with you." : "Jemand hat Zugangsdaten mit Dir geteilt.",
"Click here to request it" : "Hier klicken um es anzufordern",
- "Loading..." : "Lade...",
- "Awwhh.... credential not found. Maybe it expired" : "Oh... Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
+ "Loading..." : "Lade…",
+ "Awwhh.... credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
"Error while saving field" : "Fehler beim Speichern des Feldes",
"A Passman item has been created, modified or deleted" : "Ein Passman-Element wurde erstellt, modifiziert oder gelöscht",
"A Passman item has expired" : "Ein Passman-Element ist abgelaufen",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s teilt \"%s\" mit dir. Um dies zu akzeptieren, klicke hier",
"%s has declined your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Dir abgelehnt.",
"%s has accepted your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Dir akzeptiert.",
+ "Passman" : "Passman",
"Unable to get version info" : "Versionsinfo konnte nicht ermittelt werden",
"Passman Settings" : "Passman-Einstellungen",
"Github version:" : "Github-Version:",
+ "A newer version of Passman is available" : "Eine neue Version von Passman ist vefügbar.",
"Password sharing" : "Passwort teilen",
"Credential mover" : "Verschiebung der Anmeldeinformationen",
"Vault destruction requests" : "Tresor-Löschungs-Anforderungen",
"Check for new versions" : "Nach neuerer Version suchen",
"Enable HTTPS check" : "HTTPS-Prüfung aktivieren",
"Disable context menu" : "Kontextmenü deaktivieren",
+ "Disable JavaScript debugger" : "JavaScript-Debugger deaktivieren",
"Allow users on this server to share passwords with a link" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern via Link",
"Allow users on this server to share passwords with other users" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern mit anderen Benutzern",
"Move credentials from one account to another" : "Verschiebe Anmeldeinformationen von einem Konto zu einem anderen",
diff --git a/l10n/de_DE.js b/l10n/de_DE.js
index 3f5d335d..624bf066 100644
--- a/l10n/de_DE.js
+++ b/l10n/de_DE.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "{{num}} Anmeldeinformationen eingelesen, Import wird gestartet",
"Importing" : "Wird importiert",
"Start import" : "Beginne Import",
+ "Select CSV file" : "CSV-Datei auswählen",
+ "Parsed {{rows}} lines from CSV file" : "{{rows}} Zeilen der CSV-Datei gelesen",
"Skip first row" : "Erste Reihe überspringen",
"You need to assign the label field before you can start the import." : "Sie müssen das Beschriftungsfeld festlegen bevor Sie den Import beginnen können.",
+ "First 5 lines of the CSV are shown." : "Die ersten 5 Zeilen der CSV-Datei werden angezeigt.",
"Assign the proper fields to each column." : "Die passenden Felder jeder Spalte zuweisen.",
"Example imported credential" : "Beispiel-Anmeldeinformationen importiert",
+ "Missing an importer? Try it with the generic CSV importer." : "Fehlt ein Importer? Versuchen Sie es mit dem generischen CSV-Importer.",
"Go back to importers." : "Zurück zu den Importern.",
"Revision deleted" : "Revision gelöscht",
"Revision restored" : "Revision wiederhergestellt",
@@ -62,7 +66,7 @@ OC.L10N.register(
"Toggle visibility" : "Sichtbarkeit umschalten",
"Copy to clipboard" : "In die Zwischenablage kopieren",
"Copied to clipboard!" : "In die Zwischenablage kopiert!",
- "Generate password" : "Passwort generieren",
+ "Generate password" : "Passwort erzeugen",
"Copy password to clipboard" : "Passwort in die Zwischenablage kopieren",
"Password copied to clipboard!" : "Passwort in die Zwischenablage kopiert!",
"Complete" : "Fertigstellen",
@@ -126,7 +130,7 @@ OC.L10N.register(
"Vault password" : "Tresor-Passwort",
"This process is irreversible" : "Dieser Vorgang ist unumkehrbar",
"Delete my precious passwords" : "Meine wertvollen Passwörter löschen",
- "Deleting {{password}}..." : "{{password}} löschen...",
+ "Deleting {{password}}..." : "{{password}} löschen …",
"Yes, delete my precious passwords" : "Ja, bitte meine wertvollen Passwörter löschen",
"Import type" : "Import-Typ",
"Import" : "Importieren",
@@ -138,10 +142,14 @@ OC.L10N.register(
"Save keys" : "Schlüssel speichern",
"Generate sharing keys" : "Schlüssel zum Teilen erzeugen",
"Generating sharing keys" : "Erzeuge Schlüssel zum Teilen",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Das Passwort-Tool analysiert Ihr Passwort, berechnet die Zeit zum knacken des Passwortes und listet die Passwörter auf die unter dem Grenzwert liegen. ",
"Minimum password stength" : "Minimale Passwortstärke",
+ "Start scan" : "Einen Scan starten",
+ "Result" : "Ergebnis",
+ "A total of {{scan_result}} weak credentials were found." : "Es wurden insgesamt {{scan_result}} schwache Anmeldeinformationen wurden gefunden.",
"Score" : "Bewertung",
"Action" : "Aktion",
- "Search users or groups..." : "Suche Benutzer oder Gruppen...",
+ "Search users or groups..." : "Suche Benutzer oder Gruppen …",
"Missing users? Only users that have vaults are shown." : "Nutzer gesucht? Es werden nur Nutzer mit einem Tresor angezeigt.",
"Cyphering" : "Verschlüsselung",
"Uploading" : "Lade hoch",
@@ -198,12 +206,12 @@ OC.L10N.register(
"Showing deleted since" : "Anzeigen gelöscht seit",
"All time" : "Gesamte Zeit",
"Showing {{number_filtered}} of {{credential_number}} credentials" : "{{number_filtered}} of {{credential_number}} Anmeldeinformationen anzeigen",
- "Search credential..." : "Anmeldeinformation suchen...",
+ "Search credential..." : "Anmeldeinformation suchen …",
"Account" : "Konto",
"Password" : "Passwort",
"OTP" : "OTP (One Time Passwort)",
"E-mail" : "E-Mail",
- "URL" : "Url",
+ "URL" : "URL",
"Notes" : "Notizen",
"Expire time" : "Ablaufzeit",
"Changed" : "Geändert",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Zurück zu den Tresoren",
"Please input the password for" : "Passwort eingeben für",
"Set this vault as default." : "Diesen Tresor als Standard setzen.",
+ "Log into this vault automatically." : "In diesen Tresor automatisch anmelden.",
"Logout of this vault automatically after: " : "Von diesem Tresor automatisch abmelden nach:",
"Decrypt vault" : "Tresor entschlüsseln",
- "Seems you lost the vault password and you're unable to login." : "Es scheint, als hätten Sie das Passwort für den Tresor verloren und könnten sich nicht mehr einloggen.",
+ "Seems you lost the vault password and you're unable to login." : "Es scheint, als hätten Sie das Passwort für den Tresor verloren und könnten sich nicht mehr anmelden.",
+ "If you want this vault to be removed you can request that here." : "Wenn Sie möchten, dass dieser Tresor gelöscht wird, dann können Sie dies hier anfordern.",
+ "An admin then accepts to the request (or not)" : "Ein Admin akzeptiert dann diese Anfrage (oder nicht)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Wenn ein Administrator diesen Tresor löscht, gehen alle enthaltenen Anmeldeinformationen verloren",
"Reason to request deletion (optional):" : "Grund für die Lösch-Anfrage (optional):",
"Request vault destruction" : "Beantrage die Zerstörung des Tresors",
"Yes, request an admin to destroy this vault" : "Ja, beauftrage einen Administrator, den Tresor zu zerstören.",
@@ -246,15 +258,15 @@ OC.L10N.register(
"Request removed" : "Anfrage entfernt",
"Destruction request pending" : "Auftrag zur Zerstörung in der Warteschleife",
"Warning! Adding credentials over http can be insecure!" : "Achtung! Zugangsdaten über http kann unsicher sein!",
- "Logged in to {{vault_name}}" : "Eingeloggt in {{vault_name}}",
+ "Logged in to {{vault_name}}" : "Angemeldet in {{vault_name}}",
"Change vault" : "Wechsle Tresor",
"Deleted credentials" : "Zugangsdaten gelöscht",
- "Logout" : "Ausloggen",
+ "Logout" : "Abmelden",
"Donate" : "Spende",
"Someone has shared a credential with you." : "Jemand hat Zugangsdaten mit Ihnen geteilt.",
"Click here to request it" : "Hier klicken um es anzufordern",
- "Loading..." : "Lade...",
- "Awwhh.... credential not found. Maybe it expired" : "Oh... Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
+ "Loading..." : "Lade …",
+ "Awwhh.... credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
"Error while saving field" : "Fehler beim Speichern des Feldes",
"A Passman item has been created, modified or deleted" : "Ein Passman-Element wurde erstellt, modifiziert oder gelöscht",
"A Passman item has expired" : "Ein Passman-Element ist abgelaufen",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s teilt \"%s\" mit Ihnen. Um dies zu akzeptieren, klicken Sie bitte hier",
"%s has declined your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Ihnen abgelehnt.",
"%s has accepted your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Ihnen akzeptiert.",
+ "Passman" : "Passman",
"Unable to get version info" : "Versionsinfo konnte nicht ermittelt werden",
"Passman Settings" : "Passman-Einstellungen",
"Github version:" : "Github-Version:",
+ "A newer version of Passman is available" : "Eine neue Version von Passman ist vefügbar.",
"Password sharing" : "Passwort teilen",
"Credential mover" : "Zugangsdaten verschieben",
"Vault destruction requests" : "Aufträge zur Zerstörung des Tresors",
"Check for new versions" : "Nach neuerer Version suchen",
"Enable HTTPS check" : "HTTPS-Prüfung aktivieren",
"Disable context menu" : "Kontextmenü deaktivieren",
+ "Disable JavaScript debugger" : "JavaScript-Debugger deaktivieren",
"Allow users on this server to share passwords with a link" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern via Link",
"Allow users on this server to share passwords with other users" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern mit anderen Benutzern",
"Move credentials from one account to another" : "Verschiebe Zugangsdaten von einem Konto zu einem anderen",
@@ -305,7 +320,7 @@ OC.L10N.register(
"Reason" : "Grund",
"Connection to server lost" : "Verbindung zum Server verloren",
"Problem loading page, reloading in 5 seconds" : "Problem beim Laden der Seite, Seite wird in 5 Sekunden erneut geladen",
- "Saving..." : "Speichere...",
+ "Saving..." : "Speichere …",
"Dismiss" : "Ausblenden",
"seconds ago" : "Gerade ebene"
},
diff --git a/l10n/de_DE.json b/l10n/de_DE.json
index 3f5cb472..3f895477 100644
--- a/l10n/de_DE.json
+++ b/l10n/de_DE.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "{{num}} Anmeldeinformationen eingelesen, Import wird gestartet",
"Importing" : "Wird importiert",
"Start import" : "Beginne Import",
+ "Select CSV file" : "CSV-Datei auswählen",
+ "Parsed {{rows}} lines from CSV file" : "{{rows}} Zeilen der CSV-Datei gelesen",
"Skip first row" : "Erste Reihe überspringen",
"You need to assign the label field before you can start the import." : "Sie müssen das Beschriftungsfeld festlegen bevor Sie den Import beginnen können.",
+ "First 5 lines of the CSV are shown." : "Die ersten 5 Zeilen der CSV-Datei werden angezeigt.",
"Assign the proper fields to each column." : "Die passenden Felder jeder Spalte zuweisen.",
"Example imported credential" : "Beispiel-Anmeldeinformationen importiert",
+ "Missing an importer? Try it with the generic CSV importer." : "Fehlt ein Importer? Versuchen Sie es mit dem generischen CSV-Importer.",
"Go back to importers." : "Zurück zu den Importern.",
"Revision deleted" : "Revision gelöscht",
"Revision restored" : "Revision wiederhergestellt",
@@ -60,7 +64,7 @@
"Toggle visibility" : "Sichtbarkeit umschalten",
"Copy to clipboard" : "In die Zwischenablage kopieren",
"Copied to clipboard!" : "In die Zwischenablage kopiert!",
- "Generate password" : "Passwort generieren",
+ "Generate password" : "Passwort erzeugen",
"Copy password to clipboard" : "Passwort in die Zwischenablage kopieren",
"Password copied to clipboard!" : "Passwort in die Zwischenablage kopiert!",
"Complete" : "Fertigstellen",
@@ -124,7 +128,7 @@
"Vault password" : "Tresor-Passwort",
"This process is irreversible" : "Dieser Vorgang ist unumkehrbar",
"Delete my precious passwords" : "Meine wertvollen Passwörter löschen",
- "Deleting {{password}}..." : "{{password}} löschen...",
+ "Deleting {{password}}..." : "{{password}} löschen …",
"Yes, delete my precious passwords" : "Ja, bitte meine wertvollen Passwörter löschen",
"Import type" : "Import-Typ",
"Import" : "Importieren",
@@ -136,10 +140,14 @@
"Save keys" : "Schlüssel speichern",
"Generate sharing keys" : "Schlüssel zum Teilen erzeugen",
"Generating sharing keys" : "Erzeuge Schlüssel zum Teilen",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Das Passwort-Tool analysiert Ihr Passwort, berechnet die Zeit zum knacken des Passwortes und listet die Passwörter auf die unter dem Grenzwert liegen. ",
"Minimum password stength" : "Minimale Passwortstärke",
+ "Start scan" : "Einen Scan starten",
+ "Result" : "Ergebnis",
+ "A total of {{scan_result}} weak credentials were found." : "Es wurden insgesamt {{scan_result}} schwache Anmeldeinformationen wurden gefunden.",
"Score" : "Bewertung",
"Action" : "Aktion",
- "Search users or groups..." : "Suche Benutzer oder Gruppen...",
+ "Search users or groups..." : "Suche Benutzer oder Gruppen …",
"Missing users? Only users that have vaults are shown." : "Nutzer gesucht? Es werden nur Nutzer mit einem Tresor angezeigt.",
"Cyphering" : "Verschlüsselung",
"Uploading" : "Lade hoch",
@@ -196,12 +204,12 @@
"Showing deleted since" : "Anzeigen gelöscht seit",
"All time" : "Gesamte Zeit",
"Showing {{number_filtered}} of {{credential_number}} credentials" : "{{number_filtered}} of {{credential_number}} Anmeldeinformationen anzeigen",
- "Search credential..." : "Anmeldeinformation suchen...",
+ "Search credential..." : "Anmeldeinformation suchen …",
"Account" : "Konto",
"Password" : "Passwort",
"OTP" : "OTP (One Time Passwort)",
"E-mail" : "E-Mail",
- "URL" : "Url",
+ "URL" : "URL",
"Notes" : "Notizen",
"Expire time" : "Ablaufzeit",
"Changed" : "Geändert",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Zurück zu den Tresoren",
"Please input the password for" : "Passwort eingeben für",
"Set this vault as default." : "Diesen Tresor als Standard setzen.",
+ "Log into this vault automatically." : "In diesen Tresor automatisch anmelden.",
"Logout of this vault automatically after: " : "Von diesem Tresor automatisch abmelden nach:",
"Decrypt vault" : "Tresor entschlüsseln",
- "Seems you lost the vault password and you're unable to login." : "Es scheint, als hätten Sie das Passwort für den Tresor verloren und könnten sich nicht mehr einloggen.",
+ "Seems you lost the vault password and you're unable to login." : "Es scheint, als hätten Sie das Passwort für den Tresor verloren und könnten sich nicht mehr anmelden.",
+ "If you want this vault to be removed you can request that here." : "Wenn Sie möchten, dass dieser Tresor gelöscht wird, dann können Sie dies hier anfordern.",
+ "An admin then accepts to the request (or not)" : "Ein Admin akzeptiert dann diese Anfrage (oder nicht)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Wenn ein Administrator diesen Tresor löscht, gehen alle enthaltenen Anmeldeinformationen verloren",
"Reason to request deletion (optional):" : "Grund für die Lösch-Anfrage (optional):",
"Request vault destruction" : "Beantrage die Zerstörung des Tresors",
"Yes, request an admin to destroy this vault" : "Ja, beauftrage einen Administrator, den Tresor zu zerstören.",
@@ -244,15 +256,15 @@
"Request removed" : "Anfrage entfernt",
"Destruction request pending" : "Auftrag zur Zerstörung in der Warteschleife",
"Warning! Adding credentials over http can be insecure!" : "Achtung! Zugangsdaten über http kann unsicher sein!",
- "Logged in to {{vault_name}}" : "Eingeloggt in {{vault_name}}",
+ "Logged in to {{vault_name}}" : "Angemeldet in {{vault_name}}",
"Change vault" : "Wechsle Tresor",
"Deleted credentials" : "Zugangsdaten gelöscht",
- "Logout" : "Ausloggen",
+ "Logout" : "Abmelden",
"Donate" : "Spende",
"Someone has shared a credential with you." : "Jemand hat Zugangsdaten mit Ihnen geteilt.",
"Click here to request it" : "Hier klicken um es anzufordern",
- "Loading..." : "Lade...",
- "Awwhh.... credential not found. Maybe it expired" : "Oh... Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
+ "Loading..." : "Lade …",
+ "Awwhh.... credential not found. Maybe it expired" : "Oh… Zugangsdaten nicht gefunden. Vielleicht sind sie abgelaufen",
"Error while saving field" : "Fehler beim Speichern des Feldes",
"A Passman item has been created, modified or deleted" : "Ein Passman-Element wurde erstellt, modifiziert oder gelöscht",
"A Passman item has expired" : "Ein Passman-Element ist abgelaufen",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s teilt \"%s\" mit Ihnen. Um dies zu akzeptieren, klicken Sie bitte hier",
"%s has declined your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Ihnen abgelehnt.",
"%s has accepted your share request for \"%s\"." : "%s hat das Teilen von \"%s\" mit Ihnen akzeptiert.",
+ "Passman" : "Passman",
"Unable to get version info" : "Versionsinfo konnte nicht ermittelt werden",
"Passman Settings" : "Passman-Einstellungen",
"Github version:" : "Github-Version:",
+ "A newer version of Passman is available" : "Eine neue Version von Passman ist vefügbar.",
"Password sharing" : "Passwort teilen",
"Credential mover" : "Zugangsdaten verschieben",
"Vault destruction requests" : "Aufträge zur Zerstörung des Tresors",
"Check for new versions" : "Nach neuerer Version suchen",
"Enable HTTPS check" : "HTTPS-Prüfung aktivieren",
"Disable context menu" : "Kontextmenü deaktivieren",
+ "Disable JavaScript debugger" : "JavaScript-Debugger deaktivieren",
"Allow users on this server to share passwords with a link" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern via Link",
"Allow users on this server to share passwords with other users" : "Erlaube Benutzern dieses Servers das Teilen von Passwörtern mit anderen Benutzern",
"Move credentials from one account to another" : "Verschiebe Zugangsdaten von einem Konto zu einem anderen",
@@ -303,7 +318,7 @@
"Reason" : "Grund",
"Connection to server lost" : "Verbindung zum Server verloren",
"Problem loading page, reloading in 5 seconds" : "Problem beim Laden der Seite, Seite wird in 5 Sekunden erneut geladen",
- "Saving..." : "Speichere...",
+ "Saving..." : "Speichere …",
"Dismiss" : "Ausblenden",
"seconds ago" : "Gerade ebene"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
diff --git a/l10n/el.js b/l10n/el.js
index 469aa24f..e96bf0d4 100644
--- a/l10n/el.js
+++ b/l10n/el.js
@@ -16,11 +16,17 @@ OC.L10N.register(
"Credential updated" : "Τα διαπιστευτήρια ενημερώθηκαν",
"Credential recovered" : "Τα διαπιστευτήρια ανακτήθηκαν",
"Credential destroyed" : "Τα διαπιστευτήρια καταστράφηκαν",
+ "Error downloading file, you probably don't have enough permissions" : "Σφάλμα λήψης αρχείου, μάλλον δεν έχετε αρκετά δικαιώματα",
"Invalid QR code" : "Με έγκυρος κώδικας QR",
+ "Starting export" : "Έναρξη εξαγωγής",
"Decrypting credentials" : "Αποκρυπτογράφηση διαπιστευτηρίων",
"Done" : "Ολοκληρώθηκε",
"File read successfully!" : "Επιτυχημένη ανάγνωση αρχείου!",
+ "Added {{credential}}" : "Προστέθηκε {{credential}}",
+ "Skipping credential, missing label on line {{line}}" : "Παράλειψη διαπιστευτηρίων, έλλειψη ετικέτας στη γραμμή {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "Αναλυτικά αναγνωριστικά {{num}}, άρχισαν να εισάγουν",
"Importing" : "Γίνεται εισαγωγή",
+ "Start import" : "Έναρξη εισαγωγής",
"Revision deleted" : "Διαγράφηκε η αναθεώρηση",
"Save in passman" : "Αποθήκευση στο passman",
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
@@ -32,6 +38,9 @@ OC.L10N.register(
"New passwords do not match!" : "Τα νέα συνθηματικά δεν ταιριάζουν!",
"Share link" : "Διαμοιρασμός συνδέσμου",
"Saved!" : "Αποθηκεύτηκαν!",
+ "Weak" : "Ασθενές",
+ "Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
+ "Copied to clipboard!" : "Αντιγράφηκε στο πρόχειρο!",
"Generate password" : "Δημιουργία συνθηματικού",
"Copy password to clipboard" : "Αντιγραφή συνθηματικού στο πρόχειρο",
"Password copied to clipboard!" : "Το συνθηματικό αντιγράφτηκε στο πρόχειρο.",
@@ -46,6 +55,7 @@ OC.L10N.register(
"Add" : "Προσθήκη",
"Value" : "Τιμή",
"Type" : "Τύπος",
+ "Actions" : "Ενέργειες",
"Empty" : "Άδειο",
"Filename" : "Όνομα αρχείου",
"Upload date" : "Ημερομηνία μεταφόρτωσης",
@@ -58,6 +68,7 @@ OC.L10N.register(
"Week(s)" : "Εβδομάδα(-ες)",
"Month(s)" : "Μήνας(-ες)",
"Year(s)" : "Χρόνος(-ια)",
+ "Password generation settings" : "Ρυθμίσεις δημιουργίας συνθηματικών",
"Password length" : "Μέγεθος συνθηματικού",
"Use lowercase letters" : "Χρησιμοποιήστε πεζούς χαρακτήρες",
"Use numbers" : "Χρήση αριθμών",
@@ -65,18 +76,25 @@ OC.L10N.register(
"Export type" : "Τύπος εξαγωγής",
"Export" : "Εξαγωγή",
"Change" : "Αλλαγή",
+ "Total progress" : "Συνολική πρόοδος",
"About Passman" : "Περί εφαρμογής Passman",
"Version" : "Έκδοση",
"Donate to support development" : "Κάντε μια δωρεά για να υποστηρίξετε την ανάπτυξη",
"Save your passwords with 1 click!" : "Αποθηκεύστε το συνθηματικό σας με 1 κλικ!",
+ "Delete my precious passwords" : "Διαγραφή των πολύτιμων συνθηματικών μου",
"Deleting {{password}}..." : "Γίνεται διαγραφή {{password}}...",
"Import type" : "Τύπος εισαγωγής",
"Import" : "Εισαγωγή",
+ "Read progress" : "Πρόοδος ανάγνωσης",
+ "Upload progress" : "Πρόοδος μεταφόρτωσης",
"Private Key" : "Ιδιωτικό κλειδί",
"Public key" : "Δημόσιο κλειδί",
"Key size" : "Μέγεθος κλειδιού",
"Save keys" : "Αποθήκευση κλειδιών",
+ "Start scan" : "Εκκίνηση σάρωσης",
+ "Result" : "Αποτέλεσμα",
"Action" : "Ενέργεια",
+ "Search users or groups..." : "Αναζήτηση χρηστών ή ομάδων...",
"Uploading" : "Γίνεται μεταφόρτωση",
"User" : "Χρήστης",
"Read" : "Ανάγνωση",
@@ -85,13 +103,17 @@ OC.L10N.register(
"Pending" : "Εκκρεμεί",
"Enable link sharing" : "Ενεργοποίηση διαμοιρασμού συνδέσμου",
"Share until date" : "Διαμοιρασμός έως την ημερομηνία",
+ "Expire after views" : "Λήξη μετά από προβολές",
"Show files" : "Εμφάνιση αρχείων",
"Details" : "Λεπτομέρειες",
"Hide details" : "Απόκρυψη λεπτομερειών",
+ "100 / hour" : "100 / ώρα",
"10 / second" : "10 / δευτερόλεπτο",
"10k / second" : "10k / δευτερόλεπτο",
"10B / second" : "10B / δευτερόλεπτο",
+ "Pattern" : "Μοτίβο",
"Dictionary name" : "Όνομα λεξικου",
+ "Rank" : "Θέση",
"by" : "από",
"Label" : "Ετικέτα",
"Restore revision" : "Επαναφορά αναθεώρησης",
@@ -102,6 +124,7 @@ OC.L10N.register(
"Cancel" : "Άκυρο",
"Settings" : "Ρυθμίσεις",
"Unshare" : "Διακοπή διαμοιρασμού",
+ "Search credential..." : "Αναζήτηση διαποστευτηρίων...",
"Account" : "Λογαριασμός",
"Password" : "Συνθηματικό",
"OTP" : "OTP",
@@ -112,30 +135,57 @@ OC.L10N.register(
"Edit" : "Επεξεργασία",
"Delete" : "Διαγραφή",
"Share" : "Διαμοιρασμός",
+ "Recover" : "Ανάκτηση",
"Destroy" : "Καταστροφή",
"Permissions" : "Δικαιώματα",
"Received from" : "Ελήφθη από",
"Date" : "Ημερομηνία",
"Accept" : "Αποδοχή",
"Decline" : "Απόρριψη",
+ "You have {{session_time}} left before logout." : "Έχει απομείνει {{session_time}} πριν την έξοδο.",
"Last accessed" : "Τελευταία προσπέλαση",
"Never" : "Ποτέ",
+ "Cancel destruction request" : "Αίτημα ακύρωσης καταστροφής",
+ "Destruction request pending" : "Εκκρεμεί το αίτημα καταστροφής",
+ "Logged in to {{vault_name}}" : "Είσοδος στο {{vault_name}}",
+ "Deleted credentials" : "Διεγραμμένα διαπιστευτήρια",
"Logout" : "Έξοδος",
"Donate" : "Δωρεά",
+ "Someone has shared a credential with you." : "Κάποιος διαμοιράστηκε τα διαπιστευτήρια μαζί σας.",
+ "Click here to request it" : "Κάντε κλικ εδώ για να το αιτηθείτε",
"Loading..." : "Γίνεται φόρτωση...",
+ "Awwhh.... credential not found. Maybe it expired" : "Τα διαπιστευτήρια δεν βρέθηκαν. Μπορεί να έχουν λήξει",
"Error while saving field" : "Σφάλμα κατά την αποθήκευση πεδίου",
+ "A Passman item has been created, modified or deleted" : "Ένα αντικείμενο Passman δημιουργήθηκε, τροποποιήθηκε ή διαγράφηκε",
+ "A Passman item has expired" : "Έληξε ένα αντικείμενο Passman",
"A Passman item has been shared" : "Ένα αντικείμενο του Passman έχει διαμοιραστεί",
+ "A Passman item has been renamed" : "Μετονομάστηκε ένα αντικείμενο Passman",
"You created %1$s" : "Δημιουργήσατε το %1$s",
+ "You updated %1$s" : "Ενημερώσατε %1$s",
+ "%3$s has renamed %1$s to %2$s" : "%3$s μετονόμασε το %1$s σε %2$s",
+ "You renamed %1$s to %2$s" : "Μετονομάσατε το %1$s σε %2$s",
"You deleted %1$s" : "Διαγράψατε το %1$s",
+ "You permanently deleted %1$s" : "Διαγράψατε μόνιμα το %1$s",
+ "The password of %1$s has expired, renew it now." : "Εληξε το συνθηματικό του %1$s, να ανανεωθεί τώρα.",
+ "You received a share request for %1$s from %2$s" : "Λάβατε αίτημα διαμοιρασμού για %1$s από τον %2$s",
+ "%s has been shared with a link" : "%s διαμοιράστηκε με σύνδεσμο",
"Remind me later" : "Θύμισέ μου αργότερα",
+ "Ignore" : "Αγνόηση",
+ "%s shared \"%s\" with you. Click here to accept" : "%s διαμοιράστηκε \"%s\" μαζί σας. Κάντε κλίκ για αποδοχή",
+ "Passman" : "Passman",
"Unable to get version info" : "Αδυναμία λήψης πληροφορίες έκδοσης",
"Passman Settings" : "Ρυθμίσεις Passman",
"Github version:" : "Έκδοση Github:",
+ "A newer version of Passman is available" : "Μια νέα έκδοση του Passman είναι διαθέσιμη",
+ "Password sharing" : "Διαμοιρασμός συνθηματικών",
"Check for new versions" : "Έλεγχος για νέες εκδόσεις",
"Enable HTTPS check" : "Ενεργοποίηση ελέγχου HTTPS",
"Source account" : "Πηγαίος λογαριασμός",
+ "Request ID" : "Αίτημα ID",
+ "Requested by" : "Αιτήθηκε από",
"Reason" : "Λόγος",
"Connection to server lost" : "Η σύνδεση στον διακομιστή διακόπηκε",
+ "Problem loading page, reloading in 5 seconds" : "Πρόβλημα φόρτωσης σελίδας, φόρτωση ξανά σε 5 δευτερόλεπτα",
"Saving..." : "Γίνεται αποθήκευση...",
"seconds ago" : "δευτερόλεπτα πριν"
},
diff --git a/l10n/el.json b/l10n/el.json
index 5594d21b..50828a12 100644
--- a/l10n/el.json
+++ b/l10n/el.json
@@ -14,11 +14,17 @@
"Credential updated" : "Τα διαπιστευτήρια ενημερώθηκαν",
"Credential recovered" : "Τα διαπιστευτήρια ανακτήθηκαν",
"Credential destroyed" : "Τα διαπιστευτήρια καταστράφηκαν",
+ "Error downloading file, you probably don't have enough permissions" : "Σφάλμα λήψης αρχείου, μάλλον δεν έχετε αρκετά δικαιώματα",
"Invalid QR code" : "Με έγκυρος κώδικας QR",
+ "Starting export" : "Έναρξη εξαγωγής",
"Decrypting credentials" : "Αποκρυπτογράφηση διαπιστευτηρίων",
"Done" : "Ολοκληρώθηκε",
"File read successfully!" : "Επιτυχημένη ανάγνωση αρχείου!",
+ "Added {{credential}}" : "Προστέθηκε {{credential}}",
+ "Skipping credential, missing label on line {{line}}" : "Παράλειψη διαπιστευτηρίων, έλλειψη ετικέτας στη γραμμή {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "Αναλυτικά αναγνωριστικά {{num}}, άρχισαν να εισάγουν",
"Importing" : "Γίνεται εισαγωγή",
+ "Start import" : "Έναρξη εισαγωγής",
"Revision deleted" : "Διαγράφηκε η αναθεώρηση",
"Save in passman" : "Αποθήκευση στο passman",
"Settings saved" : "Οι ρυθμίσεις αποθηκεύτηκαν",
@@ -30,6 +36,9 @@
"New passwords do not match!" : "Τα νέα συνθηματικά δεν ταιριάζουν!",
"Share link" : "Διαμοιρασμός συνδέσμου",
"Saved!" : "Αποθηκεύτηκαν!",
+ "Weak" : "Ασθενές",
+ "Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
+ "Copied to clipboard!" : "Αντιγράφηκε στο πρόχειρο!",
"Generate password" : "Δημιουργία συνθηματικού",
"Copy password to clipboard" : "Αντιγραφή συνθηματικού στο πρόχειρο",
"Password copied to clipboard!" : "Το συνθηματικό αντιγράφτηκε στο πρόχειρο.",
@@ -44,6 +53,7 @@
"Add" : "Προσθήκη",
"Value" : "Τιμή",
"Type" : "Τύπος",
+ "Actions" : "Ενέργειες",
"Empty" : "Άδειο",
"Filename" : "Όνομα αρχείου",
"Upload date" : "Ημερομηνία μεταφόρτωσης",
@@ -56,6 +66,7 @@
"Week(s)" : "Εβδομάδα(-ες)",
"Month(s)" : "Μήνας(-ες)",
"Year(s)" : "Χρόνος(-ια)",
+ "Password generation settings" : "Ρυθμίσεις δημιουργίας συνθηματικών",
"Password length" : "Μέγεθος συνθηματικού",
"Use lowercase letters" : "Χρησιμοποιήστε πεζούς χαρακτήρες",
"Use numbers" : "Χρήση αριθμών",
@@ -63,18 +74,25 @@
"Export type" : "Τύπος εξαγωγής",
"Export" : "Εξαγωγή",
"Change" : "Αλλαγή",
+ "Total progress" : "Συνολική πρόοδος",
"About Passman" : "Περί εφαρμογής Passman",
"Version" : "Έκδοση",
"Donate to support development" : "Κάντε μια δωρεά για να υποστηρίξετε την ανάπτυξη",
"Save your passwords with 1 click!" : "Αποθηκεύστε το συνθηματικό σας με 1 κλικ!",
+ "Delete my precious passwords" : "Διαγραφή των πολύτιμων συνθηματικών μου",
"Deleting {{password}}..." : "Γίνεται διαγραφή {{password}}...",
"Import type" : "Τύπος εισαγωγής",
"Import" : "Εισαγωγή",
+ "Read progress" : "Πρόοδος ανάγνωσης",
+ "Upload progress" : "Πρόοδος μεταφόρτωσης",
"Private Key" : "Ιδιωτικό κλειδί",
"Public key" : "Δημόσιο κλειδί",
"Key size" : "Μέγεθος κλειδιού",
"Save keys" : "Αποθήκευση κλειδιών",
+ "Start scan" : "Εκκίνηση σάρωσης",
+ "Result" : "Αποτέλεσμα",
"Action" : "Ενέργεια",
+ "Search users or groups..." : "Αναζήτηση χρηστών ή ομάδων...",
"Uploading" : "Γίνεται μεταφόρτωση",
"User" : "Χρήστης",
"Read" : "Ανάγνωση",
@@ -83,13 +101,17 @@
"Pending" : "Εκκρεμεί",
"Enable link sharing" : "Ενεργοποίηση διαμοιρασμού συνδέσμου",
"Share until date" : "Διαμοιρασμός έως την ημερομηνία",
+ "Expire after views" : "Λήξη μετά από προβολές",
"Show files" : "Εμφάνιση αρχείων",
"Details" : "Λεπτομέρειες",
"Hide details" : "Απόκρυψη λεπτομερειών",
+ "100 / hour" : "100 / ώρα",
"10 / second" : "10 / δευτερόλεπτο",
"10k / second" : "10k / δευτερόλεπτο",
"10B / second" : "10B / δευτερόλεπτο",
+ "Pattern" : "Μοτίβο",
"Dictionary name" : "Όνομα λεξικου",
+ "Rank" : "Θέση",
"by" : "από",
"Label" : "Ετικέτα",
"Restore revision" : "Επαναφορά αναθεώρησης",
@@ -100,6 +122,7 @@
"Cancel" : "Άκυρο",
"Settings" : "Ρυθμίσεις",
"Unshare" : "Διακοπή διαμοιρασμού",
+ "Search credential..." : "Αναζήτηση διαποστευτηρίων...",
"Account" : "Λογαριασμός",
"Password" : "Συνθηματικό",
"OTP" : "OTP",
@@ -110,30 +133,57 @@
"Edit" : "Επεξεργασία",
"Delete" : "Διαγραφή",
"Share" : "Διαμοιρασμός",
+ "Recover" : "Ανάκτηση",
"Destroy" : "Καταστροφή",
"Permissions" : "Δικαιώματα",
"Received from" : "Ελήφθη από",
"Date" : "Ημερομηνία",
"Accept" : "Αποδοχή",
"Decline" : "Απόρριψη",
+ "You have {{session_time}} left before logout." : "Έχει απομείνει {{session_time}} πριν την έξοδο.",
"Last accessed" : "Τελευταία προσπέλαση",
"Never" : "Ποτέ",
+ "Cancel destruction request" : "Αίτημα ακύρωσης καταστροφής",
+ "Destruction request pending" : "Εκκρεμεί το αίτημα καταστροφής",
+ "Logged in to {{vault_name}}" : "Είσοδος στο {{vault_name}}",
+ "Deleted credentials" : "Διεγραμμένα διαπιστευτήρια",
"Logout" : "Έξοδος",
"Donate" : "Δωρεά",
+ "Someone has shared a credential with you." : "Κάποιος διαμοιράστηκε τα διαπιστευτήρια μαζί σας.",
+ "Click here to request it" : "Κάντε κλικ εδώ για να το αιτηθείτε",
"Loading..." : "Γίνεται φόρτωση...",
+ "Awwhh.... credential not found. Maybe it expired" : "Τα διαπιστευτήρια δεν βρέθηκαν. Μπορεί να έχουν λήξει",
"Error while saving field" : "Σφάλμα κατά την αποθήκευση πεδίου",
+ "A Passman item has been created, modified or deleted" : "Ένα αντικείμενο Passman δημιουργήθηκε, τροποποιήθηκε ή διαγράφηκε",
+ "A Passman item has expired" : "Έληξε ένα αντικείμενο Passman",
"A Passman item has been shared" : "Ένα αντικείμενο του Passman έχει διαμοιραστεί",
+ "A Passman item has been renamed" : "Μετονομάστηκε ένα αντικείμενο Passman",
"You created %1$s" : "Δημιουργήσατε το %1$s",
+ "You updated %1$s" : "Ενημερώσατε %1$s",
+ "%3$s has renamed %1$s to %2$s" : "%3$s μετονόμασε το %1$s σε %2$s",
+ "You renamed %1$s to %2$s" : "Μετονομάσατε το %1$s σε %2$s",
"You deleted %1$s" : "Διαγράψατε το %1$s",
+ "You permanently deleted %1$s" : "Διαγράψατε μόνιμα το %1$s",
+ "The password of %1$s has expired, renew it now." : "Εληξε το συνθηματικό του %1$s, να ανανεωθεί τώρα.",
+ "You received a share request for %1$s from %2$s" : "Λάβατε αίτημα διαμοιρασμού για %1$s από τον %2$s",
+ "%s has been shared with a link" : "%s διαμοιράστηκε με σύνδεσμο",
"Remind me later" : "Θύμισέ μου αργότερα",
+ "Ignore" : "Αγνόηση",
+ "%s shared \"%s\" with you. Click here to accept" : "%s διαμοιράστηκε \"%s\" μαζί σας. Κάντε κλίκ για αποδοχή",
+ "Passman" : "Passman",
"Unable to get version info" : "Αδυναμία λήψης πληροφορίες έκδοσης",
"Passman Settings" : "Ρυθμίσεις Passman",
"Github version:" : "Έκδοση Github:",
+ "A newer version of Passman is available" : "Μια νέα έκδοση του Passman είναι διαθέσιμη",
+ "Password sharing" : "Διαμοιρασμός συνθηματικών",
"Check for new versions" : "Έλεγχος για νέες εκδόσεις",
"Enable HTTPS check" : "Ενεργοποίηση ελέγχου HTTPS",
"Source account" : "Πηγαίος λογαριασμός",
+ "Request ID" : "Αίτημα ID",
+ "Requested by" : "Αιτήθηκε από",
"Reason" : "Λόγος",
"Connection to server lost" : "Η σύνδεση στον διακομιστή διακόπηκε",
+ "Problem loading page, reloading in 5 seconds" : "Πρόβλημα φόρτωσης σελίδας, φόρτωση ξανά σε 5 δευτερόλεπτα",
"Saving..." : "Γίνεται αποθήκευση...",
"seconds ago" : "δευτερόλεπτα πριν"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
diff --git a/l10n/en_GB.js b/l10n/en_GB.js
new file mode 100644
index 00000000..ee8f6757
--- /dev/null
+++ b/l10n/en_GB.js
@@ -0,0 +1,327 @@
+OC.L10N.register(
+ "passman",
+ {
+ "Passwords" : "Passwords",
+ "Generating sharing keys ( %step / 2)" : "Generating sharing keys ( %step / 2)",
+ "Incorrect vault password!" : "Incorrect vault password!",
+ "Passwords do not match" : "Passwords do not match",
+ "General" : "General",
+ "Custom Fields" : "Custom Fields",
+ "Please fill in a label!" : "Please fill in a label!",
+ "Please fill in a value!" : "Please fill in a value!",
+ "Error loading file" : "Error loading file",
+ "An error happened during decryption" : "An error happened during decryption",
+ "Credential created!" : "Credential created!",
+ "Credential deleted" : "Credential deleted",
+ "Credential updated" : "Credential updated",
+ "Credential recovered" : "Credential recovered",
+ "Credential destroyed" : "Credential destroyed",
+ "Error downloading file, you probably don't have enough permissions" : "Error downloading file, you probably don't have enough permissions",
+ "Invalid QR code" : "Invalid QR code",
+ "Starting export" : "Starting export",
+ "Decrypting credentials" : "Decrypting credentials",
+ "Done" : "Done",
+ "File read successfully!" : "File read successfully!",
+ "Follow the following steps to import your file" : "Follow the following steps to import your file",
+ "Credential has no label, skipping" : "Credential has no label, skipping",
+ "Adding {{credential}}" : "Adding {{credential}}",
+ "Added {{credential}}" : "Added {{credential}}",
+ "Skipping credential, missing label on line {{line}}" : "Skipping credential, missing label on line {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "Parsed {{num}} credentials, starting to import",
+ "Importing" : "Importing",
+ "Start import" : "Start import",
+ "Select CSV file" : "Select CSV file",
+ "Parsed {{rows}} lines from CSV file" : "Parsed {{rows}} lines from CSV file",
+ "Skip first row" : "Skip first row",
+ "You need to assign the label field before you can start the import." : "You need to assign the label field before you can start the import.",
+ "First 5 lines of the CSV are shown." : "First 5 lines of the CSV are shown.",
+ "Assign the proper fields to each column." : "Assign the proper fields to each column.",
+ "Example imported credential" : "Example imported credential",
+ "Missing an importer? Try it with the generic CSV importer." : "Missing an importer? Try it with the generic CSV importer.",
+ "Go back to importers." : "Go back to importers.",
+ "Revision deleted" : "Revision deleted",
+ "Revision restored" : "Revision restored",
+ "Save in passman" : "Save in passman",
+ "Settings saved" : "Settings saved",
+ "General settings" : "General settings",
+ "Password Audit" : "Password Audit",
+ "Password settings" : "Password settings",
+ "Import credentials" : "Import credentials",
+ "Export credentials" : "Export credentials",
+ "Sharing" : "Sharing",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Are you sure you want to leave? This WILL corrupt all your credentials",
+ "Your old password is incorrect!" : "Your old password is incorrect!",
+ "New passwords do not match!" : "New passwords do not match!",
+ "Please login with your new vault password" : "Please login with your new vault password",
+ "Share with users and groups" : "Share with users and groups",
+ "Share link" : "Share link",
+ "Are you sure you want to leave? This will corrupt this credential" : "Are you sure you want to leave? This will corrupt this credential",
+ "Credential unshared" : "Credential unshared",
+ "Credential shared" : "Credential shared",
+ "Saved!" : "Saved!",
+ "Poor" : "Poor",
+ "Weak" : "Weak",
+ "Good" : "Good",
+ "Strong" : "Strong",
+ "Toggle visibility" : "Toggle visibility",
+ "Copy to clipboard" : "Copy to clipboard",
+ "Copied to clipboard!" : "Copied to clipboard!",
+ "Generate password" : "Generate password",
+ "Copy password to clipboard" : "Copy password to clipboard",
+ "Password copied to clipboard!" : "Password copied to clipboard!",
+ "Complete" : "Complete",
+ "Username" : "Username",
+ "Repeat password" : "Repeat password",
+ "Add Tag" : "Add Tag",
+ "Field label" : "Field label",
+ "Field value" : "Field value",
+ "Choose a file" : "Choose a file",
+ "Text" : "Text",
+ "File" : "File",
+ "Add" : "Add",
+ "Value" : "Value",
+ "Type" : "Type",
+ "Actions" : "Actions",
+ "Empty" : "Empty",
+ "Filename" : "Filename",
+ "Upload date" : "Upload date",
+ "Size" : "Size",
+ "Upload or enter your OTP secret" : "Upload or enter your OTP secret",
+ "Current OTP settings" : "Current OTP settings",
+ "Issuer" : "Issuer",
+ "Secret" : "Secret",
+ "Expire date" : "Expire date",
+ "No expire date set" : "No expire date set",
+ "Renew interval" : "Renew interval",
+ "Disabled" : "Disabled",
+ "Day(s)" : "Day(s)",
+ "Week(s)" : "Week(s)",
+ "Month(s)" : "Month(s)",
+ "Year(s)" : "Year(s)",
+ "Password generation settings" : "Password generation settings",
+ "Password length" : "Password length",
+ "Minimum amount of digits" : "Minimum amount of digits",
+ "Use uppercase letters" : "Use uppercase letters",
+ "Use lowercase letters" : "Use lowercase letters",
+ "Use numbers" : "Use numbers",
+ "Use special characters" : "Use special characters",
+ "Avoid ambiguous characters" : "Avoid ambiguous characters",
+ "Require every character type" : "Require every character type",
+ "Export type" : "Export type",
+ "Export" : "Export",
+ "Enter vault password to confirm export." : "Enter vault password to confirm export.",
+ "Rename vault" : "Rename vault",
+ "New vault name" : "New vault name",
+ "Change" : "Change",
+ "Change vault key" : "Change vault key",
+ "Old vault password" : "Old vault password",
+ "New vault password" : "New vault password",
+ "New vault password repeat" : "New vault password repeat",
+ "Please wait your vault is being updated, do not leave this page." : "Please wait your vault is being updated, do not leave this page.",
+ "Processing" : "Processing",
+ "Total progress" : "Total progress",
+ "About Passman" : "About Passman",
+ "Version" : "Version",
+ "Donate to support development" : "Donate to support development",
+ "Bookmarklet" : "Bookmarklet",
+ "Save your passwords with 1 click!" : "Save your passwords with 1 click!",
+ "Drag below button to your bookmark toolbar." : "Drag below button to your bookmark toolbar.",
+ "Delete vault" : "Delete vault",
+ "Vault password" : "Vault password",
+ "This process is irreversible" : "This process is irreversible",
+ "Delete my precious passwords" : "Delete my precious passwords",
+ "Deleting {{password}}..." : "Deleting {{password}}...",
+ "Yes, delete my precious passwords" : "Yes, delete my precious passwords",
+ "Import type" : "Import type",
+ "Import" : "Import",
+ "Read progress" : "Read progress",
+ "Upload progress" : "Upload progress",
+ "Private Key" : "Private Key",
+ "Public key" : "Public key",
+ "Key size" : "Key size",
+ "Save keys" : "Save keys",
+ "Generate sharing keys" : "Generate sharing keys",
+ "Generating sharing keys" : "Generating sharing keys",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "The password tool will scan your password, calculate the average crack time and list those which are below the threshold",
+ "Minimum password stength" : "Minimum password stength",
+ "Start scan" : "Start scan",
+ "Result" : "Result",
+ "A total of {{scan_result}} weak credentials were found." : "A total of {{scan_result}} weak credentials were found.",
+ "Score" : "Score",
+ "Action" : "Action",
+ "Search users or groups..." : "Search users or groups...",
+ "Missing users? Only users that have vaults are shown." : "Missing users? Only users that have vaults are shown.",
+ "Cyphering" : "Cyphering",
+ "Uploading" : "Uploading",
+ "User" : "User",
+ "Crypto time" : "Crypto time",
+ "Total time spent cyphering" : "Total time spent cyphering",
+ "Read" : "Read",
+ "Write" : "Write",
+ "Files" : "Files",
+ "Revisions" : "Revisions",
+ "Pending" : "Pending",
+ "Enable link sharing" : "Enable link sharing",
+ "Share until date" : "Share until date",
+ "Expire after views" : "Expire after views",
+ "Click share first" : "Click share first",
+ "Show files" : "Show files",
+ "Details" : "Details",
+ "Hide details" : "Hide details",
+ "Password score" : "Password score",
+ "Cracking times" : "Cracking times",
+ "100 / hour" : "100 / hour",
+ "Throttled online attack" : "Throttled online attack",
+ "10 / second" : "10 / second",
+ "Unthrottled online attack" : "Unthrottled online attack",
+ "10k / second" : "10k / second",
+ "Offline attack, slow hash, many cores" : "Offline attack, slow hash, many cores",
+ "10B / second" : "10B / second",
+ "Offline attack, fast hash, many cores" : "Offline attack, fast hash, many cores",
+ "Match sequence" : "Match sequence",
+ "See match sequence" : "See match sequence",
+ "Pattern" : "Pattern",
+ "Matched word" : "Matched word",
+ "Dictionary name" : "Dictionary name",
+ "Rank" : "Rank",
+ "Reversed" : "Reversed",
+ "Guesses" : "Guesses",
+ "Base guesses" : "Base guesses",
+ "Uppercase variations" : "Uppercase variations",
+ "l33t-variations" : "l33t-variations",
+ "Showing revisions of" : "Showing revisions of",
+ "Revision of" : "Revision of",
+ "by" : "by",
+ "No revisions found." : "No revisions found.",
+ "Label" : "Label",
+ "Restore revision" : "Restore revision",
+ "Delete revision" : "Delete revision",
+ "Edit credential" : "Edit credential",
+ "Create new credential" : "Create new credential",
+ "Save" : "Save",
+ "Cancel" : "Cancel",
+ "Settings" : "Settings",
+ "Share credential {{credential}}" : "Share credential {{credential}}",
+ "Unshare" : "Unshare",
+ "Showing deleted since" : "Showing deleted since",
+ "All time" : "All time",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Showing {{number_filtered}} of {{credential_number}} credentials",
+ "Search credential..." : "Search credential...",
+ "Account" : "Account",
+ "Password" : "Password",
+ "OTP" : "OTP",
+ "E-mail" : "E-mail",
+ "URL" : "URL",
+ "Notes" : "Notes",
+ "Expire time" : "Expire time",
+ "Changed" : "Changed",
+ "Created" : "Created",
+ "Edit" : "Edit",
+ "Delete" : "Delete",
+ "Share" : "Share",
+ "Recover" : "Recover",
+ "Destroy" : "Destroy",
+ "Use regex" : "Use regex",
+ "You have incoming share requests." : "You have incoming share requests.",
+ "If you want to put the credential in a other vault," : "If you want to put the credential in a other vault,",
+ "logout of this vault and login to the vault you want the shared credential in." : "logout of this vault and login to the vault you want the shared credential in.",
+ "Permissions" : "Permissions",
+ "Received from" : "Received from",
+ "Date" : "Date",
+ "Accept" : "Accept",
+ "Decline" : "Decline",
+ "You have {{session_time}} left before logout." : "You have {{session_time}} left before logout.",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Your vault has been locked for {{time}} because of {{tries}} failed attempts!",
+ "Last accessed" : "Last accessed",
+ "Never" : "Never",
+ "No vaults found, why not create one?" : "No vaults found, why not create one?",
+ "Password strength must be at least: {{strength}}" : "Password strength must be at least: {{strength}}",
+ "Please give your new vault a name." : "Please give your new vault a name.",
+ "Repeat vault password" : "Repeat vault password",
+ "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Your sharing key's will have a strength of 1024 bit, which you can change later in settings.",
+ "Create vault" : "Create vault",
+ "Go back to vaults" : "Go back to vaults",
+ "Please input the password for" : "Please input the password for",
+ "Set this vault as default." : "Set this vault as default.",
+ "Log into this vault automatically." : "Log into this vault automatically.",
+ "Logout of this vault automatically after: " : "Logout of this vault automatically after: ",
+ "Decrypt vault" : "Decrypt vault",
+ "Seems you lost the vault password and you're unable to login." : "Seems you lost the vault password and you're unable to login.",
+ "If you want this vault to be removed you can request that here." : "If you want this vault to be removed you can request that here.",
+ "An admin then accepts to the request (or not)" : "An admin then accepts to the request (or not)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "After an admin destroys this vault, all credentials inside will be lost",
+ "Reason to request deletion (optional):" : "Reason to request deletion (optional):",
+ "Request vault destruction" : "Request vault destruction",
+ "Yes, request an admin to destroy this vault" : "Yes, request an admin to destroy this vault",
+ "Cancel destruction request" : "Cancel destruction request",
+ "Vault destruction requested" : "Vault destruction requested",
+ "Request removed" : "Request removed",
+ "Destruction request pending" : "Destruction request pending",
+ "Warning! Adding credentials over http can be insecure!" : "Warning! Adding credentials over http can be insecure!",
+ "Logged in to {{vault_name}}" : "Logged in to {{vault_name}}",
+ "Change vault" : "Change vault",
+ "Deleted credentials" : "Deleted credentials",
+ "Logout" : "Logout",
+ "Donate" : "Donate",
+ "Someone has shared a credential with you." : "Someone has shared a credential with you.",
+ "Click here to request it" : "Click here to request it",
+ "Loading..." : "Loading...",
+ "Awwhh.... credential not found. Maybe it expired" : "Awwhh.... credential not found. Maybe it expired",
+ "Error while saving field" : "Error while saving field",
+ "A Passman item has been created, modified or deleted" : "A Passman item has been created, modified or deleted",
+ "A Passman item has expired" : "A Passman item has expired",
+ "A Passman item has been shared" : "A Passman item has been shared",
+ "A Passman item has been renamed" : "A Passman item has been renamed",
+ "%1$s has been created by %2$s" : "%1$s has been created by %2$s",
+ "You created %1$s" : "You created %1$s",
+ "%1$s has been updated by %2$s" : "%1$s has been updated by %2$s",
+ "You updated %1$s" : "You updated %1$s",
+ "%2$s has revised %1$s to the revision of %3$s" : "%2$s has revised %1$s to the revision of %3$s",
+ "You reverted %1$s back to the revision of %3$s" : "You reverted %1$s back to the revision of %3$s",
+ "%3$s has renamed %1$s to %2$s" : "%3$s has renamed %1$s to %2$s",
+ "You renamed %1$s to %2$s" : "You renamed %1$s to %2$s",
+ "%1$s has been deleted by %2$s" : "%1$s has been deleted by %2$s",
+ "You deleted %1$s" : "You deleted %1$s",
+ "%1$s has been recovered by %2$s" : "%1$s has been recovered by %2$s",
+ "You recovered %1$s" : "You recovered %1$s",
+ "%1$s has been permanently deleted by %2$s" : "%1$s has been permanently deleted by %2$s",
+ "You permanently deleted %1$s" : "You permanently deleted %1$s",
+ "The password of %1$s has expired, renew it now." : "The password of %1$s has expired, renew it now.",
+ "%1$s has been shared with %2$s" : "%1$s has been shared with %2$s",
+ "You received a share request for %1$s from %2$s" : "You received a share request for %1$s from %2$s",
+ "%s has been shared with a link" : "%s has been shared with a link",
+ "Your credential \"%s\" expired, click here to update the credential." : "Your credential \"%s\" expired, click here to update the credential.",
+ "Remind me later" : "Remind me later",
+ "Ignore" : "Ignore",
+ "%s shared \"%s\" with you. Click here to accept" : "%s shared \"%s\" with you. Click here to accept",
+ "%s has declined your share request for \"%s\"." : "%s has declined your share request for \"%s\".",
+ "%s has accepted your share request for \"%s\"." : "%s has accepted your share request for \"%s\".",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Unable to get version info",
+ "Passman Settings" : "Passman Settings",
+ "Github version:" : "Github version:",
+ "A newer version of Passman is available" : "A newer version of Passman is available",
+ "Password sharing" : "Password sharing",
+ "Credential mover" : "Credential mover",
+ "Vault destruction requests" : "Vault destruction requests",
+ "Check for new versions" : "Check for new versions",
+ "Enable HTTPS check" : "Enable HTTPS check",
+ "Disable context menu" : "Disable context menu",
+ "Disable JavaScript debugger" : "Disable JavaScript debugger",
+ "Allow users on this server to share passwords with a link" : "Allow users on this server to share passwords with a link",
+ "Allow users on this server to share passwords with other users" : "Allow users on this server to share passwords with other users",
+ "Move credentials from one account to another" : "Move credentials from one account to another",
+ "Source account" : "Source account",
+ "Destination account" : "Destination account",
+ "Credentials moved!" : "Credentials moved!",
+ "Requests to destroy vault" : "Requests to destroy vault",
+ "Request ID" : "Request ID",
+ "Requested by" : "Requested by",
+ "Reason" : "Reason",
+ "Connection to server lost" : "Connection to server lost",
+ "Problem loading page, reloading in 5 seconds" : "Problem loading page, reloading in 5 seconds",
+ "Saving..." : "Saving...",
+ "Dismiss" : "Dismiss",
+ "seconds ago" : "seconds ago"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/en_GB.json b/l10n/en_GB.json
new file mode 100644
index 00000000..5e730278
--- /dev/null
+++ b/l10n/en_GB.json
@@ -0,0 +1,325 @@
+{ "translations": {
+ "Passwords" : "Passwords",
+ "Generating sharing keys ( %step / 2)" : "Generating sharing keys ( %step / 2)",
+ "Incorrect vault password!" : "Incorrect vault password!",
+ "Passwords do not match" : "Passwords do not match",
+ "General" : "General",
+ "Custom Fields" : "Custom Fields",
+ "Please fill in a label!" : "Please fill in a label!",
+ "Please fill in a value!" : "Please fill in a value!",
+ "Error loading file" : "Error loading file",
+ "An error happened during decryption" : "An error happened during decryption",
+ "Credential created!" : "Credential created!",
+ "Credential deleted" : "Credential deleted",
+ "Credential updated" : "Credential updated",
+ "Credential recovered" : "Credential recovered",
+ "Credential destroyed" : "Credential destroyed",
+ "Error downloading file, you probably don't have enough permissions" : "Error downloading file, you probably don't have enough permissions",
+ "Invalid QR code" : "Invalid QR code",
+ "Starting export" : "Starting export",
+ "Decrypting credentials" : "Decrypting credentials",
+ "Done" : "Done",
+ "File read successfully!" : "File read successfully!",
+ "Follow the following steps to import your file" : "Follow the following steps to import your file",
+ "Credential has no label, skipping" : "Credential has no label, skipping",
+ "Adding {{credential}}" : "Adding {{credential}}",
+ "Added {{credential}}" : "Added {{credential}}",
+ "Skipping credential, missing label on line {{line}}" : "Skipping credential, missing label on line {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "Parsed {{num}} credentials, starting to import",
+ "Importing" : "Importing",
+ "Start import" : "Start import",
+ "Select CSV file" : "Select CSV file",
+ "Parsed {{rows}} lines from CSV file" : "Parsed {{rows}} lines from CSV file",
+ "Skip first row" : "Skip first row",
+ "You need to assign the label field before you can start the import." : "You need to assign the label field before you can start the import.",
+ "First 5 lines of the CSV are shown." : "First 5 lines of the CSV are shown.",
+ "Assign the proper fields to each column." : "Assign the proper fields to each column.",
+ "Example imported credential" : "Example imported credential",
+ "Missing an importer? Try it with the generic CSV importer." : "Missing an importer? Try it with the generic CSV importer.",
+ "Go back to importers." : "Go back to importers.",
+ "Revision deleted" : "Revision deleted",
+ "Revision restored" : "Revision restored",
+ "Save in passman" : "Save in passman",
+ "Settings saved" : "Settings saved",
+ "General settings" : "General settings",
+ "Password Audit" : "Password Audit",
+ "Password settings" : "Password settings",
+ "Import credentials" : "Import credentials",
+ "Export credentials" : "Export credentials",
+ "Sharing" : "Sharing",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Are you sure you want to leave? This WILL corrupt all your credentials",
+ "Your old password is incorrect!" : "Your old password is incorrect!",
+ "New passwords do not match!" : "New passwords do not match!",
+ "Please login with your new vault password" : "Please login with your new vault password",
+ "Share with users and groups" : "Share with users and groups",
+ "Share link" : "Share link",
+ "Are you sure you want to leave? This will corrupt this credential" : "Are you sure you want to leave? This will corrupt this credential",
+ "Credential unshared" : "Credential unshared",
+ "Credential shared" : "Credential shared",
+ "Saved!" : "Saved!",
+ "Poor" : "Poor",
+ "Weak" : "Weak",
+ "Good" : "Good",
+ "Strong" : "Strong",
+ "Toggle visibility" : "Toggle visibility",
+ "Copy to clipboard" : "Copy to clipboard",
+ "Copied to clipboard!" : "Copied to clipboard!",
+ "Generate password" : "Generate password",
+ "Copy password to clipboard" : "Copy password to clipboard",
+ "Password copied to clipboard!" : "Password copied to clipboard!",
+ "Complete" : "Complete",
+ "Username" : "Username",
+ "Repeat password" : "Repeat password",
+ "Add Tag" : "Add Tag",
+ "Field label" : "Field label",
+ "Field value" : "Field value",
+ "Choose a file" : "Choose a file",
+ "Text" : "Text",
+ "File" : "File",
+ "Add" : "Add",
+ "Value" : "Value",
+ "Type" : "Type",
+ "Actions" : "Actions",
+ "Empty" : "Empty",
+ "Filename" : "Filename",
+ "Upload date" : "Upload date",
+ "Size" : "Size",
+ "Upload or enter your OTP secret" : "Upload or enter your OTP secret",
+ "Current OTP settings" : "Current OTP settings",
+ "Issuer" : "Issuer",
+ "Secret" : "Secret",
+ "Expire date" : "Expire date",
+ "No expire date set" : "No expire date set",
+ "Renew interval" : "Renew interval",
+ "Disabled" : "Disabled",
+ "Day(s)" : "Day(s)",
+ "Week(s)" : "Week(s)",
+ "Month(s)" : "Month(s)",
+ "Year(s)" : "Year(s)",
+ "Password generation settings" : "Password generation settings",
+ "Password length" : "Password length",
+ "Minimum amount of digits" : "Minimum amount of digits",
+ "Use uppercase letters" : "Use uppercase letters",
+ "Use lowercase letters" : "Use lowercase letters",
+ "Use numbers" : "Use numbers",
+ "Use special characters" : "Use special characters",
+ "Avoid ambiguous characters" : "Avoid ambiguous characters",
+ "Require every character type" : "Require every character type",
+ "Export type" : "Export type",
+ "Export" : "Export",
+ "Enter vault password to confirm export." : "Enter vault password to confirm export.",
+ "Rename vault" : "Rename vault",
+ "New vault name" : "New vault name",
+ "Change" : "Change",
+ "Change vault key" : "Change vault key",
+ "Old vault password" : "Old vault password",
+ "New vault password" : "New vault password",
+ "New vault password repeat" : "New vault password repeat",
+ "Please wait your vault is being updated, do not leave this page." : "Please wait your vault is being updated, do not leave this page.",
+ "Processing" : "Processing",
+ "Total progress" : "Total progress",
+ "About Passman" : "About Passman",
+ "Version" : "Version",
+ "Donate to support development" : "Donate to support development",
+ "Bookmarklet" : "Bookmarklet",
+ "Save your passwords with 1 click!" : "Save your passwords with 1 click!",
+ "Drag below button to your bookmark toolbar." : "Drag below button to your bookmark toolbar.",
+ "Delete vault" : "Delete vault",
+ "Vault password" : "Vault password",
+ "This process is irreversible" : "This process is irreversible",
+ "Delete my precious passwords" : "Delete my precious passwords",
+ "Deleting {{password}}..." : "Deleting {{password}}...",
+ "Yes, delete my precious passwords" : "Yes, delete my precious passwords",
+ "Import type" : "Import type",
+ "Import" : "Import",
+ "Read progress" : "Read progress",
+ "Upload progress" : "Upload progress",
+ "Private Key" : "Private Key",
+ "Public key" : "Public key",
+ "Key size" : "Key size",
+ "Save keys" : "Save keys",
+ "Generate sharing keys" : "Generate sharing keys",
+ "Generating sharing keys" : "Generating sharing keys",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "The password tool will scan your password, calculate the average crack time and list those which are below the threshold",
+ "Minimum password stength" : "Minimum password stength",
+ "Start scan" : "Start scan",
+ "Result" : "Result",
+ "A total of {{scan_result}} weak credentials were found." : "A total of {{scan_result}} weak credentials were found.",
+ "Score" : "Score",
+ "Action" : "Action",
+ "Search users or groups..." : "Search users or groups...",
+ "Missing users? Only users that have vaults are shown." : "Missing users? Only users that have vaults are shown.",
+ "Cyphering" : "Cyphering",
+ "Uploading" : "Uploading",
+ "User" : "User",
+ "Crypto time" : "Crypto time",
+ "Total time spent cyphering" : "Total time spent cyphering",
+ "Read" : "Read",
+ "Write" : "Write",
+ "Files" : "Files",
+ "Revisions" : "Revisions",
+ "Pending" : "Pending",
+ "Enable link sharing" : "Enable link sharing",
+ "Share until date" : "Share until date",
+ "Expire after views" : "Expire after views",
+ "Click share first" : "Click share first",
+ "Show files" : "Show files",
+ "Details" : "Details",
+ "Hide details" : "Hide details",
+ "Password score" : "Password score",
+ "Cracking times" : "Cracking times",
+ "100 / hour" : "100 / hour",
+ "Throttled online attack" : "Throttled online attack",
+ "10 / second" : "10 / second",
+ "Unthrottled online attack" : "Unthrottled online attack",
+ "10k / second" : "10k / second",
+ "Offline attack, slow hash, many cores" : "Offline attack, slow hash, many cores",
+ "10B / second" : "10B / second",
+ "Offline attack, fast hash, many cores" : "Offline attack, fast hash, many cores",
+ "Match sequence" : "Match sequence",
+ "See match sequence" : "See match sequence",
+ "Pattern" : "Pattern",
+ "Matched word" : "Matched word",
+ "Dictionary name" : "Dictionary name",
+ "Rank" : "Rank",
+ "Reversed" : "Reversed",
+ "Guesses" : "Guesses",
+ "Base guesses" : "Base guesses",
+ "Uppercase variations" : "Uppercase variations",
+ "l33t-variations" : "l33t-variations",
+ "Showing revisions of" : "Showing revisions of",
+ "Revision of" : "Revision of",
+ "by" : "by",
+ "No revisions found." : "No revisions found.",
+ "Label" : "Label",
+ "Restore revision" : "Restore revision",
+ "Delete revision" : "Delete revision",
+ "Edit credential" : "Edit credential",
+ "Create new credential" : "Create new credential",
+ "Save" : "Save",
+ "Cancel" : "Cancel",
+ "Settings" : "Settings",
+ "Share credential {{credential}}" : "Share credential {{credential}}",
+ "Unshare" : "Unshare",
+ "Showing deleted since" : "Showing deleted since",
+ "All time" : "All time",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Showing {{number_filtered}} of {{credential_number}} credentials",
+ "Search credential..." : "Search credential...",
+ "Account" : "Account",
+ "Password" : "Password",
+ "OTP" : "OTP",
+ "E-mail" : "E-mail",
+ "URL" : "URL",
+ "Notes" : "Notes",
+ "Expire time" : "Expire time",
+ "Changed" : "Changed",
+ "Created" : "Created",
+ "Edit" : "Edit",
+ "Delete" : "Delete",
+ "Share" : "Share",
+ "Recover" : "Recover",
+ "Destroy" : "Destroy",
+ "Use regex" : "Use regex",
+ "You have incoming share requests." : "You have incoming share requests.",
+ "If you want to put the credential in a other vault," : "If you want to put the credential in a other vault,",
+ "logout of this vault and login to the vault you want the shared credential in." : "logout of this vault and login to the vault you want the shared credential in.",
+ "Permissions" : "Permissions",
+ "Received from" : "Received from",
+ "Date" : "Date",
+ "Accept" : "Accept",
+ "Decline" : "Decline",
+ "You have {{session_time}} left before logout." : "You have {{session_time}} left before logout.",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Your vault has been locked for {{time}} because of {{tries}} failed attempts!",
+ "Last accessed" : "Last accessed",
+ "Never" : "Never",
+ "No vaults found, why not create one?" : "No vaults found, why not create one?",
+ "Password strength must be at least: {{strength}}" : "Password strength must be at least: {{strength}}",
+ "Please give your new vault a name." : "Please give your new vault a name.",
+ "Repeat vault password" : "Repeat vault password",
+ "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Your sharing key's will have a strength of 1024 bit, which you can change later in settings.",
+ "Create vault" : "Create vault",
+ "Go back to vaults" : "Go back to vaults",
+ "Please input the password for" : "Please input the password for",
+ "Set this vault as default." : "Set this vault as default.",
+ "Log into this vault automatically." : "Log into this vault automatically.",
+ "Logout of this vault automatically after: " : "Logout of this vault automatically after: ",
+ "Decrypt vault" : "Decrypt vault",
+ "Seems you lost the vault password and you're unable to login." : "Seems you lost the vault password and you're unable to login.",
+ "If you want this vault to be removed you can request that here." : "If you want this vault to be removed you can request that here.",
+ "An admin then accepts to the request (or not)" : "An admin then accepts to the request (or not)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "After an admin destroys this vault, all credentials inside will be lost",
+ "Reason to request deletion (optional):" : "Reason to request deletion (optional):",
+ "Request vault destruction" : "Request vault destruction",
+ "Yes, request an admin to destroy this vault" : "Yes, request an admin to destroy this vault",
+ "Cancel destruction request" : "Cancel destruction request",
+ "Vault destruction requested" : "Vault destruction requested",
+ "Request removed" : "Request removed",
+ "Destruction request pending" : "Destruction request pending",
+ "Warning! Adding credentials over http can be insecure!" : "Warning! Adding credentials over http can be insecure!",
+ "Logged in to {{vault_name}}" : "Logged in to {{vault_name}}",
+ "Change vault" : "Change vault",
+ "Deleted credentials" : "Deleted credentials",
+ "Logout" : "Logout",
+ "Donate" : "Donate",
+ "Someone has shared a credential with you." : "Someone has shared a credential with you.",
+ "Click here to request it" : "Click here to request it",
+ "Loading..." : "Loading...",
+ "Awwhh.... credential not found. Maybe it expired" : "Awwhh.... credential not found. Maybe it expired",
+ "Error while saving field" : "Error while saving field",
+ "A Passman item has been created, modified or deleted" : "A Passman item has been created, modified or deleted",
+ "A Passman item has expired" : "A Passman item has expired",
+ "A Passman item has been shared" : "A Passman item has been shared",
+ "A Passman item has been renamed" : "A Passman item has been renamed",
+ "%1$s has been created by %2$s" : "%1$s has been created by %2$s",
+ "You created %1$s" : "You created %1$s",
+ "%1$s has been updated by %2$s" : "%1$s has been updated by %2$s",
+ "You updated %1$s" : "You updated %1$s",
+ "%2$s has revised %1$s to the revision of %3$s" : "%2$s has revised %1$s to the revision of %3$s",
+ "You reverted %1$s back to the revision of %3$s" : "You reverted %1$s back to the revision of %3$s",
+ "%3$s has renamed %1$s to %2$s" : "%3$s has renamed %1$s to %2$s",
+ "You renamed %1$s to %2$s" : "You renamed %1$s to %2$s",
+ "%1$s has been deleted by %2$s" : "%1$s has been deleted by %2$s",
+ "You deleted %1$s" : "You deleted %1$s",
+ "%1$s has been recovered by %2$s" : "%1$s has been recovered by %2$s",
+ "You recovered %1$s" : "You recovered %1$s",
+ "%1$s has been permanently deleted by %2$s" : "%1$s has been permanently deleted by %2$s",
+ "You permanently deleted %1$s" : "You permanently deleted %1$s",
+ "The password of %1$s has expired, renew it now." : "The password of %1$s has expired, renew it now.",
+ "%1$s has been shared with %2$s" : "%1$s has been shared with %2$s",
+ "You received a share request for %1$s from %2$s" : "You received a share request for %1$s from %2$s",
+ "%s has been shared with a link" : "%s has been shared with a link",
+ "Your credential \"%s\" expired, click here to update the credential." : "Your credential \"%s\" expired, click here to update the credential.",
+ "Remind me later" : "Remind me later",
+ "Ignore" : "Ignore",
+ "%s shared \"%s\" with you. Click here to accept" : "%s shared \"%s\" with you. Click here to accept",
+ "%s has declined your share request for \"%s\"." : "%s has declined your share request for \"%s\".",
+ "%s has accepted your share request for \"%s\"." : "%s has accepted your share request for \"%s\".",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Unable to get version info",
+ "Passman Settings" : "Passman Settings",
+ "Github version:" : "Github version:",
+ "A newer version of Passman is available" : "A newer version of Passman is available",
+ "Password sharing" : "Password sharing",
+ "Credential mover" : "Credential mover",
+ "Vault destruction requests" : "Vault destruction requests",
+ "Check for new versions" : "Check for new versions",
+ "Enable HTTPS check" : "Enable HTTPS check",
+ "Disable context menu" : "Disable context menu",
+ "Disable JavaScript debugger" : "Disable JavaScript debugger",
+ "Allow users on this server to share passwords with a link" : "Allow users on this server to share passwords with a link",
+ "Allow users on this server to share passwords with other users" : "Allow users on this server to share passwords with other users",
+ "Move credentials from one account to another" : "Move credentials from one account to another",
+ "Source account" : "Source account",
+ "Destination account" : "Destination account",
+ "Credentials moved!" : "Credentials moved!",
+ "Requests to destroy vault" : "Requests to destroy vault",
+ "Request ID" : "Request ID",
+ "Requested by" : "Requested by",
+ "Reason" : "Reason",
+ "Connection to server lost" : "Connection to server lost",
+ "Problem loading page, reloading in 5 seconds" : "Problem loading page, reloading in 5 seconds",
+ "Saving..." : "Saving...",
+ "Dismiss" : "Dismiss",
+ "seconds ago" : "seconds ago"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/es.js b/l10n/es.js
index 809c51a6..40c67c31 100644
--- a/l10n/es.js
+++ b/l10n/es.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Analizadas {{num}} credenciales, comenzando a importar",
"Importing" : "Importando",
"Start import" : "Iniciar importación",
+ "Select CSV file" : "Selecciona el archivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "Se han analizado {{rows}} del archivo CSV",
"Skip first row" : "Saltar la primer fila",
"You need to assign the label field before you can start the import." : "Necesita asignar el campo de etiqueta antes de comenzar la importación.",
+ "First 5 lines of the CSV are shown." : "Se muestran las primeras 5 líneas del CSV",
"Assign the proper fields to each column." : "Asignar los campos apropiados para cada columna.",
"Example imported credential" : "Credencial importada de ejemplo",
+ "Missing an importer? Try it with the generic CSV importer." : "¿Echas de menos un importador? Intenta el importador genérico CSV.",
"Go back to importers." : "Regresar a importadores",
"Revision deleted" : "Revisión eliminada",
"Revision restored" : "Revisión restaurada",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Guardar llaves",
"Generate sharing keys" : "Generar llaves para compartir",
"Generating sharing keys" : "Generando llaves para compartir",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "La herramienta de contraseñas escanerá tus contraseñas, calculará el tiempo medio para reventarlas y señalará aquellas que estén por debajo del umbral",
"Minimum password stength" : "Fuerza mínima de contraseña",
+ "Start scan" : "Comenzar escaneo",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "Se han encontrado un tota del {{scan_result}} credenciales débiles",
"Score" : "Puntaje",
"Action" : "Acción",
"Search users or groups..." : "Buscar usuarios o grupos...",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Regresar a las bóvedas",
"Please input the password for" : "Por favor ingrese la contraseña para",
"Set this vault as default." : "Coloque esta bóveda como predeterminada.",
+ "Log into this vault automatically." : "Entrar en esta bóveda automáticamente",
"Logout of this vault automatically after: " : "Salir de esta bóveda automáticamente después de:",
"Decrypt vault" : "Descifre bóveda",
"Seems you lost the vault password and you're unable to login." : "Parece que ha perdido la contraseña de la bóveda y que no es capaz de iniciar sesión.",
+ "If you want this vault to be removed you can request that here." : "Si quieres que esta bóveda sea eliminada, lo puedes solicitar aquí.",
+ "An admin then accepts to the request (or not)" : "Entonces, un administrador aceptará (o no) la petición.",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Después de que un administrador destruya esta bóveda, todas las credenciales incluidas se perderán",
"Reason to request deletion (optional):" : "Razón para solicitar eliminación (opcional):",
"Request vault destruction" : "Solicitar la eliminación de bóveda",
"Yes, request an admin to destroy this vault" : "Si, solicitar que un administrador elimine esta bóveda",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s comparte \"%s\" contigo. Hacer click aquí para aceptar",
"%s has declined your share request for \"%s\"." : "%s ha rechazado su petición para compartir \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s ha aceptado tu petición para compartir \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Incapaz de obtener la información de la versión",
"Passman Settings" : "Ajustes de Passman",
"Github version:" : "Versión de Github:",
+ "A newer version of Passman is available" : "Hay disponible una nueva versión de Passman",
"Password sharing" : "Compartir contraseña",
"Credential mover" : "Trasladar credenciales",
"Vault destruction requests" : "Solicitudes de eliminación de bóvedas",
"Check for new versions" : "Revisar por nuevas versiones",
"Enable HTTPS check" : "Activar revisión HTTPS",
"Disable context menu" : "Deshabilitar menú contextual",
+ "Disable JavaScript debugger" : "Deshabilitar el depurador JavaScript",
"Allow users on this server to share passwords with a link" : "Permitir usuarios de este servidor compartir contraseñas con un enlace",
"Allow users on this server to share passwords with other users" : "Permitir usuarios en este servidor compartir contraseñas con otros usuarios",
"Move credentials from one account to another" : "Trasladar credenciales de una cuenta a otra",
diff --git a/l10n/es.json b/l10n/es.json
index 135a924c..ca2825c0 100644
--- a/l10n/es.json
+++ b/l10n/es.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Analizadas {{num}} credenciales, comenzando a importar",
"Importing" : "Importando",
"Start import" : "Iniciar importación",
+ "Select CSV file" : "Selecciona el archivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "Se han analizado {{rows}} del archivo CSV",
"Skip first row" : "Saltar la primer fila",
"You need to assign the label field before you can start the import." : "Necesita asignar el campo de etiqueta antes de comenzar la importación.",
+ "First 5 lines of the CSV are shown." : "Se muestran las primeras 5 líneas del CSV",
"Assign the proper fields to each column." : "Asignar los campos apropiados para cada columna.",
"Example imported credential" : "Credencial importada de ejemplo",
+ "Missing an importer? Try it with the generic CSV importer." : "¿Echas de menos un importador? Intenta el importador genérico CSV.",
"Go back to importers." : "Regresar a importadores",
"Revision deleted" : "Revisión eliminada",
"Revision restored" : "Revisión restaurada",
@@ -136,7 +140,11 @@
"Save keys" : "Guardar llaves",
"Generate sharing keys" : "Generar llaves para compartir",
"Generating sharing keys" : "Generando llaves para compartir",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "La herramienta de contraseñas escanerá tus contraseñas, calculará el tiempo medio para reventarlas y señalará aquellas que estén por debajo del umbral",
"Minimum password stength" : "Fuerza mínima de contraseña",
+ "Start scan" : "Comenzar escaneo",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "Se han encontrado un tota del {{scan_result}} credenciales débiles",
"Score" : "Puntaje",
"Action" : "Acción",
"Search users or groups..." : "Buscar usuarios o grupos...",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Regresar a las bóvedas",
"Please input the password for" : "Por favor ingrese la contraseña para",
"Set this vault as default." : "Coloque esta bóveda como predeterminada.",
+ "Log into this vault automatically." : "Entrar en esta bóveda automáticamente",
"Logout of this vault automatically after: " : "Salir de esta bóveda automáticamente después de:",
"Decrypt vault" : "Descifre bóveda",
"Seems you lost the vault password and you're unable to login." : "Parece que ha perdido la contraseña de la bóveda y que no es capaz de iniciar sesión.",
+ "If you want this vault to be removed you can request that here." : "Si quieres que esta bóveda sea eliminada, lo puedes solicitar aquí.",
+ "An admin then accepts to the request (or not)" : "Entonces, un administrador aceptará (o no) la petición.",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Después de que un administrador destruya esta bóveda, todas las credenciales incluidas se perderán",
"Reason to request deletion (optional):" : "Razón para solicitar eliminación (opcional):",
"Request vault destruction" : "Solicitar la eliminación de bóveda",
"Yes, request an admin to destroy this vault" : "Si, solicitar que un administrador elimine esta bóveda",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s comparte \"%s\" contigo. Hacer click aquí para aceptar",
"%s has declined your share request for \"%s\"." : "%s ha rechazado su petición para compartir \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s ha aceptado tu petición para compartir \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Incapaz de obtener la información de la versión",
"Passman Settings" : "Ajustes de Passman",
"Github version:" : "Versión de Github:",
+ "A newer version of Passman is available" : "Hay disponible una nueva versión de Passman",
"Password sharing" : "Compartir contraseña",
"Credential mover" : "Trasladar credenciales",
"Vault destruction requests" : "Solicitudes de eliminación de bóvedas",
"Check for new versions" : "Revisar por nuevas versiones",
"Enable HTTPS check" : "Activar revisión HTTPS",
"Disable context menu" : "Deshabilitar menú contextual",
+ "Disable JavaScript debugger" : "Deshabilitar el depurador JavaScript",
"Allow users on this server to share passwords with a link" : "Permitir usuarios de este servidor compartir contraseñas con un enlace",
"Allow users on this server to share passwords with other users" : "Permitir usuarios en este servidor compartir contraseñas con otros usuarios",
"Move credentials from one account to another" : "Trasladar credenciales de una cuenta a otra",
diff --git a/l10n/es_AR.js b/l10n/es_AR.js
new file mode 100644
index 00000000..69dfd1ca
--- /dev/null
+++ b/l10n/es_AR.js
@@ -0,0 +1,327 @@
+OC.L10N.register(
+ "passman",
+ {
+ "Passwords" : "Contraseñas",
+ "Generating sharing keys ( %step / 2)" : "Generando llaves para compartir (paso %s /2)",
+ "Incorrect vault password!" : "¡Bóveda de contraseñas incorrecta!",
+ "Passwords do not match" : "Las contraseñas no coinciden",
+ "General" : "General",
+ "Custom Fields" : "Campos personalizados",
+ "Please fill in a label!" : "¡Favor de llenar la etiqueta!",
+ "Please fill in a value!" : "¡Favor de llenar el valor!",
+ "Error loading file" : "Se presentó un error al cargar el archivo",
+ "An error happened during decryption" : "Se presentó un error al decriptar",
+ "Credential created!" : "¡Credenciales creadas!",
+ "Credential deleted" : "Credenciales borradas",
+ "Credential updated" : "Credenciales actualizadas",
+ "Credential recovered" : "Credenciales recuperadas",
+ "Credential destroyed" : "Credenciales destruidas",
+ "Error downloading file, you probably don't have enough permissions" : "Se presentó un error al descargar el archivo, usted posiblemente no cuenta con suficientes privilegios",
+ "Invalid QR code" : "Código QR inválido",
+ "Starting export" : "Comenzando exportación",
+ "Decrypting credentials" : "Decriptando credenciales",
+ "Done" : "Terminado",
+ "File read successfully!" : "¡El archivo se leyó exitosamente!",
+ "Follow the following steps to import your file" : "Favor de seguir los siguientes pasos para importar su archivo",
+ "Credential has no label, skipping" : "Las credenciales no tienen etiqueta, omitiendo",
+ "Adding {{credential}}" : "Agregando {{credential}}",
+ "Added {{credential}}" : "{{credential}} agregado",
+ "Skipping credential, missing label on line {{line}}" : "Omitiendo credenciales, etiqueta faltante en la línea {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "{{num}} credenciales interpretadas, comenzando a importar",
+ "Importing" : "Importando",
+ "Start import" : "Comenzar importación",
+ "Select CSV file" : "Seleccione el archivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "{{num}} líneas interpretadas del archivo CSV",
+ "Skip first row" : "Omitir primer renglón",
+ "You need to assign the label field before you can start the import." : "Necesita asignar el campo etiqueta antes de que pueda comenzar la importación.",
+ "First 5 lines of the CSV are shown." : "Se muestran las primeras 5 líneas del archivo CSV",
+ "Assign the proper fields to each column." : "Asigne el campo correspondiente a cada columna. ",
+ "Example imported credential" : "Ejemplo de credenciales importadas",
+ "Missing an importer? Try it with the generic CSV importer." : "¿Requiere de una herramienta para importar? Pruebe con la herramienta genérica para importar CSV.",
+ "Go back to importers." : "Regresar a importadores.",
+ "Revision deleted" : "Revisión borrada",
+ "Revision restored" : "Revisión restaurada",
+ "Save in passman" : "Guardar en passman",
+ "Settings saved" : "Configuraciones guardadas",
+ "General settings" : "Configuraciones generales",
+ "Password Audit" : "Auditoria de contraseñas",
+ "Password settings" : "Configuraciones de contraseña",
+ "Import credentials" : "Importar credenciales",
+ "Export credentials" : "Exportar credenciales",
+ "Sharing" : "Compartiendo",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "¿Está seguro que desea salir? Esto va a CORROMPER todas sus credenciales",
+ "Your old password is incorrect!" : "¡Su contraseña anterior es incorrecta!",
+ "New passwords do not match!" : "¡Las nuevas contraseñas no son iguales!",
+ "Please login with your new vault password" : "Favor de iniciar sesión con su nueva contraseña de bóveda",
+ "Share with users and groups" : "Compartir con otros usuarios y grupos",
+ "Share link" : "Compartir link",
+ "Are you sure you want to leave? This will corrupt this credential" : "¿Está seguro que desea salir? Esto va a corrpomer estas credenciales",
+ "Credential unshared" : "Credenciales no compartidas",
+ "Credential shared" : "Credenciales compartidas",
+ "Saved!" : "¡Guardado!",
+ "Poor" : "Pobre",
+ "Weak" : "Débil",
+ "Good" : "Buena",
+ "Strong" : "Fuerte",
+ "Toggle visibility" : "Alternar visibilidad",
+ "Copy to clipboard" : "Copiar al portapapeles",
+ "Copied to clipboard!" : "¡Copiado al portapapeles!",
+ "Generate password" : "Generar contraseña",
+ "Copy password to clipboard" : "Copiar contraseña al portapapeles",
+ "Password copied to clipboard!" : "¡Contraseña copiada al portapapeles!",
+ "Complete" : "Terminar",
+ "Username" : "Nombre de usuario",
+ "Repeat password" : "Repetir contraseña",
+ "Add Tag" : "Agregar etiqueta",
+ "Field label" : "Etiqueta del campo",
+ "Field value" : "Valor del campo",
+ "Choose a file" : "Seleccione un archivo",
+ "Text" : "Texto",
+ "File" : "Archivo",
+ "Add" : "Agregar",
+ "Value" : "Valor",
+ "Type" : "Tipo",
+ "Actions" : "Acciones",
+ "Empty" : "Vacío",
+ "Filename" : "Nombre del archivo",
+ "Upload date" : "Fecha de carga",
+ "Size" : "Tamaño",
+ "Upload or enter your OTP secret" : "Carge o ingrese su secreto de OTP",
+ "Current OTP settings" : "Configuraciones actuales de OTP",
+ "Issuer" : "Quien levanta",
+ "Secret" : "Secreto",
+ "Expire date" : "Fecha de expiración",
+ "No expire date set" : "No se ha establecido la fecha de expiración ",
+ "Renew interval" : "Intervalo de renovación",
+ "Disabled" : "Deshabilitado",
+ "Day(s)" : "Día(s)",
+ "Week(s)" : "Semana(s)",
+ "Month(s)" : "Mes(es)",
+ "Year(s)" : "Año(s)",
+ "Password generation settings" : "Configuraciones de generación de  contraseñas",
+ "Password length" : "Longitud de contraseña",
+ "Minimum amount of digits" : "Número mínimo de dígitos",
+ "Use uppercase letters" : "Usar mayúsculas",
+ "Use lowercase letters" : "Usar minúsculas",
+ "Use numbers" : "Usar números",
+ "Use special characters" : "Usar caracteres especiales",
+ "Avoid ambiguous characters" : "Evitar caracteres ambíguos",
+ "Require every character type" : "Requerir todos los tipos de caracteres",
+ "Export type" : "Tipo de exportación",
+ "Export" : "Exportar",
+ "Enter vault password to confirm export." : "Ingresar contraseña de bóveda para confirmar la exportación. ",
+ "Rename vault" : "Renombrar bóveda",
+ "New vault name" : "Nuevo nombre de la bóveda",
+ "Change" : "Cambiar",
+ "Change vault key" : "Cambiar la llave de la bóveda",
+ "Old vault password" : "Anterior contraseña de la bóveda",
+ "New vault password" : "Nueva contraseña de la bóveda",
+ "New vault password repeat" : "Repetir nueva contraseña de la bóveda",
+ "Please wait your vault is being updated, do not leave this page." : "Favor de aguardar mientras se actualiza su bóveda, no salga de esta página. ",
+ "Processing" : "Procesando",
+ "Total progress" : "Progreso total",
+ "About Passman" : "Acerca de Passman",
+ "Version" : "Versión",
+ "Donate to support development" : "Donar en apoyo al desarrollo",
+ "Bookmarklet" : "Marcador a código",
+ "Save your passwords with 1 click!" : "¡Guarde sus contraseñas con 1 sólo click!",
+ "Drag below button to your bookmark toolbar." : "Arrastre el botón de abajo hasta su barra de herramientas de marcadores. ",
+ "Delete vault" : "Borrar bóveda",
+ "Vault password" : "Bóveda de contraseñas",
+ "This process is irreversible" : "Este proceso es irreversible",
+ "Delete my precious passwords" : "Borrar mis preciadas contraseñas",
+ "Deleting {{password}}..." : "Borrando {{password}}...",
+ "Yes, delete my precious passwords" : "Sí, borrar mis preciadas contraseñas",
+ "Import type" : "Tipo de importación",
+ "Import" : "Importar",
+ "Read progress" : "Progreso de la lectura",
+ "Upload progress" : "Progreso de la carga",
+ "Private Key" : "Llave privada",
+ "Public key" : "Llave pública",
+ "Key size" : "Tamaño de la llave",
+ "Save keys" : "Guardar llaves",
+ "Generate sharing keys" : "Generar llaves de comparitr",
+ "Generating sharing keys" : "Generando llaves de comparitr",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "La herramienta de contraseñas escaneará su contraseña, calculará el tiempo promedio para romperla y enlistará aquellas que estén por debajo del umbral",
+ "Minimum password stength" : "Fortaleza mínima de contraseña",
+ "Start scan" : "Iniciar escaneo",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "Se encontraron un total de {{scan_result}} credenciales débiles.",
+ "Score" : "Calificación",
+ "Action" : "Acción",
+ "Search users or groups..." : "Buscar usuarios o grupos ...",
+ "Missing users? Only users that have vaults are shown." : "¿Faltan usuarios? Sólo se muestran los usuarios que tienen bóvedas.",
+ "Cyphering" : "Encriptando",
+ "Uploading" : "Cargando",
+ "User" : "Usuario",
+ "Crypto time" : "Tiempo criptográfico",
+ "Total time spent cyphering" : "Tiempo total destinado a encriptar",
+ "Read" : "Leer",
+ "Write" : "Escribir",
+ "Files" : "Archivo",
+ "Revisions" : "Revisiones",
+ "Pending" : "Pendiente",
+ "Enable link sharing" : "Habilitar compartir link",
+ "Share until date" : "Compartir hasta fecha",
+ "Expire after views" : "Expirar después de visualizaciones",
+ "Click share first" : "Haga click en compartir primero",
+ "Show files" : "Mostrar archivos",
+ "Details" : "Detalles",
+ "Hide details" : "Ocultar detalles",
+ "Password score" : "Calificación de contraseña",
+ "Cracking times" : "Tiempos para romper la contraseña",
+ "100 / hour" : "100 / hora",
+ "Throttled online attack" : "Ataque en línea regulado",
+ "10 / second" : "10 / segundo",
+ "Unthrottled online attack" : "Ataque en línea sin regular",
+ "10k / second" : "10k / segundo",
+ "Offline attack, slow hash, many cores" : "Ataque sin conexión, funciones de resumen lentas, muchos núcleos",
+ "10B / second" : "10k / segundo",
+ "Offline attack, fast hash, many cores" : "Ataque sin conexión, funciones de resumen rápidas, muchos núcleos",
+ "Match sequence" : "Secuencia con coincidencia",
+ "See match sequence" : "Ver secuencia con coincidencia",
+ "Pattern" : "Patrón",
+ "Matched word" : "Palabra con coincidencia",
+ "Dictionary name" : "Nombre del diccionario",
+ "Rank" : "Rango",
+ "Reversed" : "Revertido",
+ "Guesses" : "Intentos",
+ "Base guesses" : "Intentos base",
+ "Uppercase variations" : "Variaciones en mayúsculas",
+ "l33t-variations" : "Variaciones en l33t",
+ "Showing revisions of" : "Mostrando revisiones de",
+ "Revision of" : "Revisión de",
+ "by" : "por",
+ "No revisions found." : "No se encontraron revisiones. ",
+ "Label" : "Etiqueta",
+ "Restore revision" : "Restaurar revisión",
+ "Delete revision" : "Borrar revisión",
+ "Edit credential" : "Editar credenciales",
+ "Create new credential" : "Crear credenciales nuevas",
+ "Save" : "Guardar",
+ "Cancel" : "Cancelar",
+ "Settings" : "Configuraciones ",
+ "Share credential {{credential}}" : "Compartir credenciales {{credential}}",
+ "Unshare" : "Dejar de compartir",
+ "Showing deleted since" : "Mostrando borrados desde",
+ "All time" : "Tiempo total",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Mostrando {{number_filtered}} de {{credential_number}} credenciales",
+ "Search credential..." : "Buscar credenciales ...",
+ "Account" : "Cuenta",
+ "Password" : "Contraseña",
+ "OTP" : "OTP",
+ "E-mail" : "Correo electrónico",
+ "URL" : "URL",
+ "Notes" : "Notas",
+ "Expire time" : "Tiempo de expiración",
+ "Changed" : "Cambiado",
+ "Created" : "Creado",
+ "Edit" : "Editar",
+ "Delete" : "Borrar",
+ "Share" : "Compartir",
+ "Recover" : "Recuperar",
+ "Destroy" : "Destruir",
+ "Use regex" : "Usar regex",
+ "You have incoming share requests." : "Usted recibió solicitudes para compartir. ",
+ "If you want to put the credential in a other vault," : "Si usted quiere colocar las credenciales en otra bóveda,",
+ "logout of this vault and login to the vault you want the shared credential in." : "salga de esta bóveda e inicie sesión a la bóveda en la que desea tener las credenciales compartidas",
+ "Permissions" : "Permisos",
+ "Received from" : "Recibido de",
+ "Date" : "Fecha",
+ "Accept" : "Aceptar",
+ "Decline" : "Declinar",
+ "You have {{session_time}} left before logout." : "Cuenta con {{session_time}} antes de que su sesión se cierre.",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "¡Su bóveda se encuentra bloqueada por {{time}} debido a los {{tries}} intentos fallidos!",
+ "Last accessed" : "Último acceso",
+ "Never" : "Nunca",
+ "No vaults found, why not create one?" : "No se encontraron bóvedas. ¿Por qué no crear una?",
+ "Password strength must be at least: {{strength}}" : "La fortaleza de la contraseña debe ser por lo menos: {{strength}}",
+ "Please give your new vault a name." : "Favor de ingresar el nombre de su bóveda nueva. ",
+ "Repeat vault password" : "Repita la contraseña de la bóveda",
+ "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Su llave para compartir tendrá una fortaleza de 1024 bits, usted lo podrá cambiar en las configuraciones . ",
+ "Create vault" : "Crear bóveda",
+ "Go back to vaults" : "Regresar a bóvedas",
+ "Please input the password for" : "Favor de ingresar la contraseña para",
+ "Set this vault as default." : "Establercer esta bóveda por defecto. ",
+ "Log into this vault automatically." : "Inicie sesión en esta bóveda automáticamente.",
+ "Logout of this vault automatically after: " : "Salir de esta bóveda automáticamente después de:",
+ "Decrypt vault" : "Decriptar bóveda",
+ "Seems you lost the vault password and you're unable to login." : "Al parecer ha perdido la contraseña de esta bóveda y no puede iniciar sesión. ",
+ "If you want this vault to be removed you can request that here." : "Si desea que esta bóveda sea eliminada puede solicitarlo aquí.",
+ "An admin then accepts to the request (or not)" : "Un administrador aceptará entonces la solicitud (o no)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Después de que un administrador destruya esta bóveda, todas las credenciales dentro se perderán",
+ "Reason to request deletion (optional):" : "Razón por la que solcita el borrado (opcional):",
+ "Request vault destruction" : "Solicitar la destrucción de la bóveda",
+ "Yes, request an admin to destroy this vault" : "Sí, solicitar a un administrador la destrucción de esta bóveda",
+ "Cancel destruction request" : "Cancelar la solicitud de destrucción",
+ "Vault destruction requested" : "Destrucción de la bóveda solicitada",
+ "Request removed" : "Solicitud eliminada",
+ "Destruction request pending" : "Solicitud de destrucción pendiente",
+ "Warning! Adding credentials over http can be insecure!" : "¡Advertncia! ¡Agregar credenciales sobre http puede ser inserguro!",
+ "Logged in to {{vault_name}}" : "Inició sesión en {{vault_name}}",
+ "Change vault" : "Cambiar bóveda",
+ "Deleted credentials" : "Credenciales borradas",
+ "Logout" : "Salir",
+ "Donate" : "Donar",
+ "Someone has shared a credential with you." : "Alguien ha compartido credenciales con usted. ",
+ "Click here to request it" : "Haga click para solicitarlo",
+ "Loading..." : "Cargando...",
+ "Awwhh.... credential not found. Maybe it expired" : "Awwhh.... credenciales no encontradas. Tal vez expiraron",
+ "Error while saving field" : "Se presentó un error al guardar el campo",
+ "A Passman item has been created, modified or deleted" : "Un elemento de Passman ha sido creado, modificado o borrado",
+ "A Passman item has expired" : "El elemento de Passman ha expirado",
+ "A Passman item has been shared" : "Un elemento de Passman ha sido compartido",
+ "A Passman item has been renamed" : "Un elemento de Passman ha sido renombrado",
+ "%1$s has been created by %2$s" : "%1$s ha sido creado por %2$s",
+ "You created %1$s" : "Usted creó %1$s",
+ "%1$s has been updated by %2$s" : "%1$s ha sido actualizado por %2$s",
+ "You updated %1$s" : "Usted actualizó %1$s",
+ "%2$s has revised %1$s to the revision of %3$s" : "%2$s ha revisado %1$s a la revisón de %3$s",
+ "You reverted %1$s back to the revision of %3$s" : "Usted revirtió %1$s de vuelta a la revisión de %3$s",
+ "%3$s has renamed %1$s to %2$s" : "%3$s ha renombrado %1$s como %2$s",
+ "You renamed %1$s to %2$s" : "Usted renombro %1$s como %2$s",
+ "%1$s has been deleted by %2$s" : "%1$s ha sido borrado por %2$s",
+ "You deleted %1$s" : "Usted borró %1$s",
+ "%1$s has been recovered by %2$s" : "%1$s ha sido recuperado por %2$s",
+ "You recovered %1$s" : "Usted recuperó %1$s",
+ "%1$s has been permanently deleted by %2$s" : "%1$s ha sido borrado permanentemente por %2$s",
+ "You permanently deleted %1$s" : "Ha borrado permanentemente %1$s",
+ "The password of %1$s has expired, renew it now." : "La contraseña de %1$s ha expirado, renuévela ahora.",
+ "%1$s has been shared with %2$s" : "%1$s ha sido compartido con %2$s",
+ "You received a share request for %1$s from %2$s" : "Usted ha recibido una solicitud para compartir de %1$s desde%2$s",
+ "%s has been shared with a link" : "%s ha sido compartido con un link",
+ "Your credential \"%s\" expired, click here to update the credential." : "Sus credenciales \"%s\" han expirado, haga click aquí para actualizarlas.",
+ "Remind me later" : "Recordarme más tarde",
+ "Ignore" : "Ignorar",
+ "%s shared \"%s\" with you. Click here to accept" : "%s ha compartido \"%s\" con usted. Haga click aquí para aceptar",
+ "%s has declined your share request for \"%s\"." : "%s ha declinado su solicitud para compartir \"%s\".",
+ "%s has accepted your share request for \"%s\"." : "%s ha aceptado su solicitud para compartir \"%s\".",
+ "Passman" : "Passman",
+ "Unable to get version info" : "No fue posible obtener la información de la versión",
+ "Passman Settings" : "Configuraciones de Passman",
+ "Github version:" : "Versión de Github:",
+ "A newer version of Passman is available" : "Una nueva versión de Passman se encuentra disponible",
+ "Password sharing" : "Compartir contraseña",
+ "Credential mover" : "Mover credenciales",
+ "Vault destruction requests" : "Solicitudes para destruir bóvedas",
+ "Check for new versions" : "Verificar si hay nuevas versiones",
+ "Enable HTTPS check" : "Habilitar verificación HTTPS",
+ "Disable context menu" : "Deshabilitar menú contextual",
+ "Disable JavaScript debugger" : "Deshabilitar el depurador JavaScript",
+ "Allow users on this server to share passwords with a link" : "Permitir a los usuarios en este servidor compartir contraseñas con un link",
+ "Allow users on this server to share passwords with other users" : "Permitir a los usuarios en este servidor compartir contraseñas con otros usuarios",
+ "Move credentials from one account to another" : "Mover credenciales de una cuenta a otra",
+ "Source account" : "Cuenta fuente",
+ "Destination account" : "Cuenta destino",
+ "Credentials moved!" : "¡Se movieron las credenciales!",
+ "Requests to destroy vault" : "Solicitudes para destruir bóvedas",
+ "Request ID" : "ID de solicitud",
+ "Requested by" : "Solciitado por",
+ "Reason" : "Razón",
+ "Connection to server lost" : "Se perdió la conexión al servidor",
+ "Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
+ "Saving..." : "Guardando ...",
+ "Dismiss" : "Descartar",
+ "seconds ago" : "segundos"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/es_AR.json b/l10n/es_AR.json
new file mode 100644
index 00000000..5179b9a9
--- /dev/null
+++ b/l10n/es_AR.json
@@ -0,0 +1,325 @@
+{ "translations": {
+ "Passwords" : "Contraseñas",
+ "Generating sharing keys ( %step / 2)" : "Generando llaves para compartir (paso %s /2)",
+ "Incorrect vault password!" : "¡Bóveda de contraseñas incorrecta!",
+ "Passwords do not match" : "Las contraseñas no coinciden",
+ "General" : "General",
+ "Custom Fields" : "Campos personalizados",
+ "Please fill in a label!" : "¡Favor de llenar la etiqueta!",
+ "Please fill in a value!" : "¡Favor de llenar el valor!",
+ "Error loading file" : "Se presentó un error al cargar el archivo",
+ "An error happened during decryption" : "Se presentó un error al decriptar",
+ "Credential created!" : "¡Credenciales creadas!",
+ "Credential deleted" : "Credenciales borradas",
+ "Credential updated" : "Credenciales actualizadas",
+ "Credential recovered" : "Credenciales recuperadas",
+ "Credential destroyed" : "Credenciales destruidas",
+ "Error downloading file, you probably don't have enough permissions" : "Se presentó un error al descargar el archivo, usted posiblemente no cuenta con suficientes privilegios",
+ "Invalid QR code" : "Código QR inválido",
+ "Starting export" : "Comenzando exportación",
+ "Decrypting credentials" : "Decriptando credenciales",
+ "Done" : "Terminado",
+ "File read successfully!" : "¡El archivo se leyó exitosamente!",
+ "Follow the following steps to import your file" : "Favor de seguir los siguientes pasos para importar su archivo",
+ "Credential has no label, skipping" : "Las credenciales no tienen etiqueta, omitiendo",
+ "Adding {{credential}}" : "Agregando {{credential}}",
+ "Added {{credential}}" : "{{credential}} agregado",
+ "Skipping credential, missing label on line {{line}}" : "Omitiendo credenciales, etiqueta faltante en la línea {{line}}",
+ "Parsed {{num}} credentials, starting to import" : "{{num}} credenciales interpretadas, comenzando a importar",
+ "Importing" : "Importando",
+ "Start import" : "Comenzar importación",
+ "Select CSV file" : "Seleccione el archivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "{{num}} líneas interpretadas del archivo CSV",
+ "Skip first row" : "Omitir primer renglón",
+ "You need to assign the label field before you can start the import." : "Necesita asignar el campo etiqueta antes de que pueda comenzar la importación.",
+ "First 5 lines of the CSV are shown." : "Se muestran las primeras 5 líneas del archivo CSV",
+ "Assign the proper fields to each column." : "Asigne el campo correspondiente a cada columna. ",
+ "Example imported credential" : "Ejemplo de credenciales importadas",
+ "Missing an importer? Try it with the generic CSV importer." : "¿Requiere de una herramienta para importar? Pruebe con la herramienta genérica para importar CSV.",
+ "Go back to importers." : "Regresar a importadores.",
+ "Revision deleted" : "Revisión borrada",
+ "Revision restored" : "Revisión restaurada",
+ "Save in passman" : "Guardar en passman",
+ "Settings saved" : "Configuraciones guardadas",
+ "General settings" : "Configuraciones generales",
+ "Password Audit" : "Auditoria de contraseñas",
+ "Password settings" : "Configuraciones de contraseña",
+ "Import credentials" : "Importar credenciales",
+ "Export credentials" : "Exportar credenciales",
+ "Sharing" : "Compartiendo",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "¿Está seguro que desea salir? Esto va a CORROMPER todas sus credenciales",
+ "Your old password is incorrect!" : "¡Su contraseña anterior es incorrecta!",
+ "New passwords do not match!" : "¡Las nuevas contraseñas no son iguales!",
+ "Please login with your new vault password" : "Favor de iniciar sesión con su nueva contraseña de bóveda",
+ "Share with users and groups" : "Compartir con otros usuarios y grupos",
+ "Share link" : "Compartir link",
+ "Are you sure you want to leave? This will corrupt this credential" : "¿Está seguro que desea salir? Esto va a corrpomer estas credenciales",
+ "Credential unshared" : "Credenciales no compartidas",
+ "Credential shared" : "Credenciales compartidas",
+ "Saved!" : "¡Guardado!",
+ "Poor" : "Pobre",
+ "Weak" : "Débil",
+ "Good" : "Buena",
+ "Strong" : "Fuerte",
+ "Toggle visibility" : "Alternar visibilidad",
+ "Copy to clipboard" : "Copiar al portapapeles",
+ "Copied to clipboard!" : "¡Copiado al portapapeles!",
+ "Generate password" : "Generar contraseña",
+ "Copy password to clipboard" : "Copiar contraseña al portapapeles",
+ "Password copied to clipboard!" : "¡Contraseña copiada al portapapeles!",
+ "Complete" : "Terminar",
+ "Username" : "Nombre de usuario",
+ "Repeat password" : "Repetir contraseña",
+ "Add Tag" : "Agregar etiqueta",
+ "Field label" : "Etiqueta del campo",
+ "Field value" : "Valor del campo",
+ "Choose a file" : "Seleccione un archivo",
+ "Text" : "Texto",
+ "File" : "Archivo",
+ "Add" : "Agregar",
+ "Value" : "Valor",
+ "Type" : "Tipo",
+ "Actions" : "Acciones",
+ "Empty" : "Vacío",
+ "Filename" : "Nombre del archivo",
+ "Upload date" : "Fecha de carga",
+ "Size" : "Tamaño",
+ "Upload or enter your OTP secret" : "Carge o ingrese su secreto de OTP",
+ "Current OTP settings" : "Configuraciones actuales de OTP",
+ "Issuer" : "Quien levanta",
+ "Secret" : "Secreto",
+ "Expire date" : "Fecha de expiración",
+ "No expire date set" : "No se ha establecido la fecha de expiración ",
+ "Renew interval" : "Intervalo de renovación",
+ "Disabled" : "Deshabilitado",
+ "Day(s)" : "Día(s)",
+ "Week(s)" : "Semana(s)",
+ "Month(s)" : "Mes(es)",
+ "Year(s)" : "Año(s)",
+ "Password generation settings" : "Configuraciones de generación de  contraseñas",
+ "Password length" : "Longitud de contraseña",
+ "Minimum amount of digits" : "Número mínimo de dígitos",
+ "Use uppercase letters" : "Usar mayúsculas",
+ "Use lowercase letters" : "Usar minúsculas",
+ "Use numbers" : "Usar números",
+ "Use special characters" : "Usar caracteres especiales",
+ "Avoid ambiguous characters" : "Evitar caracteres ambíguos",
+ "Require every character type" : "Requerir todos los tipos de caracteres",
+ "Export type" : "Tipo de exportación",
+ "Export" : "Exportar",
+ "Enter vault password to confirm export." : "Ingresar contraseña de bóveda para confirmar la exportación. ",
+ "Rename vault" : "Renombrar bóveda",
+ "New vault name" : "Nuevo nombre de la bóveda",
+ "Change" : "Cambiar",
+ "Change vault key" : "Cambiar la llave de la bóveda",
+ "Old vault password" : "Anterior contraseña de la bóveda",
+ "New vault password" : "Nueva contraseña de la bóveda",
+ "New vault password repeat" : "Repetir nueva contraseña de la bóveda",
+ "Please wait your vault is being updated, do not leave this page." : "Favor de aguardar mientras se actualiza su bóveda, no salga de esta página. ",
+ "Processing" : "Procesando",
+ "Total progress" : "Progreso total",
+ "About Passman" : "Acerca de Passman",
+ "Version" : "Versión",
+ "Donate to support development" : "Donar en apoyo al desarrollo",
+ "Bookmarklet" : "Marcador a código",
+ "Save your passwords with 1 click!" : "¡Guarde sus contraseñas con 1 sólo click!",
+ "Drag below button to your bookmark toolbar." : "Arrastre el botón de abajo hasta su barra de herramientas de marcadores. ",
+ "Delete vault" : "Borrar bóveda",
+ "Vault password" : "Bóveda de contraseñas",
+ "This process is irreversible" : "Este proceso es irreversible",
+ "Delete my precious passwords" : "Borrar mis preciadas contraseñas",
+ "Deleting {{password}}..." : "Borrando {{password}}...",
+ "Yes, delete my precious passwords" : "Sí, borrar mis preciadas contraseñas",
+ "Import type" : "Tipo de importación",
+ "Import" : "Importar",
+ "Read progress" : "Progreso de la lectura",
+ "Upload progress" : "Progreso de la carga",
+ "Private Key" : "Llave privada",
+ "Public key" : "Llave pública",
+ "Key size" : "Tamaño de la llave",
+ "Save keys" : "Guardar llaves",
+ "Generate sharing keys" : "Generar llaves de comparitr",
+ "Generating sharing keys" : "Generando llaves de comparitr",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "La herramienta de contraseñas escaneará su contraseña, calculará el tiempo promedio para romperla y enlistará aquellas que estén por debajo del umbral",
+ "Minimum password stength" : "Fortaleza mínima de contraseña",
+ "Start scan" : "Iniciar escaneo",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "Se encontraron un total de {{scan_result}} credenciales débiles.",
+ "Score" : "Calificación",
+ "Action" : "Acción",
+ "Search users or groups..." : "Buscar usuarios o grupos ...",
+ "Missing users? Only users that have vaults are shown." : "¿Faltan usuarios? Sólo se muestran los usuarios que tienen bóvedas.",
+ "Cyphering" : "Encriptando",
+ "Uploading" : "Cargando",
+ "User" : "Usuario",
+ "Crypto time" : "Tiempo criptográfico",
+ "Total time spent cyphering" : "Tiempo total destinado a encriptar",
+ "Read" : "Leer",
+ "Write" : "Escribir",
+ "Files" : "Archivo",
+ "Revisions" : "Revisiones",
+ "Pending" : "Pendiente",
+ "Enable link sharing" : "Habilitar compartir link",
+ "Share until date" : "Compartir hasta fecha",
+ "Expire after views" : "Expirar después de visualizaciones",
+ "Click share first" : "Haga click en compartir primero",
+ "Show files" : "Mostrar archivos",
+ "Details" : "Detalles",
+ "Hide details" : "Ocultar detalles",
+ "Password score" : "Calificación de contraseña",
+ "Cracking times" : "Tiempos para romper la contraseña",
+ "100 / hour" : "100 / hora",
+ "Throttled online attack" : "Ataque en línea regulado",
+ "10 / second" : "10 / segundo",
+ "Unthrottled online attack" : "Ataque en línea sin regular",
+ "10k / second" : "10k / segundo",
+ "Offline attack, slow hash, many cores" : "Ataque sin conexión, funciones de resumen lentas, muchos núcleos",
+ "10B / second" : "10k / segundo",
+ "Offline attack, fast hash, many cores" : "Ataque sin conexión, funciones de resumen rápidas, muchos núcleos",
+ "Match sequence" : "Secuencia con coincidencia",
+ "See match sequence" : "Ver secuencia con coincidencia",
+ "Pattern" : "Patrón",
+ "Matched word" : "Palabra con coincidencia",
+ "Dictionary name" : "Nombre del diccionario",
+ "Rank" : "Rango",
+ "Reversed" : "Revertido",
+ "Guesses" : "Intentos",
+ "Base guesses" : "Intentos base",
+ "Uppercase variations" : "Variaciones en mayúsculas",
+ "l33t-variations" : "Variaciones en l33t",
+ "Showing revisions of" : "Mostrando revisiones de",
+ "Revision of" : "Revisión de",
+ "by" : "por",
+ "No revisions found." : "No se encontraron revisiones. ",
+ "Label" : "Etiqueta",
+ "Restore revision" : "Restaurar revisión",
+ "Delete revision" : "Borrar revisión",
+ "Edit credential" : "Editar credenciales",
+ "Create new credential" : "Crear credenciales nuevas",
+ "Save" : "Guardar",
+ "Cancel" : "Cancelar",
+ "Settings" : "Configuraciones ",
+ "Share credential {{credential}}" : "Compartir credenciales {{credential}}",
+ "Unshare" : "Dejar de compartir",
+ "Showing deleted since" : "Mostrando borrados desde",
+ "All time" : "Tiempo total",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Mostrando {{number_filtered}} de {{credential_number}} credenciales",
+ "Search credential..." : "Buscar credenciales ...",
+ "Account" : "Cuenta",
+ "Password" : "Contraseña",
+ "OTP" : "OTP",
+ "E-mail" : "Correo electrónico",
+ "URL" : "URL",
+ "Notes" : "Notas",
+ "Expire time" : "Tiempo de expiración",
+ "Changed" : "Cambiado",
+ "Created" : "Creado",
+ "Edit" : "Editar",
+ "Delete" : "Borrar",
+ "Share" : "Compartir",
+ "Recover" : "Recuperar",
+ "Destroy" : "Destruir",
+ "Use regex" : "Usar regex",
+ "You have incoming share requests." : "Usted recibió solicitudes para compartir. ",
+ "If you want to put the credential in a other vault," : "Si usted quiere colocar las credenciales en otra bóveda,",
+ "logout of this vault and login to the vault you want the shared credential in." : "salga de esta bóveda e inicie sesión a la bóveda en la que desea tener las credenciales compartidas",
+ "Permissions" : "Permisos",
+ "Received from" : "Recibido de",
+ "Date" : "Fecha",
+ "Accept" : "Aceptar",
+ "Decline" : "Declinar",
+ "You have {{session_time}} left before logout." : "Cuenta con {{session_time}} antes de que su sesión se cierre.",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "¡Su bóveda se encuentra bloqueada por {{time}} debido a los {{tries}} intentos fallidos!",
+ "Last accessed" : "Último acceso",
+ "Never" : "Nunca",
+ "No vaults found, why not create one?" : "No se encontraron bóvedas. ¿Por qué no crear una?",
+ "Password strength must be at least: {{strength}}" : "La fortaleza de la contraseña debe ser por lo menos: {{strength}}",
+ "Please give your new vault a name." : "Favor de ingresar el nombre de su bóveda nueva. ",
+ "Repeat vault password" : "Repita la contraseña de la bóveda",
+ "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Su llave para compartir tendrá una fortaleza de 1024 bits, usted lo podrá cambiar en las configuraciones . ",
+ "Create vault" : "Crear bóveda",
+ "Go back to vaults" : "Regresar a bóvedas",
+ "Please input the password for" : "Favor de ingresar la contraseña para",
+ "Set this vault as default." : "Establercer esta bóveda por defecto. ",
+ "Log into this vault automatically." : "Inicie sesión en esta bóveda automáticamente.",
+ "Logout of this vault automatically after: " : "Salir de esta bóveda automáticamente después de:",
+ "Decrypt vault" : "Decriptar bóveda",
+ "Seems you lost the vault password and you're unable to login." : "Al parecer ha perdido la contraseña de esta bóveda y no puede iniciar sesión. ",
+ "If you want this vault to be removed you can request that here." : "Si desea que esta bóveda sea eliminada puede solicitarlo aquí.",
+ "An admin then accepts to the request (or not)" : "Un administrador aceptará entonces la solicitud (o no)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Después de que un administrador destruya esta bóveda, todas las credenciales dentro se perderán",
+ "Reason to request deletion (optional):" : "Razón por la que solcita el borrado (opcional):",
+ "Request vault destruction" : "Solicitar la destrucción de la bóveda",
+ "Yes, request an admin to destroy this vault" : "Sí, solicitar a un administrador la destrucción de esta bóveda",
+ "Cancel destruction request" : "Cancelar la solicitud de destrucción",
+ "Vault destruction requested" : "Destrucción de la bóveda solicitada",
+ "Request removed" : "Solicitud eliminada",
+ "Destruction request pending" : "Solicitud de destrucción pendiente",
+ "Warning! Adding credentials over http can be insecure!" : "¡Advertncia! ¡Agregar credenciales sobre http puede ser inserguro!",
+ "Logged in to {{vault_name}}" : "Inició sesión en {{vault_name}}",
+ "Change vault" : "Cambiar bóveda",
+ "Deleted credentials" : "Credenciales borradas",
+ "Logout" : "Salir",
+ "Donate" : "Donar",
+ "Someone has shared a credential with you." : "Alguien ha compartido credenciales con usted. ",
+ "Click here to request it" : "Haga click para solicitarlo",
+ "Loading..." : "Cargando...",
+ "Awwhh.... credential not found. Maybe it expired" : "Awwhh.... credenciales no encontradas. Tal vez expiraron",
+ "Error while saving field" : "Se presentó un error al guardar el campo",
+ "A Passman item has been created, modified or deleted" : "Un elemento de Passman ha sido creado, modificado o borrado",
+ "A Passman item has expired" : "El elemento de Passman ha expirado",
+ "A Passman item has been shared" : "Un elemento de Passman ha sido compartido",
+ "A Passman item has been renamed" : "Un elemento de Passman ha sido renombrado",
+ "%1$s has been created by %2$s" : "%1$s ha sido creado por %2$s",
+ "You created %1$s" : "Usted creó %1$s",
+ "%1$s has been updated by %2$s" : "%1$s ha sido actualizado por %2$s",
+ "You updated %1$s" : "Usted actualizó %1$s",
+ "%2$s has revised %1$s to the revision of %3$s" : "%2$s ha revisado %1$s a la revisón de %3$s",
+ "You reverted %1$s back to the revision of %3$s" : "Usted revirtió %1$s de vuelta a la revisión de %3$s",
+ "%3$s has renamed %1$s to %2$s" : "%3$s ha renombrado %1$s como %2$s",
+ "You renamed %1$s to %2$s" : "Usted renombro %1$s como %2$s",
+ "%1$s has been deleted by %2$s" : "%1$s ha sido borrado por %2$s",
+ "You deleted %1$s" : "Usted borró %1$s",
+ "%1$s has been recovered by %2$s" : "%1$s ha sido recuperado por %2$s",
+ "You recovered %1$s" : "Usted recuperó %1$s",
+ "%1$s has been permanently deleted by %2$s" : "%1$s ha sido borrado permanentemente por %2$s",
+ "You permanently deleted %1$s" : "Ha borrado permanentemente %1$s",
+ "The password of %1$s has expired, renew it now." : "La contraseña de %1$s ha expirado, renuévela ahora.",
+ "%1$s has been shared with %2$s" : "%1$s ha sido compartido con %2$s",
+ "You received a share request for %1$s from %2$s" : "Usted ha recibido una solicitud para compartir de %1$s desde%2$s",
+ "%s has been shared with a link" : "%s ha sido compartido con un link",
+ "Your credential \"%s\" expired, click here to update the credential." : "Sus credenciales \"%s\" han expirado, haga click aquí para actualizarlas.",
+ "Remind me later" : "Recordarme más tarde",
+ "Ignore" : "Ignorar",
+ "%s shared \"%s\" with you. Click here to accept" : "%s ha compartido \"%s\" con usted. Haga click aquí para aceptar",
+ "%s has declined your share request for \"%s\"." : "%s ha declinado su solicitud para compartir \"%s\".",
+ "%s has accepted your share request for \"%s\"." : "%s ha aceptado su solicitud para compartir \"%s\".",
+ "Passman" : "Passman",
+ "Unable to get version info" : "No fue posible obtener la información de la versión",
+ "Passman Settings" : "Configuraciones de Passman",
+ "Github version:" : "Versión de Github:",
+ "A newer version of Passman is available" : "Una nueva versión de Passman se encuentra disponible",
+ "Password sharing" : "Compartir contraseña",
+ "Credential mover" : "Mover credenciales",
+ "Vault destruction requests" : "Solicitudes para destruir bóvedas",
+ "Check for new versions" : "Verificar si hay nuevas versiones",
+ "Enable HTTPS check" : "Habilitar verificación HTTPS",
+ "Disable context menu" : "Deshabilitar menú contextual",
+ "Disable JavaScript debugger" : "Deshabilitar el depurador JavaScript",
+ "Allow users on this server to share passwords with a link" : "Permitir a los usuarios en este servidor compartir contraseñas con un link",
+ "Allow users on this server to share passwords with other users" : "Permitir a los usuarios en este servidor compartir contraseñas con otros usuarios",
+ "Move credentials from one account to another" : "Mover credenciales de una cuenta a otra",
+ "Source account" : "Cuenta fuente",
+ "Destination account" : "Cuenta destino",
+ "Credentials moved!" : "¡Se movieron las credenciales!",
+ "Requests to destroy vault" : "Solicitudes para destruir bóvedas",
+ "Request ID" : "ID de solicitud",
+ "Requested by" : "Solciitado por",
+ "Reason" : "Razón",
+ "Connection to server lost" : "Se perdió la conexión al servidor",
+ "Problem loading page, reloading in 5 seconds" : "Se presentó un problema al cargar la página, recargando en 5 segundos",
+ "Saving..." : "Guardando ...",
+ "Dismiss" : "Descartar",
+ "seconds ago" : "segundos"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+} \ No newline at end of file
diff --git a/l10n/es_MX.js b/l10n/es_MX.js
index 0d824079..259b258d 100644
--- a/l10n/es_MX.js
+++ b/l10n/es_MX.js
@@ -30,18 +30,22 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "{{num}} credenciales interpretadas, comenzando a importar",
"Importing" : "Importando",
"Start import" : "Comenzar importación",
+ "Select CSV file" : "Seleccione el archivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "{{num}} líneas interpretadas del archivo CSV",
"Skip first row" : "Omitir primer renglón",
"You need to assign the label field before you can start the import." : "Necesita asignar el campo etiqueta antes de que pueda comenzar la importación.",
+ "First 5 lines of the CSV are shown." : "Se muestran las primeras 5 líneas del archivo CSV",
"Assign the proper fields to each column." : "Asigne el campo correspondiente a cada columna. ",
"Example imported credential" : "Ejemplo de credenciales importadas",
+ "Missing an importer? Try it with the generic CSV importer." : "¿Requiere de una herramienta para importar? Pruebe con la herramienta genérica para importar CSV.",
"Go back to importers." : "Regresar a importadores.",
"Revision deleted" : "Revisión borrada",
"Revision restored" : "Revisión restaurada",
"Save in passman" : "Guardar en passman",
- "Settings saved" : "Ajustes guardados",
- "General settings" : "Ajustes generales",
+ "Settings saved" : "Configuraciones guardadas",
+ "General settings" : "Configuraciones generales",
"Password Audit" : "Auditoria de contraseñas",
- "Password settings" : "Ajustes de contraseña",
+ "Password settings" : "Configuraciones de contraseña",
"Import credentials" : "Importar credenciales",
"Export credentials" : "Exportar credenciales",
"Sharing" : "Compartiendo",
@@ -51,7 +55,7 @@ OC.L10N.register(
"Please login with your new vault password" : "Favor de iniciar sesión con su nueva contraseña de bóveda",
"Share with users and groups" : "Compartir con otros usuarios y grupos",
"Share link" : "Compartir liga",
- "Are you sure you want to leave? This will corrupt this credential" : "¿Está seguro que desea salir? Esto va a corrpomer estas credenciales",
+ "Are you sure you want to leave? This will corrupt this credential" : "¿Está seguro que desea salir? Esto va a corromper estas credenciales",
"Credential unshared" : "Credenciales no compartidas",
"Credential shared" : "Credenciales compartidas",
"Saved!" : "¡Guardado!",
@@ -83,7 +87,7 @@ OC.L10N.register(
"Upload date" : "Fecha de carga",
"Size" : "Tamaño",
"Upload or enter your OTP secret" : "Carge o ingrese su secreto de OTP",
- "Current OTP settings" : "Ajustes actuales de OTP",
+ "Current OTP settings" : "Configuraciones actuales de OTP",
"Issuer" : "Quien levanta",
"Secret" : "Secreto",
"Expire date" : "Fecha de expiración",
@@ -94,7 +98,7 @@ OC.L10N.register(
"Week(s)" : "Semana(s)",
"Month(s)" : "Mes(es)",
"Year(s)" : "Año(s)",
- "Password generation settings" : "Ajustes de generación de  contraseñas",
+ "Password generation settings" : "Configuraciones de generación de  contraseñas",
"Password length" : "Longitud de contraseña",
"Minimum amount of digits" : "Número mínimo de dígitos",
"Use uppercase letters" : "Usar mayúsculas",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Guardar llaves",
"Generate sharing keys" : "Generar llaves de comparitr",
"Generating sharing keys" : "Generando llaves de comparitr",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "La herramienta de contraseñas escaneará su contraseña, calculará el tiempo promedio para romperla y enlistará aquellas que estén por debajo del umbral",
"Minimum password stength" : "Fortaleza mínima de contraseña",
+ "Start scan" : "Iniciar escaneo",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "Se encontraron un total de {{scan_result}} credenciales débiles.",
"Score" : "Calificación",
"Action" : "Acción",
"Search users or groups..." : "Buscar usuarios o grupos ...",
@@ -167,9 +175,9 @@ OC.L10N.register(
"10 / second" : "10 / segundo",
"Unthrottled online attack" : "Ataque en línea sin regular",
"10k / second" : "10k / segundo",
- "Offline attack, slow hash, many cores" : "Ataque fuera de línea, funciones de resumen lentas, muchos núcleos",
+ "Offline attack, slow hash, many cores" : "Ataque sin conexión, funciones de resumen lentas, muchos núcleos",
"10B / second" : "10k / segundo",
- "Offline attack, fast hash, many cores" : "Ataque fuera de línea, funciones de resumen rápidas, muchos núcleos",
+ "Offline attack, fast hash, many cores" : "Ataque sin conexión, funciones de resumen rápidas, muchos núcleos",
"Match sequence" : "Secuencia con coincidencia",
"See match sequence" : "Ver secuencia con coincidencia",
"Pattern" : "Patrón",
@@ -192,7 +200,7 @@ OC.L10N.register(
"Create new credential" : "Crear credenciales nuevas",
"Save" : "Guardar",
"Cancel" : "Cancelar",
- "Settings" : "Ajustes",
+ "Settings" : "Configuraciones ",
"Share credential {{credential}}" : "Compartir credenciales {{credential}}",
"Unshare" : "Dejar de compartir",
"Showing deleted since" : "Mostrando borrados desde",
@@ -230,14 +238,18 @@ OC.L10N.register(
"Password strength must be at least: {{strength}}" : "La fortaleza de la contraseña debe ser por lo menos: {{strength}}",
"Please give your new vault a name." : "Favor de ingresar el nombre de su bóveda nueva. ",
"Repeat vault password" : "Repita la contraseña de la bóveda",
- "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Su llave para compartir tendrá una fortaleza de 1024 bits, usted lo podrá cambiar en los ajustes. ",
+ "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Su llave para compartir tendrá una fortaleza de 1024 bits, usted lo podrá cambiar en las configuraciones . ",
"Create vault" : "Crear bóveda",
"Go back to vaults" : "Regresar a bóvedas",
"Please input the password for" : "Favor de ingresar la contraseña para",
"Set this vault as default." : "Establercer esta bóveda por defecto. ",
+ "Log into this vault automatically." : "Inicie sesión en esta bóveda automáticamente.",
"Logout of this vault automatically after: " : "Salir de esta bóveda automáticamente después de:",
"Decrypt vault" : "Decriptar bóveda",
"Seems you lost the vault password and you're unable to login." : "Al parecer ha perdido la contraseña de esta bóveda y no puede iniciar sesión. ",
+ "If you want this vault to be removed you can request that here." : "Si desea que esta bóveda sea eliminada puede solicitarlo aquí.",
+ "An admin then accepts to the request (or not)" : "Un administrador aceptará entonces la solicitud (o no)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Después de que un administrador destruya esta bóveda, todas las credenciales dentro se perderán",
"Reason to request deletion (optional):" : "Razón por la que solcita el borrado (opcional):",
"Request vault destruction" : "Solicitar la destrucción de la bóveda",
"Yes, request an admin to destroy this vault" : "Sí, solicitar a un administrador la destrucción de esta bóveda",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s ha compartido \"%s\" con usted. Haga click aquí para aceptar",
"%s has declined your share request for \"%s\"." : "%s ha declinado su solicitud para compartir \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s ha aceptado su solicitud para compartir \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "No fue posible obtener la información de la versión",
- "Passman Settings" : "Ajustes de Passman",
- "Github version:" : "Versión de Github:",
+ "Passman Settings" : "Configuraciones de Passman",
+ "Github version:" : "Versión de GitHub:",
+ "A newer version of Passman is available" : "Una nueva versión de Passman se encuentra disponible",
"Password sharing" : "Compartir contraseña",
"Credential mover" : "Mover credenciales",
"Vault destruction requests" : "Solicitudes para destruir bóvedas",
"Check for new versions" : "Verificar si hay nuevas versiones",
"Enable HTTPS check" : "Habilitar verificación HTTPS",
"Disable context menu" : "Deshabilitar menú contextual",
+ "Disable JavaScript debugger" : "Deshabilitar el depurador JavaScript",
"Allow users on this server to share passwords with a link" : "Permitir a los usuarios en este servidor compartir contraseñas con una liga",
"Allow users on this server to share passwords with other users" : "Permitir a los usuarios en este servidor compartir contraseñas con otros usuarios",
"Move credentials from one account to another" : "Mover credenciales de una cuenta a otra",
diff --git a/l10n/es_MX.json b/l10n/es_MX.json
index b41e8b0c..eed4d0e9 100644
--- a/l10n/es_MX.json
+++ b/l10n/es_MX.json
@@ -28,18 +28,22 @@
"Parsed {{num}} credentials, starting to import" : "{{num}} credenciales interpretadas, comenzando a importar",
"Importing" : "Importando",
"Start import" : "Comenzar importación",
+ "Select CSV file" : "Seleccione el archivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "{{num}} líneas interpretadas del archivo CSV",
"Skip first row" : "Omitir primer renglón",
"You need to assign the label field before you can start the import." : "Necesita asignar el campo etiqueta antes de que pueda comenzar la importación.",
+ "First 5 lines of the CSV are shown." : "Se muestran las primeras 5 líneas del archivo CSV",
"Assign the proper fields to each column." : "Asigne el campo correspondiente a cada columna. ",
"Example imported credential" : "Ejemplo de credenciales importadas",
+ "Missing an importer? Try it with the generic CSV importer." : "¿Requiere de una herramienta para importar? Pruebe con la herramienta genérica para importar CSV.",
"Go back to importers." : "Regresar a importadores.",
"Revision deleted" : "Revisión borrada",
"Revision restored" : "Revisión restaurada",
"Save in passman" : "Guardar en passman",
- "Settings saved" : "Ajustes guardados",
- "General settings" : "Ajustes generales",
+ "Settings saved" : "Configuraciones guardadas",
+ "General settings" : "Configuraciones generales",
"Password Audit" : "Auditoria de contraseñas",
- "Password settings" : "Ajustes de contraseña",
+ "Password settings" : "Configuraciones de contraseña",
"Import credentials" : "Importar credenciales",
"Export credentials" : "Exportar credenciales",
"Sharing" : "Compartiendo",
@@ -49,7 +53,7 @@
"Please login with your new vault password" : "Favor de iniciar sesión con su nueva contraseña de bóveda",
"Share with users and groups" : "Compartir con otros usuarios y grupos",
"Share link" : "Compartir liga",
- "Are you sure you want to leave? This will corrupt this credential" : "¿Está seguro que desea salir? Esto va a corrpomer estas credenciales",
+ "Are you sure you want to leave? This will corrupt this credential" : "¿Está seguro que desea salir? Esto va a corromper estas credenciales",
"Credential unshared" : "Credenciales no compartidas",
"Credential shared" : "Credenciales compartidas",
"Saved!" : "¡Guardado!",
@@ -81,7 +85,7 @@
"Upload date" : "Fecha de carga",
"Size" : "Tamaño",
"Upload or enter your OTP secret" : "Carge o ingrese su secreto de OTP",
- "Current OTP settings" : "Ajustes actuales de OTP",
+ "Current OTP settings" : "Configuraciones actuales de OTP",
"Issuer" : "Quien levanta",
"Secret" : "Secreto",
"Expire date" : "Fecha de expiración",
@@ -92,7 +96,7 @@
"Week(s)" : "Semana(s)",
"Month(s)" : "Mes(es)",
"Year(s)" : "Año(s)",
- "Password generation settings" : "Ajustes de generación de  contraseñas",
+ "Password generation settings" : "Configuraciones de generación de  contraseñas",
"Password length" : "Longitud de contraseña",
"Minimum amount of digits" : "Número mínimo de dígitos",
"Use uppercase letters" : "Usar mayúsculas",
@@ -136,7 +140,11 @@
"Save keys" : "Guardar llaves",
"Generate sharing keys" : "Generar llaves de comparitr",
"Generating sharing keys" : "Generando llaves de comparitr",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "La herramienta de contraseñas escaneará su contraseña, calculará el tiempo promedio para romperla y enlistará aquellas que estén por debajo del umbral",
"Minimum password stength" : "Fortaleza mínima de contraseña",
+ "Start scan" : "Iniciar escaneo",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "Se encontraron un total de {{scan_result}} credenciales débiles.",
"Score" : "Calificación",
"Action" : "Acción",
"Search users or groups..." : "Buscar usuarios o grupos ...",
@@ -165,9 +173,9 @@
"10 / second" : "10 / segundo",
"Unthrottled online attack" : "Ataque en línea sin regular",
"10k / second" : "10k / segundo",
- "Offline attack, slow hash, many cores" : "Ataque fuera de línea, funciones de resumen lentas, muchos núcleos",
+ "Offline attack, slow hash, many cores" : "Ataque sin conexión, funciones de resumen lentas, muchos núcleos",
"10B / second" : "10k / segundo",
- "Offline attack, fast hash, many cores" : "Ataque fuera de línea, funciones de resumen rápidas, muchos núcleos",
+ "Offline attack, fast hash, many cores" : "Ataque sin conexión, funciones de resumen rápidas, muchos núcleos",
"Match sequence" : "Secuencia con coincidencia",
"See match sequence" : "Ver secuencia con coincidencia",
"Pattern" : "Patrón",
@@ -190,7 +198,7 @@
"Create new credential" : "Crear credenciales nuevas",
"Save" : "Guardar",
"Cancel" : "Cancelar",
- "Settings" : "Ajustes",
+ "Settings" : "Configuraciones ",
"Share credential {{credential}}" : "Compartir credenciales {{credential}}",
"Unshare" : "Dejar de compartir",
"Showing deleted since" : "Mostrando borrados desde",
@@ -228,14 +236,18 @@
"Password strength must be at least: {{strength}}" : "La fortaleza de la contraseña debe ser por lo menos: {{strength}}",
"Please give your new vault a name." : "Favor de ingresar el nombre de su bóveda nueva. ",
"Repeat vault password" : "Repita la contraseña de la bóveda",
- "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Su llave para compartir tendrá una fortaleza de 1024 bits, usted lo podrá cambiar en los ajustes. ",
+ "Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Su llave para compartir tendrá una fortaleza de 1024 bits, usted lo podrá cambiar en las configuraciones . ",
"Create vault" : "Crear bóveda",
"Go back to vaults" : "Regresar a bóvedas",
"Please input the password for" : "Favor de ingresar la contraseña para",
"Set this vault as default." : "Establercer esta bóveda por defecto. ",
+ "Log into this vault automatically." : "Inicie sesión en esta bóveda automáticamente.",
"Logout of this vault automatically after: " : "Salir de esta bóveda automáticamente después de:",
"Decrypt vault" : "Decriptar bóveda",
"Seems you lost the vault password and you're unable to login." : "Al parecer ha perdido la contraseña de esta bóveda y no puede iniciar sesión. ",
+ "If you want this vault to be removed you can request that here." : "Si desea que esta bóveda sea eliminada puede solicitarlo aquí.",
+ "An admin then accepts to the request (or not)" : "Un administrador aceptará entonces la solicitud (o no)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Después de que un administrador destruya esta bóveda, todas las credenciales dentro se perderán",
"Reason to request deletion (optional):" : "Razón por la que solcita el borrado (opcional):",
"Request vault destruction" : "Solicitar la destrucción de la bóveda",
"Yes, request an admin to destroy this vault" : "Sí, solicitar a un administrador la destrucción de esta bóveda",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s ha compartido \"%s\" con usted. Haga click aquí para aceptar",
"%s has declined your share request for \"%s\"." : "%s ha declinado su solicitud para compartir \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s ha aceptado su solicitud para compartir \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "No fue posible obtener la información de la versión",
- "Passman Settings" : "Ajustes de Passman",
- "Github version:" : "Versión de Github:",
+ "Passman Settings" : "Configuraciones de Passman",
+ "Github version:" : "Versión de GitHub:",
+ "A newer version of Passman is available" : "Una nueva versión de Passman se encuentra disponible",
"Password sharing" : "Compartir contraseña",
"Credential mover" : "Mover credenciales",
"Vault destruction requests" : "Solicitudes para destruir bóvedas",
"Check for new versions" : "Verificar si hay nuevas versiones",
"Enable HTTPS check" : "Habilitar verificación HTTPS",
"Disable context menu" : "Deshabilitar menú contextual",
+ "Disable JavaScript debugger" : "Deshabilitar el depurador JavaScript",
"Allow users on this server to share passwords with a link" : "Permitir a los usuarios en este servidor compartir contraseñas con una liga",
"Allow users on this server to share passwords with other users" : "Permitir a los usuarios en este servidor compartir contraseñas con otros usuarios",
"Move credentials from one account to another" : "Mover credenciales de una cuenta a otra",
diff --git a/l10n/fi.js b/l10n/fi.js
index 53dcaf7f..bffc1119 100644
--- a/l10n/fi.js
+++ b/l10n/fi.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"Passwords do not match" : "Salasanat eivät täsmää",
"General" : "Yleiset",
"Custom Fields" : "Omavalintaiset kentät",
+ "Please fill in a label!" : "Täytäthän kohdan!",
"Please fill in a value!" : "Anna arvo!",
"Error loading file" : "Virhe tiedostoa ladatessa",
"An error happened during decryption" : "Salauksen avaamisessa tapahtui virhe",
diff --git a/l10n/fi.json b/l10n/fi.json
index f62fc2a3..8d09c9be 100644
--- a/l10n/fi.json
+++ b/l10n/fi.json
@@ -4,6 +4,7 @@
"Passwords do not match" : "Salasanat eivät täsmää",
"General" : "Yleiset",
"Custom Fields" : "Omavalintaiset kentät",
+ "Please fill in a label!" : "Täytäthän kohdan!",
"Please fill in a value!" : "Anna arvo!",
"Error loading file" : "Virhe tiedostoa ladatessa",
"An error happened during decryption" : "Salauksen avaamisessa tapahtui virhe",
diff --git a/l10n/fr.js b/l10n/fr.js
index e7adf3a7..cb5dcaec 100644
--- a/l10n/fr.js
+++ b/l10n/fr.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "{{num}} informations d'identification analysées, commence à importer",
"Importing" : "Import en cours",
"Start import" : "Démarrer l'import",
+ "Select CSV file" : "Sélectionner le fichier CSV",
+ "Parsed {{rows}} lines from CSV file" : "A analysé {{rows}} lignes du fichier CSV",
"Skip first row" : "Ignorer le premier rang",
"You need to assign the label field before you can start the import." : "Vous devez attribuer le champ d'étiquette avant de pouvoir commencer l'importation.",
+ "First 5 lines of the CSV are shown." : "Les 5 premières lignes du CSV sont montrées.",
"Assign the proper fields to each column." : "Attribuer les champs appropriés à chaque colonne.",
"Example imported credential" : "Exemple d'information d'identification importé",
+ "Missing an importer? Try it with the generic CSV importer." : "Donnée importée manquante ? Essayez avec l'importation du CSV générique.",
"Go back to importers." : "Retourner aux données importées.",
"Revision deleted" : "Révision supprimée",
"Revision restored" : "Révision restaurée",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Sauvegarder les clés",
"Generate sharing keys" : "Générer des clés de partage",
"Generating sharing keys" : "Génération des clés de partage",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "L'outil de mot de passe va scanner vos mots de passe, calculer le temps moyen pour le déchiffrer et afficher ceux qui sont inférieur au seuil",
"Minimum password stength" : "Force minimale du mot de passe",
+ "Start scan" : "Commencer le scan",
+ "Result" : "Résultat",
+ "A total of {{scan_result}} weak credentials were found." : "Un total de {{scan_result}} informations d'identification faibles ont été trouvées",
"Score" : "Résultat",
"Action" : "Action",
"Search users or groups..." : "Recherche des utilisateurs ou des groupes ...",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Retourner aux coffres-forts",
"Please input the password for" : "Veuillez entrer le mot de passe pour",
"Set this vault as default." : "Choisir ce coffre-fort par défaut.",
+ "Log into this vault automatically." : "Se connecter à ce coffre-fort automatiquement.",
"Logout of this vault automatically after: " : "Se déconnecter de ce coffre-fort automatiquement après :",
"Decrypt vault" : "Déchiffrer le coffre-fort",
"Seems you lost the vault password and you're unable to login." : "Il semblerait que vous avez perdu le mot de passe du coffre-fort et que vous êtes incapable de vous connecter.",
+ "If you want this vault to be removed you can request that here." : "Si vous souhaitez supprimer ce coffre-fort, vous pouvez demander lsa suppression ici.",
+ "An admin then accepts to the request (or not)" : "Un administrateur accepte alors la requête (ou non)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Après qu'un administrateur ait détruit ce coffre-fort, toutes les informations d'identification contenues à l'intérieur seront perdues.",
"Reason to request deletion (optional):" : "Motif de la demande de suppression (optionnel) :",
"Request vault destruction" : "Demander la destruction du coffre-fort",
"Yes, request an admin to destroy this vault" : "Oui, demander à un administrateur de détruire ce coffre-fort",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s a partagé \"%s\" avec vous. Cliquez ici pour accepter",
"%s has declined your share request for \"%s\"." : "%s a refusé votre demande de partage pour \"%s\"",
"%s has accepted your share request for \"%s\"." : "%s a accepté votre demande de partage pour \"%s\"",
+ "Passman" : "Passman",
"Unable to get version info" : "Impossible d'obtenir l'information de la version",
"Passman Settings" : "Paramètres de Passman",
"Github version:" : "Version Github :",
+ "A newer version of Passman is available" : "Une version plus récente de Passman est disponible",
"Password sharing" : "Partage de mot de passe",
"Credential mover" : "Déplacement des informations d'identification",
"Vault destruction requests" : "Requêtes de destruction de coffre-fort",
"Check for new versions" : "Vérifier la présence de nouvelles versions",
"Enable HTTPS check" : "Activer la vérification HTTPS",
"Disable context menu" : "Désactiver le menu contextuel",
+ "Disable JavaScript debugger" : "Désactiver le débogueur Javascript",
"Allow users on this server to share passwords with a link" : "Autoriser les utilisateurs de ce serveur à partager par lien des mots de passe",
"Allow users on this server to share passwords with other users" : "Autoriser les utilisateurs de ce serveur à partager des mots de passe avec d'autres utilisateurs",
"Move credentials from one account to another" : "Déplacer les informations d'identification d'un compte vers un autre",
diff --git a/l10n/fr.json b/l10n/fr.json
index 68816fe8..b8653ed9 100644
--- a/l10n/fr.json
+++ b/l10n/fr.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "{{num}} informations d'identification analysées, commence à importer",
"Importing" : "Import en cours",
"Start import" : "Démarrer l'import",
+ "Select CSV file" : "Sélectionner le fichier CSV",
+ "Parsed {{rows}} lines from CSV file" : "A analysé {{rows}} lignes du fichier CSV",
"Skip first row" : "Ignorer le premier rang",
"You need to assign the label field before you can start the import." : "Vous devez attribuer le champ d'étiquette avant de pouvoir commencer l'importation.",
+ "First 5 lines of the CSV are shown." : "Les 5 premières lignes du CSV sont montrées.",
"Assign the proper fields to each column." : "Attribuer les champs appropriés à chaque colonne.",
"Example imported credential" : "Exemple d'information d'identification importé",
+ "Missing an importer? Try it with the generic CSV importer." : "Donnée importée manquante ? Essayez avec l'importation du CSV générique.",
"Go back to importers." : "Retourner aux données importées.",
"Revision deleted" : "Révision supprimée",
"Revision restored" : "Révision restaurée",
@@ -136,7 +140,11 @@
"Save keys" : "Sauvegarder les clés",
"Generate sharing keys" : "Générer des clés de partage",
"Generating sharing keys" : "Génération des clés de partage",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "L'outil de mot de passe va scanner vos mots de passe, calculer le temps moyen pour le déchiffrer et afficher ceux qui sont inférieur au seuil",
"Minimum password stength" : "Force minimale du mot de passe",
+ "Start scan" : "Commencer le scan",
+ "Result" : "Résultat",
+ "A total of {{scan_result}} weak credentials were found." : "Un total de {{scan_result}} informations d'identification faibles ont été trouvées",
"Score" : "Résultat",
"Action" : "Action",
"Search users or groups..." : "Recherche des utilisateurs ou des groupes ...",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Retourner aux coffres-forts",
"Please input the password for" : "Veuillez entrer le mot de passe pour",
"Set this vault as default." : "Choisir ce coffre-fort par défaut.",
+ "Log into this vault automatically." : "Se connecter à ce coffre-fort automatiquement.",
"Logout of this vault automatically after: " : "Se déconnecter de ce coffre-fort automatiquement après :",
"Decrypt vault" : "Déchiffrer le coffre-fort",
"Seems you lost the vault password and you're unable to login." : "Il semblerait que vous avez perdu le mot de passe du coffre-fort et que vous êtes incapable de vous connecter.",
+ "If you want this vault to be removed you can request that here." : "Si vous souhaitez supprimer ce coffre-fort, vous pouvez demander lsa suppression ici.",
+ "An admin then accepts to the request (or not)" : "Un administrateur accepte alors la requête (ou non)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Après qu'un administrateur ait détruit ce coffre-fort, toutes les informations d'identification contenues à l'intérieur seront perdues.",
"Reason to request deletion (optional):" : "Motif de la demande de suppression (optionnel) :",
"Request vault destruction" : "Demander la destruction du coffre-fort",
"Yes, request an admin to destroy this vault" : "Oui, demander à un administrateur de détruire ce coffre-fort",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s a partagé \"%s\" avec vous. Cliquez ici pour accepter",
"%s has declined your share request for \"%s\"." : "%s a refusé votre demande de partage pour \"%s\"",
"%s has accepted your share request for \"%s\"." : "%s a accepté votre demande de partage pour \"%s\"",
+ "Passman" : "Passman",
"Unable to get version info" : "Impossible d'obtenir l'information de la version",
"Passman Settings" : "Paramètres de Passman",
"Github version:" : "Version Github :",
+ "A newer version of Passman is available" : "Une version plus récente de Passman est disponible",
"Password sharing" : "Partage de mot de passe",
"Credential mover" : "Déplacement des informations d'identification",
"Vault destruction requests" : "Requêtes de destruction de coffre-fort",
"Check for new versions" : "Vérifier la présence de nouvelles versions",
"Enable HTTPS check" : "Activer la vérification HTTPS",
"Disable context menu" : "Désactiver le menu contextuel",
+ "Disable JavaScript debugger" : "Désactiver le débogueur Javascript",
"Allow users on this server to share passwords with a link" : "Autoriser les utilisateurs de ce serveur à partager par lien des mots de passe",
"Allow users on this server to share passwords with other users" : "Autoriser les utilisateurs de ce serveur à partager des mots de passe avec d'autres utilisateurs",
"Move credentials from one account to another" : "Déplacer les informations d'identification d'un compte vers un autre",
diff --git a/l10n/is.js b/l10n/is.js
index bf45468d..2589c033 100644
--- a/l10n/is.js
+++ b/l10n/is.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Þáttaði {{num}} auðkenni, hef innflutning",
"Importing" : "Innflutningur",
"Start import" : "Hefja innflutning",
+ "Select CSV file" : "Veldu CSV-skrá",
+ "Parsed {{rows}} lines from CSV file" : "Þáttaði {{rows}} línur úr CSV-skrá",
"Skip first row" : "Sleppti fyrstu röð",
"You need to assign the label field before you can start the import." : "Þú þarft að setja inn skýringu á gagnasviðið áður en þú getur hafið innflutning.",
+ "First 5 lines of the CSV are shown." : "Fyrstu5 línur CSV-skrárinnar eru sýndar.",
"Assign the proper fields to each column." : "Úthlutaðu réttum gagnasviðum á hvern dálk.",
"Example imported credential" : "Dæmi um innflutt auðkenni",
+ "Missing an importer? Try it with the generic CSV importer." : "Vantar innflutningsskriftu? Prófaðu með almennu CSV-innflutningsskriftunni.",
"Go back to importers." : "Fara aftur í innflutningsskriftur.",
"Revision deleted" : "Útgáfu eytt",
"Revision restored" : "Útgáfa endurheimt",
@@ -138,11 +142,15 @@ OC.L10N.register(
"Save keys" : "Vista lykla",
"Generate sharing keys" : "Útbúa deilingarlykla",
"Generating sharing keys" : "Útbý deilingarlykla",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Lykilorðatólið mun skanna lykilorðið þitt, reikna meðaltímann sem tæki að ráða það, og birta lista yfir það sem er neðan við ákveðin mörk",
"Minimum password stength" : "Lágmarksstyrkur lykilorðs",
+ "Start scan" : "Hefja skönnun",
+ "Result" : "Niðurstöður",
+ "A total of {{scan_result}} weak credentials were found." : "Alls fundust {{scan_result}} veik auðkenni.",
"Score" : "Einkunn",
"Action" : "Aðgerð",
"Search users or groups..." : "Leita að notendum eða hópum...",
- "Missing users? Only users that have vaults are shown." : "Vantar notendur? A'eins eru birtir notendur sem hafa lykilorðageymslur.",
+ "Missing users? Only users that have vaults are shown." : "Vantar notendur? Aðeins eru birtir notendur sem hafa lykilorðageymslur.",
"Cyphering" : "Dulkóðun",
"Uploading" : "Sendi inn ",
"User" : "Notandi",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Fara aftur í lykilorðageymslur",
"Please input the password for" : "Settu inn lykilorðið fyrir",
"Set this vault as default." : "Setja þessa lykilorðageymslu sem sjálfgefna.",
+ "Log into this vault automatically." : "Skrá sjálfvirkt inn í þessa lykilorðageymslu.",
"Logout of this vault automatically after: " : "Skrá sjálfvirkt út úr þessari lykilorðageymslu eftir: ",
"Decrypt vault" : "Afkóða lykilorðageymslu",
"Seems you lost the vault password and you're unable to login." : "Það lítur út eins og þú hafir tapað lykilorðinu fyrir lykilorðageymsluna og getir ekki skráð þig inn.",
+ "If you want this vault to be removed you can request that here." : "Ef þú vilt að þessi lykilorðageymsla verði fjarlægð, geturðu beðið um það hér.",
+ "An admin then accepts to the request (or not)" : "Kerfisstjóri mun síðan samþykkja beiðnina (eða ekki)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Eftir að kerfisstjóri eyðir þessari lykilorðageymslu, munu öll auðkenni tapast",
"Reason to request deletion (optional):" : "Ástæða fyrir beiðni um eyðingu (valfrjálst):",
"Request vault destruction" : "Biðja um eyðingu á lykilorðageymslu",
"Yes, request an admin to destroy this vault" : "Já, biðja kerfisstjóra að eyða þessari lykilorðageymslu",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "\"%s deildi »%s« með þér. Smelltu hér til að samþykkja",
"%s has declined your share request for \"%s\"." : "%s hafnaði beiðni þinni um deilingu á \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s samþykkti beiðni þína um deilingu á \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Gat ekki náð í upplýsingar um útgáfu",
"Passman Settings" : "Stillingar Passman",
"Github version:" : "Útgáfa Github:",
+ "A newer version of Passman is available" : "Nýrri útgáfa Passman er tiltæk",
"Password sharing" : "Deiling lykilorða",
"Credential mover" : "Tilfærsla auðkenna",
"Vault destruction requests" : "Beiðnir um eyðingu á lykilorðageymslum",
"Check for new versions" : "Athuga með nýjar útgáfur",
"Enable HTTPS check" : "Virkja prófun á HTTPS",
"Disable context menu" : "Gera samhengisvalmynd óvirka",
+ "Disable JavaScript debugger" : "Gera JavaScript aflúsara óvirkann",
"Allow users on this server to share passwords with a link" : "Leyfa notendum á þessum þjóni að deila lykilorðum með tengli",
"Allow users on this server to share passwords with other users" : "Leyfa notendum á þessum þjóni að deila lykilorðum með öðrum notendum",
"Move credentials from one account to another" : "Flytja auðkenni frá einum aðgangi til annars",
diff --git a/l10n/is.json b/l10n/is.json
index 2ed0a84f..62c74609 100644
--- a/l10n/is.json
+++ b/l10n/is.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Þáttaði {{num}} auðkenni, hef innflutning",
"Importing" : "Innflutningur",
"Start import" : "Hefja innflutning",
+ "Select CSV file" : "Veldu CSV-skrá",
+ "Parsed {{rows}} lines from CSV file" : "Þáttaði {{rows}} línur úr CSV-skrá",
"Skip first row" : "Sleppti fyrstu röð",
"You need to assign the label field before you can start the import." : "Þú þarft að setja inn skýringu á gagnasviðið áður en þú getur hafið innflutning.",
+ "First 5 lines of the CSV are shown." : "Fyrstu5 línur CSV-skrárinnar eru sýndar.",
"Assign the proper fields to each column." : "Úthlutaðu réttum gagnasviðum á hvern dálk.",
"Example imported credential" : "Dæmi um innflutt auðkenni",
+ "Missing an importer? Try it with the generic CSV importer." : "Vantar innflutningsskriftu? Prófaðu með almennu CSV-innflutningsskriftunni.",
"Go back to importers." : "Fara aftur í innflutningsskriftur.",
"Revision deleted" : "Útgáfu eytt",
"Revision restored" : "Útgáfa endurheimt",
@@ -136,11 +140,15 @@
"Save keys" : "Vista lykla",
"Generate sharing keys" : "Útbúa deilingarlykla",
"Generating sharing keys" : "Útbý deilingarlykla",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Lykilorðatólið mun skanna lykilorðið þitt, reikna meðaltímann sem tæki að ráða það, og birta lista yfir það sem er neðan við ákveðin mörk",
"Minimum password stength" : "Lágmarksstyrkur lykilorðs",
+ "Start scan" : "Hefja skönnun",
+ "Result" : "Niðurstöður",
+ "A total of {{scan_result}} weak credentials were found." : "Alls fundust {{scan_result}} veik auðkenni.",
"Score" : "Einkunn",
"Action" : "Aðgerð",
"Search users or groups..." : "Leita að notendum eða hópum...",
- "Missing users? Only users that have vaults are shown." : "Vantar notendur? A'eins eru birtir notendur sem hafa lykilorðageymslur.",
+ "Missing users? Only users that have vaults are shown." : "Vantar notendur? Aðeins eru birtir notendur sem hafa lykilorðageymslur.",
"Cyphering" : "Dulkóðun",
"Uploading" : "Sendi inn ",
"User" : "Notandi",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Fara aftur í lykilorðageymslur",
"Please input the password for" : "Settu inn lykilorðið fyrir",
"Set this vault as default." : "Setja þessa lykilorðageymslu sem sjálfgefna.",
+ "Log into this vault automatically." : "Skrá sjálfvirkt inn í þessa lykilorðageymslu.",
"Logout of this vault automatically after: " : "Skrá sjálfvirkt út úr þessari lykilorðageymslu eftir: ",
"Decrypt vault" : "Afkóða lykilorðageymslu",
"Seems you lost the vault password and you're unable to login." : "Það lítur út eins og þú hafir tapað lykilorðinu fyrir lykilorðageymsluna og getir ekki skráð þig inn.",
+ "If you want this vault to be removed you can request that here." : "Ef þú vilt að þessi lykilorðageymsla verði fjarlægð, geturðu beðið um það hér.",
+ "An admin then accepts to the request (or not)" : "Kerfisstjóri mun síðan samþykkja beiðnina (eða ekki)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Eftir að kerfisstjóri eyðir þessari lykilorðageymslu, munu öll auðkenni tapast",
"Reason to request deletion (optional):" : "Ástæða fyrir beiðni um eyðingu (valfrjálst):",
"Request vault destruction" : "Biðja um eyðingu á lykilorðageymslu",
"Yes, request an admin to destroy this vault" : "Já, biðja kerfisstjóra að eyða þessari lykilorðageymslu",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "\"%s deildi »%s« með þér. Smelltu hér til að samþykkja",
"%s has declined your share request for \"%s\"." : "%s hafnaði beiðni þinni um deilingu á \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s samþykkti beiðni þína um deilingu á \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Gat ekki náð í upplýsingar um útgáfu",
"Passman Settings" : "Stillingar Passman",
"Github version:" : "Útgáfa Github:",
+ "A newer version of Passman is available" : "Nýrri útgáfa Passman er tiltæk",
"Password sharing" : "Deiling lykilorða",
"Credential mover" : "Tilfærsla auðkenna",
"Vault destruction requests" : "Beiðnir um eyðingu á lykilorðageymslum",
"Check for new versions" : "Athuga með nýjar útgáfur",
"Enable HTTPS check" : "Virkja prófun á HTTPS",
"Disable context menu" : "Gera samhengisvalmynd óvirka",
+ "Disable JavaScript debugger" : "Gera JavaScript aflúsara óvirkann",
"Allow users on this server to share passwords with a link" : "Leyfa notendum á þessum þjóni að deila lykilorðum með tengli",
"Allow users on this server to share passwords with other users" : "Leyfa notendum á þessum þjóni að deila lykilorðum með öðrum notendum",
"Move credentials from one account to another" : "Flytja auðkenni frá einum aðgangi til annars",
diff --git a/l10n/it.js b/l10n/it.js
index 79c3408a..da584999 100644
--- a/l10n/it.js
+++ b/l10n/it.js
@@ -30,8 +30,10 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Elaborate {{num}} credenziali, avvio dell'importazione",
"Importing" : "Importazione in corso",
"Start import" : "Avvia importazione",
+ "Select CSV file" : "Seleziona file CSV",
"Skip first row" : "Salta la prima riga",
"You need to assign the label field before you can start the import." : "Devi assegnare il campo etichetta prima di avviare l'importazione.",
+ "First 5 lines of the CSV are shown." : "Vengono mostrate le prime 5 linee del CSV.",
"Assign the proper fields to each column." : "Assegna i campi corretti a ogni colonna.",
"Example imported credential" : "Esempio di importazione dati di accesso",
"Go back to importers." : "Torna agli importatori.",
@@ -139,6 +141,8 @@ OC.L10N.register(
"Generate sharing keys" : "Genera chiavi di condivisione",
"Generating sharing keys" : "Generazione chiavi di condivisione",
"Minimum password stength" : "Robustezza minima della password",
+ "Start scan" : "Avvia scansione",
+ "Result" : "Risultato",
"Score" : "Punteggio",
"Action" : "Azione",
"Search users or groups..." : "Cerca utente o gruppo ...",
@@ -273,14 +277,17 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s ha condiviso \"%s\" con te. Fai clic qui per accettare",
"%s has declined your share request for \"%s\"." : "%s ha rifiutato la tua richiesta di condivisione per \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s ha accettato la tua richiesta di condivisione per \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Impossibile ottenere le informazioni di versione",
"Passman Settings" : "Impostazioni di Passman",
"Github version:" : "Versione di Github:",
+ "A newer version of Passman is available" : "Una nuova versione di Passman è disponibile",
"Password sharing" : "Condivisione password",
"Vault destruction requests" : "Richieste di distruzione della cassaforte",
"Check for new versions" : "Controlla la presenza di nuove versioni",
"Enable HTTPS check" : "Abilita controllo HTTPS",
"Disable context menu" : "Disabilita menu contestuale",
+ "Disable JavaScript debugger" : "Disabilita debugger javascript",
"Allow users on this server to share passwords with a link" : "Consenti agli utenti su questo server di condividere le password tramite un collegamento",
"Allow users on this server to share passwords with other users" : "Consenti agli utenti su questo server di condividere le password con altri utenti",
"Move credentials from one account to another" : "Sposta le credenziali da un account a un altro",
diff --git a/l10n/it.json b/l10n/it.json
index f69c51ac..8be593bc 100644
--- a/l10n/it.json
+++ b/l10n/it.json
@@ -28,8 +28,10 @@
"Parsed {{num}} credentials, starting to import" : "Elaborate {{num}} credenziali, avvio dell'importazione",
"Importing" : "Importazione in corso",
"Start import" : "Avvia importazione",
+ "Select CSV file" : "Seleziona file CSV",
"Skip first row" : "Salta la prima riga",
"You need to assign the label field before you can start the import." : "Devi assegnare il campo etichetta prima di avviare l'importazione.",
+ "First 5 lines of the CSV are shown." : "Vengono mostrate le prime 5 linee del CSV.",
"Assign the proper fields to each column." : "Assegna i campi corretti a ogni colonna.",
"Example imported credential" : "Esempio di importazione dati di accesso",
"Go back to importers." : "Torna agli importatori.",
@@ -137,6 +139,8 @@
"Generate sharing keys" : "Genera chiavi di condivisione",
"Generating sharing keys" : "Generazione chiavi di condivisione",
"Minimum password stength" : "Robustezza minima della password",
+ "Start scan" : "Avvia scansione",
+ "Result" : "Risultato",
"Score" : "Punteggio",
"Action" : "Azione",
"Search users or groups..." : "Cerca utente o gruppo ...",
@@ -271,14 +275,17 @@
"%s shared \"%s\" with you. Click here to accept" : "%s ha condiviso \"%s\" con te. Fai clic qui per accettare",
"%s has declined your share request for \"%s\"." : "%s ha rifiutato la tua richiesta di condivisione per \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s ha accettato la tua richiesta di condivisione per \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Impossibile ottenere le informazioni di versione",
"Passman Settings" : "Impostazioni di Passman",
"Github version:" : "Versione di Github:",
+ "A newer version of Passman is available" : "Una nuova versione di Passman è disponibile",
"Password sharing" : "Condivisione password",
"Vault destruction requests" : "Richieste di distruzione della cassaforte",
"Check for new versions" : "Controlla la presenza di nuove versioni",
"Enable HTTPS check" : "Abilita controllo HTTPS",
"Disable context menu" : "Disabilita menu contestuale",
+ "Disable JavaScript debugger" : "Disabilita debugger javascript",
"Allow users on this server to share passwords with a link" : "Consenti agli utenti su questo server di condividere le password tramite un collegamento",
"Allow users on this server to share passwords with other users" : "Consenti agli utenti su questo server di condividere le password con altri utenti",
"Move credentials from one account to another" : "Sposta le credenziali da un account a un altro",
diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js
index f4145a2f..b8e56beb 100644
--- a/l10n/lt_LT.js
+++ b/l10n/lt_LT.js
@@ -2,15 +2,61 @@ OC.L10N.register(
"passman",
{
"Passwords" : "Slaptažodžiai",
+ "Incorrect vault password!" : "Neteisingas saugyklos slaptažodis!",
"Passwords do not match" : "Slaptažodžiai nesutampa",
+ "General" : "Bendras",
+ "Custom Fields" : "Nestandartiniai laukai",
+ "Please fill in a label!" : "Prašome užpildyti kortelę!",
+ "Please fill in a value!" : "Prašome užpildyti vertę!",
+ "Error loading file" : "Klaida įkeliant failą",
+ "An error happened during decryption" : "Dekriptavimo klaida",
+ "Credential created!" : "Prisijungimo duomenys sukurti",
+ "Credential deleted" : "Prisijungimo duomenys ištrinti",
+ "Credential updated" : "Prisijungimo duomenys atnaujinti",
+ "Credential recovered" : "Prisijungimo duomenys atkurti",
+ "Credential destroyed" : "Prisijungimo duomenys sunaikinti",
"Error downloading file, you probably don't have enough permissions" : "Klaida, atsisiunčiant failą. Jūs, tikriausiai, neturite pakankamai leidimų",
"Invalid QR code" : "Neteisingas QR kodas",
+ "Starting export" : "Pradedamas eksportas",
+ "Decrypting credentials" : "Dekriptuojami prisijungimo duomenys",
"Done" : "Atlikta",
+ "File read successfully!" : "Failas sėkmingai perskaitytas!",
+ "Follow the following steps to import your file" : "Norėdami importuoti failą, sekite nurodymus",
+ "Credential has no label, skipping" : "Prisijungimo duomenys neturi žymeklio, praleidžiama",
+ "Adding {{credential}}" : "Pridedama {{prisijungimo duomenys}}",
+ "Added {{credential}}" : "Pridėta {{prisijungimo duomenys}}",
+ "Skipping credential, missing label on line {{line}}" : "Prisijungimo duomenys praleidžiami, nėra žymeklio ant eilutės {{eilutė}}",
+ "Parsed {{num}} credentials, starting to import" : "Prisijungimo duomenys patikrinti, pradedamas importas",
+ "Importing" : "Importuojama",
+ "Start import" : "Pradėti importą",
+ "Select CSV file" : "Pasirinkti CSV failą",
+ "Parsed {{rows}} lines from CSV file" : "Tikrinama {{eilutės}} eilutės iš CSV failo",
+ "Skip first row" : "Praleisti pirmą eilutę",
+ "You need to assign the label field before you can start the import." : "Privalote priskirti pavadinimo laukelį prieš pradėdami importą",
+ "First 5 lines of the CSV are shown." : "Rodomos pirmos 5 CSV failo eilutės",
+ "Assign the proper fields to each column." : "Priskirkite tinkamus laukelius kiekvienai kolonai",
+ "Example imported credential" : "Bandyti importuotus prisijungimo duomenis",
+ "Missing an importer? Try it with the generic CSV importer." : "Trūksta importuotojo? Išbandykit bendrą CSV importuotoją.",
+ "Go back to importers." : "Grįžti prie importuotojų",
+ "Revision deleted" : "Revizija ištrinta",
+ "Revision restored" : "Revizija atkurta",
+ "Save in passman" : "Išsaugoti passman",
"Settings saved" : "Nustatymai įrašyti",
"General settings" : "Bendri nustatymai",
+ "Password Audit" : "Slaptažodžio peržiūra",
"Password settings" : "Slaptažodžio nustatymai",
+ "Import credentials" : "Importuoti prisijungimo duomenis",
+ "Export credentials" : "Eksportuoti prisijungimo duomenis",
+ "Sharing" : "Bendrinimas",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Ar jūs tikrai norite išeiti? Tai pažeis jūsų prisijungimo duomenis",
"Your old password is incorrect!" : "Jūsų senas slaptažodis yra neteisingas!",
"New passwords do not match!" : "Naujieji slaptažodžiai nesutampa!",
+ "Please login with your new vault password" : "Prisijunkite su nauju saugyklos slaptažodžiu",
+ "Share with users and groups" : "Bendrintis su vartotojais ir jų grupėmis",
+ "Share link" : "Pasidalinti nuoroda",
+ "Are you sure you want to leave? This will corrupt this credential" : "Ar tikrai norite išeiti? Tai pakenks jūsų prisijungimo duomenims",
+ "Credential unshared" : "Prisijungimo duomenys nebendrinami",
+ "Credential shared" : "Prisijungimo duomenys bendrinami",
"Saved!" : "Įrašyta!",
"Poor" : "Prastas",
"Weak" : "Silpnas",
@@ -19,16 +65,22 @@ OC.L10N.register(
"Toggle visibility" : "Perjungti matomumą",
"Copy to clipboard" : "Kopijuoti į iškarpinę",
"Copied to clipboard!" : "Nukopijuota į iškarpinę!",
+ "Generate password" : "Generuoti slaptažodį",
"Copy password to clipboard" : "Kopijuoti slaptažodį į iškarpinę",
"Password copied to clipboard!" : "Slaptažodis nukopijuotas į iškarpinę!",
+ "Complete" : "Baigti",
"Username" : "Naudotojo vardas",
+ "Repeat password" : "Pakartoti slaptažodį",
"Add Tag" : "Pridėti žymę",
+ "Field label" : "Laukelio pavadinimas",
+ "Field value" : "Laukelio vertė",
"Choose a file" : "Pasirinkti failą",
"Text" : "Tekstas",
"File" : "Failas",
"Add" : "Pridėti",
"Value" : "Reikšmė",
"Type" : "Tipas",
+ "Actions" : "Veiksmai",
"Empty" : "Tuščias",
"Filename" : "Failo pavadinimas",
"Upload date" : "Įkėlimo data",
@@ -65,6 +117,7 @@ OC.L10N.register(
"Accept" : "Priimti",
"Decline" : "Atmesti",
"Never" : "Niekada",
+ "Request removed" : "Užklausa pašalinta",
"Logout" : "Atsijungti",
"Loading..." : "Įkeliama...",
"You created %1$s" : "Jūs sukūrėte %1$s",
@@ -74,6 +127,7 @@ OC.L10N.register(
"%1$s has been deleted by %2$s" : "%2$s ištrynė %1$s",
"You deleted %1$s" : "Jūs ištrynėte %1$s",
"You permanently deleted %1$s" : "Jūs visiems laikams ištrynėte %1$s",
+ "Remind me later" : "Priminti vėliau",
"Ignore" : "Nepaisyti",
"Github version:" : "Github versija:",
"Reason" : "Priežastis",
diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json
index bb752e03..2fa7cbd8 100644
--- a/l10n/lt_LT.json
+++ b/l10n/lt_LT.json
@@ -1,14 +1,60 @@
{ "translations": {
"Passwords" : "Slaptažodžiai",
+ "Incorrect vault password!" : "Neteisingas saugyklos slaptažodis!",
"Passwords do not match" : "Slaptažodžiai nesutampa",
+ "General" : "Bendras",
+ "Custom Fields" : "Nestandartiniai laukai",
+ "Please fill in a label!" : "Prašome užpildyti kortelę!",
+ "Please fill in a value!" : "Prašome užpildyti vertę!",
+ "Error loading file" : "Klaida įkeliant failą",
+ "An error happened during decryption" : "Dekriptavimo klaida",
+ "Credential created!" : "Prisijungimo duomenys sukurti",
+ "Credential deleted" : "Prisijungimo duomenys ištrinti",
+ "Credential updated" : "Prisijungimo duomenys atnaujinti",
+ "Credential recovered" : "Prisijungimo duomenys atkurti",
+ "Credential destroyed" : "Prisijungimo duomenys sunaikinti",
"Error downloading file, you probably don't have enough permissions" : "Klaida, atsisiunčiant failą. Jūs, tikriausiai, neturite pakankamai leidimų",
"Invalid QR code" : "Neteisingas QR kodas",
+ "Starting export" : "Pradedamas eksportas",
+ "Decrypting credentials" : "Dekriptuojami prisijungimo duomenys",
"Done" : "Atlikta",
+ "File read successfully!" : "Failas sėkmingai perskaitytas!",
+ "Follow the following steps to import your file" : "Norėdami importuoti failą, sekite nurodymus",
+ "Credential has no label, skipping" : "Prisijungimo duomenys neturi žymeklio, praleidžiama",
+ "Adding {{credential}}" : "Pridedama {{prisijungimo duomenys}}",
+ "Added {{credential}}" : "Pridėta {{prisijungimo duomenys}}",
+ "Skipping credential, missing label on line {{line}}" : "Prisijungimo duomenys praleidžiami, nėra žymeklio ant eilutės {{eilutė}}",
+ "Parsed {{num}} credentials, starting to import" : "Prisijungimo duomenys patikrinti, pradedamas importas",
+ "Importing" : "Importuojama",
+ "Start import" : "Pradėti importą",
+ "Select CSV file" : "Pasirinkti CSV failą",
+ "Parsed {{rows}} lines from CSV file" : "Tikrinama {{eilutės}} eilutės iš CSV failo",
+ "Skip first row" : "Praleisti pirmą eilutę",
+ "You need to assign the label field before you can start the import." : "Privalote priskirti pavadinimo laukelį prieš pradėdami importą",
+ "First 5 lines of the CSV are shown." : "Rodomos pirmos 5 CSV failo eilutės",
+ "Assign the proper fields to each column." : "Priskirkite tinkamus laukelius kiekvienai kolonai",
+ "Example imported credential" : "Bandyti importuotus prisijungimo duomenis",
+ "Missing an importer? Try it with the generic CSV importer." : "Trūksta importuotojo? Išbandykit bendrą CSV importuotoją.",
+ "Go back to importers." : "Grįžti prie importuotojų",
+ "Revision deleted" : "Revizija ištrinta",
+ "Revision restored" : "Revizija atkurta",
+ "Save in passman" : "Išsaugoti passman",
"Settings saved" : "Nustatymai įrašyti",
"General settings" : "Bendri nustatymai",
+ "Password Audit" : "Slaptažodžio peržiūra",
"Password settings" : "Slaptažodžio nustatymai",
+ "Import credentials" : "Importuoti prisijungimo duomenis",
+ "Export credentials" : "Eksportuoti prisijungimo duomenis",
+ "Sharing" : "Bendrinimas",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Ar jūs tikrai norite išeiti? Tai pažeis jūsų prisijungimo duomenis",
"Your old password is incorrect!" : "Jūsų senas slaptažodis yra neteisingas!",
"New passwords do not match!" : "Naujieji slaptažodžiai nesutampa!",
+ "Please login with your new vault password" : "Prisijunkite su nauju saugyklos slaptažodžiu",
+ "Share with users and groups" : "Bendrintis su vartotojais ir jų grupėmis",
+ "Share link" : "Pasidalinti nuoroda",
+ "Are you sure you want to leave? This will corrupt this credential" : "Ar tikrai norite išeiti? Tai pakenks jūsų prisijungimo duomenims",
+ "Credential unshared" : "Prisijungimo duomenys nebendrinami",
+ "Credential shared" : "Prisijungimo duomenys bendrinami",
"Saved!" : "Įrašyta!",
"Poor" : "Prastas",
"Weak" : "Silpnas",
@@ -17,16 +63,22 @@
"Toggle visibility" : "Perjungti matomumą",
"Copy to clipboard" : "Kopijuoti į iškarpinę",
"Copied to clipboard!" : "Nukopijuota į iškarpinę!",
+ "Generate password" : "Generuoti slaptažodį",
"Copy password to clipboard" : "Kopijuoti slaptažodį į iškarpinę",
"Password copied to clipboard!" : "Slaptažodis nukopijuotas į iškarpinę!",
+ "Complete" : "Baigti",
"Username" : "Naudotojo vardas",
+ "Repeat password" : "Pakartoti slaptažodį",
"Add Tag" : "Pridėti žymę",
+ "Field label" : "Laukelio pavadinimas",
+ "Field value" : "Laukelio vertė",
"Choose a file" : "Pasirinkti failą",
"Text" : "Tekstas",
"File" : "Failas",
"Add" : "Pridėti",
"Value" : "Reikšmė",
"Type" : "Tipas",
+ "Actions" : "Veiksmai",
"Empty" : "Tuščias",
"Filename" : "Failo pavadinimas",
"Upload date" : "Įkėlimo data",
@@ -63,6 +115,7 @@
"Accept" : "Priimti",
"Decline" : "Atmesti",
"Never" : "Niekada",
+ "Request removed" : "Užklausa pašalinta",
"Logout" : "Atsijungti",
"Loading..." : "Įkeliama...",
"You created %1$s" : "Jūs sukūrėte %1$s",
@@ -72,6 +125,7 @@
"%1$s has been deleted by %2$s" : "%2$s ištrynė %1$s",
"You deleted %1$s" : "Jūs ištrynėte %1$s",
"You permanently deleted %1$s" : "Jūs visiems laikams ištrynėte %1$s",
+ "Remind me later" : "Priminti vėliau",
"Ignore" : "Nepaisyti",
"Github version:" : "Github versija:",
"Reason" : "Priežastis",
diff --git a/l10n/nb.js b/l10n/nb.js
index 56c54b37..9489c188 100644
--- a/l10n/nb.js
+++ b/l10n/nb.js
@@ -4,11 +4,11 @@ OC.L10N.register(
"Passwords" : "Passord",
"Generating sharing keys ( %step / 2)" : "Oppretter delingsnøkler ( %step / 2)",
"Incorrect vault password!" : "Feil hvelv-passord!",
- "Passwords do not match" : "Passordene passer ikke",
+ "Passwords do not match" : "Passordene samsvarer ikke",
"General" : "Generelt",
- "Custom Fields" : "Egenvalgte felter",
+ "Custom Fields" : "Brukervalgte felter",
"Please fill in a label!" : "Fyll inn en merkelapp!",
- "Please fill in a value!" : "Vennligst oppgi en verdi!",
+ "Please fill in a value!" : "Oppgi en verdi!",
"Error loading file" : "Feil ved lasting av fil",
"An error happened during decryption" : "En feil oppstod under dekryptering",
"Credential created!" : "Legitimasjonen ble laget",
@@ -17,7 +17,7 @@ OC.L10N.register(
"Credential recovered" : "Legitimasjonen ble gjenopprettet",
"Credential destroyed" : "Legitimasjonen ble destruert",
"Error downloading file, you probably don't have enough permissions" : "Kunne ikke laste ned fil, du har sannsynligvis ikke nok rettigheter",
- "Invalid QR code" : "Ugyldig QR kode",
+ "Invalid QR code" : "Ugyldig QR-kode",
"Starting export" : "Starter eksport",
"Decrypting credentials" : "Dekrypterer legitimasjon",
"Done" : "Ferdig",
@@ -30,7 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Tolket {{num}} påloggingsdetaljer, begynner importering",
"Importing" : "Importerer",
"Start import" : "Start importering",
+ "Select CSV file" : "Velg CSV-fil",
+ "Parsed {{rows}} lines from CSV file" : "Tolket {{rows}} linjer fra CSV-fil",
"Skip first row" : "Hopp over første rad",
+ "You need to assign the label field before you can start the import." : "Du må tildele et etikettfelt før du kan starte importen.",
+ "First 5 lines of the CSV are shown." : "De første fem linjene av CSV-en vises.",
+ "Assign the proper fields to each column." : "Tildel de riktige feltene til hver kolonne.",
+ "Example imported credential" : "Eksempel på importert påloggingsdetalj",
+ "Missing an importer? Try it with the generic CSV importer." : "Manglende importør? Prøv med en generisk CSV-importør.",
"Go back to importers." : "Gå tilbake til importører.",
"Revision deleted" : "Revisjonen slettet",
"Revision restored" : "Revisjonen er gjenopprettet",
@@ -38,17 +45,19 @@ OC.L10N.register(
"Settings saved" : "Innstillinger lagret",
"General settings" : "Generelle innstillinger",
"Password Audit" : "Passordgjennomsyn",
- "Password settings" : "Passord innstillinger",
+ "Password settings" : "Passordinnstillinger",
"Import credentials" : "Importer legitimasjon",
"Export credentials" : "Eksporter påloggingsdetaljer",
"Sharing" : "Deling",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Er du sikker på at du ønsker å forlate? Dette vil skade alle dine påloggingsdetaljer",
"Your old password is incorrect!" : "Ditt gamle passord er feil!",
"New passwords do not match!" : "De nye passordene er ikke like!",
"Please login with your new vault password" : "Logg inn med ditt nye hvelv-passord",
"Share with users and groups" : "Del med brukere og grupper",
- "Share link" : "Deling lenke",
+ "Share link" : "Delingslenke",
"Are you sure you want to leave? This will corrupt this credential" : "Er du sikker på at du ønsker å forlate? Dette vil skade disse påloggingsdetaljene",
"Credential unshared" : "Deling av legitimasjon trukket tilbake",
+ "Credential shared" : "Påloggingsdetalj delt",
"Saved!" : "Lagret!",
"Poor" : "Dårlig",
"Weak" : "Svak",
@@ -98,7 +107,7 @@ OC.L10N.register(
"Use special characters" : "Bruk spesialtegn",
"Avoid ambiguous characters" : "Unngå tvetydige tegn",
"Require every character type" : "Krever hver tegntype",
- "Export type" : "Eksport type",
+ "Export type" : "Eksporttype",
"Export" : "Eksporter",
"Enter vault password to confirm export." : "Skriv inn hvelv-passord for å bekrefte eksportering.",
"Rename vault" : "Gi hvelv nytt navn",
@@ -114,6 +123,9 @@ OC.L10N.register(
"About Passman" : "Om Passman",
"Version" : "Versjon",
"Donate to support development" : "Doner for å støtte utviklingen",
+ "Bookmarklet" : "Bookmarklet",
+ "Save your passwords with 1 click!" : "Lagre passordene dine med ett klikk!",
+ "Drag below button to your bookmark toolbar." : "Dra knappen nedenfor til din bokmerkeverktøyslinje.",
"Delete vault" : "Slett hvelv",
"Vault password" : "Hvelv-passord",
"This process is irreversible" : "Denne prosessen er irreversibel ",
@@ -130,13 +142,20 @@ OC.L10N.register(
"Save keys" : "Lagre nøkler",
"Generate sharing keys" : "Opprett delingsnøkler",
"Generating sharing keys" : "Oppretter delingsnøkler",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Passordverktøyet vil skanne passordet ditt, kalkulere gjennomsnittlig tid for knekking og liste dem som er under terskelen",
"Minimum password stength" : "Minimums passordstyrke",
+ "Start scan" : "Start skanning",
+ "Result" : "Resultat",
+ "A total of {{scan_result}} weak credentials were found." : "Fant {{scan_result}} svake identitetsdetaljer.",
"Score" : "Poengsum",
"Action" : "Handling",
"Search users or groups..." : "Søk etter brukere eller grupper…",
"Missing users? Only users that have vaults are shown." : "Manglende brukere? Bare brukere som har hvelv blir vist.",
+ "Cyphering" : "Chiffrerer",
"Uploading" : "Laster opp",
"User" : "Bruker",
+ "Crypto time" : "Krypteringstid",
+ "Total time spent cyphering" : "Tid brukt på chiffrering",
"Read" : "Les",
"Write" : "Skriv",
"Files" : "Filer",
@@ -145,27 +164,35 @@ OC.L10N.register(
"Enable link sharing" : "Skru på deling av lenker",
"Share until date" : "Del til dato",
"Expire after views" : "Utløper etter antall visninger",
- "Click share first" : "Klikk \"del\" først",
+ "Click share first" : "Klikk \"Del\" først",
"Show files" : "Vis filer",
"Details" : "Detaljer",
"Hide details" : "Skjul detaljer",
"Password score" : "Passord-poengsum",
"Cracking times" : "Løsningstider",
"100 / hour" : "100 / time",
+ "Throttled online attack" : "Begrenset nettbasert angrep",
"10 / second" : "10 / sekund",
+ "Unthrottled online attack" : "Ubegrenset nettbasert angrep",
"10k / second" : "10k / sekund",
"Offline attack, slow hash, many cores" : "Frakoblet angrep, treg sjekksummering, mange kjerner",
"10B / second" : "10B / sekund",
"Offline attack, fast hash, many cores" : "Frakoblet angrep, rask sjekksummering, mange kjerner",
+ "Match sequence" : "Samsvar sekvens",
+ "See match sequence" : "Se samsvarende sekvens",
"Pattern" : "Mønster",
+ "Matched word" : "Samsvart ord",
"Dictionary name" : "Ordboknavn",
"Rank" : "Rangering",
"Reversed" : "Tilbakestilt",
"Guesses" : "Gjettinger",
"Base guesses" : "Basis gjettinger",
- "Uppercase variations" : "Storbokstav variasjoner",
+ "Uppercase variations" : "Variasjoner med store bokstaver",
"l33t-variations" : "l33t-varianter",
+ "Showing revisions of" : "Viser utgaver av",
+ "Revision of" : "Revisjon av",
"by" : "av",
+ "No revisions found." : "Ingen revisjoner funner.",
"Label" : "Etikett",
"Restore revision" : "Gjenopprett revisjonen",
"Delete revision" : "Slett revisjonen",
@@ -176,8 +203,10 @@ OC.L10N.register(
"Settings" : "Innstillinger",
"Share credential {{credential}}" : "Del legitimasjon {{credential}}",
"Unshare" : "Avslutt deling",
- "Showing deleted since" : "Vis slettede siden",
- "All time" : "Alle tider",
+ "Showing deleted since" : "Viser slettede siden",
+ "All time" : "Begynnelsen",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Viser {{number_filtered}} av {{credential_number}} identitetsdetaljer",
+ "Search credential..." : "Søk etter identitetsdetalj…",
"Account" : "Konto",
"Password" : "Passord",
"OTP" : "Éngangspassord (OTP)",
@@ -187,12 +216,13 @@ OC.L10N.register(
"Expire time" : "Utløpsdato",
"Changed" : "Endret",
"Created" : "Opprettet",
- "Edit" : "Endre",
+ "Edit" : "Rediger",
"Delete" : "Slett",
"Share" : "Deling",
"Recover" : "Gjenopprett",
"Destroy" : "Ødelegge",
- "Use regex" : "Bruk regex",
+ "Use regex" : "Bruk regulære uttrykk",
+ "You have incoming share requests." : "Du har innkommende delingsforespørsler.",
"If you want to put the credential in a other vault," : "Hvis du ønsker å putte identitetsdeltajene i et annet hvelv,",
"logout of this vault and login to the vault you want the shared credential in." : "logg ut av dette hvelvet og logg inn i det hvelvet du ønsker å legge identitetsdetaljene i.",
"Permissions" : "Rettigheter",
@@ -213,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Gå tilbake til hvelv",
"Please input the password for" : "Skriv inn passordet for",
"Set this vault as default." : "Set dette hvelvet som forvalg.",
+ "Log into this vault automatically." : "Logg inn i dette hvelvet automatisk.",
"Logout of this vault automatically after: " : "Logg ut av dette hvelvet etter:",
"Decrypt vault" : "Dekrypter hvelv",
"Seems you lost the vault password and you're unable to login." : "Det later til at du har mistet hvelv-passordet og ikke kan logge inn.",
+ "If you want this vault to be removed you can request that here." : "Hvis du ønsker dette hvelvet fjernet kan du forespørre det her.",
+ "An admin then accepts to the request (or not)" : "En administrator godtar eller avslår forespørselen",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Etter at en administrator ødelegger dette hvelvet, vil alle identitetsdetaljer i det gå tapt",
"Reason to request deletion (optional):" : "Grunn til å forespørre sletting (valgfritt):",
"Request vault destruction" : "Forespør ødeleggelse av hvelvet",
"Yes, request an admin to destroy this vault" : "Ja, forespør en administrator om å ødelegge dette hvelvet",
@@ -223,14 +257,16 @@ OC.L10N.register(
"Vault destruction requested" : "Hvelv-ødeleggelse forespurt",
"Request removed" : "Forespørsel fjernet",
"Destruction request pending" : "Ødeleggelsesforespørsel på vent",
+ "Warning! Adding credentials over http can be insecure!" : "Advarsel! Å legge til identitetsdetaljer over HTTP er usikkert!",
"Logged in to {{vault_name}}" : "Logget inn på {{vault_name}}",
- "Change vault" : "Endre hvelv",
+ "Change vault" : "Bytt hvelv",
"Deleted credentials" : "Slett påloggingsdetaljer",
"Logout" : "Logg ut",
"Donate" : "Doner",
"Someone has shared a credential with you." : "Noen har delt en påloggingsinformasjon med deg.",
"Click here to request it" : "Klikk her for å forespørre det",
- "Loading..." : "Laster...",
+ "Loading..." : "Laster…",
+ "Awwhh.... credential not found. Maybe it expired" : "Huffda… innloggingsdetaljen ble ikke funnet. Kanskje den har utløpt",
"Error while saving field" : "Feil under lagring av felt",
"A Passman item has been created, modified or deleted" : "Et Passman element er opprettet, endret eller slettet",
"A Passman item has expired" : "Et Passman element er utløpt",
@@ -260,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s delte \"%s\" med deg. Klikk her for å akseptere",
"%s has declined your share request for \"%s\"." : "%s har avvist din forespørsel om å dele \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s har akseptert din forespørsel om å dele \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Kunne ikke hente versjonsinfo",
"Passman Settings" : "Passman-innstillinger",
- "Github version:" : "Github versjon:",
+ "Github version:" : "GitHub-versjon:",
+ "A newer version of Passman is available" : "En nyere versjon av Passman er tilgjengelig",
"Password sharing" : "Passorddeling",
"Credential mover" : "Legitimasjonsflytter",
"Vault destruction requests" : "Hvelv-ødeleggelsesforespørsler",
"Check for new versions" : "Se etter nye versjoner",
- "Enable HTTPS check" : "Aktiver HTTPS kontroll",
+ "Enable HTTPS check" : "Aktiver HTTPS-kontroll",
"Disable context menu" : "Skru av bindeleddsmeny",
+ "Disable JavaScript debugger" : "Skru av JavaScript-feilsøkingsprogram",
"Allow users on this server to share passwords with a link" : "Tillat brukere på denne tjeneren å dele passord med en lenke",
"Allow users on this server to share passwords with other users" : "Tillat brukere på denne tjeneren å dele passord med andre brukere",
"Move credentials from one account to another" : "Flytt påloggingsinformasjon fra en konto til en annen",
diff --git a/l10n/nb.json b/l10n/nb.json
index d0dbd26e..fe5f1519 100644
--- a/l10n/nb.json
+++ b/l10n/nb.json
@@ -2,11 +2,11 @@
"Passwords" : "Passord",
"Generating sharing keys ( %step / 2)" : "Oppretter delingsnøkler ( %step / 2)",
"Incorrect vault password!" : "Feil hvelv-passord!",
- "Passwords do not match" : "Passordene passer ikke",
+ "Passwords do not match" : "Passordene samsvarer ikke",
"General" : "Generelt",
- "Custom Fields" : "Egenvalgte felter",
+ "Custom Fields" : "Brukervalgte felter",
"Please fill in a label!" : "Fyll inn en merkelapp!",
- "Please fill in a value!" : "Vennligst oppgi en verdi!",
+ "Please fill in a value!" : "Oppgi en verdi!",
"Error loading file" : "Feil ved lasting av fil",
"An error happened during decryption" : "En feil oppstod under dekryptering",
"Credential created!" : "Legitimasjonen ble laget",
@@ -15,7 +15,7 @@
"Credential recovered" : "Legitimasjonen ble gjenopprettet",
"Credential destroyed" : "Legitimasjonen ble destruert",
"Error downloading file, you probably don't have enough permissions" : "Kunne ikke laste ned fil, du har sannsynligvis ikke nok rettigheter",
- "Invalid QR code" : "Ugyldig QR kode",
+ "Invalid QR code" : "Ugyldig QR-kode",
"Starting export" : "Starter eksport",
"Decrypting credentials" : "Dekrypterer legitimasjon",
"Done" : "Ferdig",
@@ -28,7 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Tolket {{num}} påloggingsdetaljer, begynner importering",
"Importing" : "Importerer",
"Start import" : "Start importering",
+ "Select CSV file" : "Velg CSV-fil",
+ "Parsed {{rows}} lines from CSV file" : "Tolket {{rows}} linjer fra CSV-fil",
"Skip first row" : "Hopp over første rad",
+ "You need to assign the label field before you can start the import." : "Du må tildele et etikettfelt før du kan starte importen.",
+ "First 5 lines of the CSV are shown." : "De første fem linjene av CSV-en vises.",
+ "Assign the proper fields to each column." : "Tildel de riktige feltene til hver kolonne.",
+ "Example imported credential" : "Eksempel på importert påloggingsdetalj",
+ "Missing an importer? Try it with the generic CSV importer." : "Manglende importør? Prøv med en generisk CSV-importør.",
"Go back to importers." : "Gå tilbake til importører.",
"Revision deleted" : "Revisjonen slettet",
"Revision restored" : "Revisjonen er gjenopprettet",
@@ -36,17 +43,19 @@
"Settings saved" : "Innstillinger lagret",
"General settings" : "Generelle innstillinger",
"Password Audit" : "Passordgjennomsyn",
- "Password settings" : "Passord innstillinger",
+ "Password settings" : "Passordinnstillinger",
"Import credentials" : "Importer legitimasjon",
"Export credentials" : "Eksporter påloggingsdetaljer",
"Sharing" : "Deling",
+ "Are you sure you want to leave? This WILL corrupt all your credentials" : "Er du sikker på at du ønsker å forlate? Dette vil skade alle dine påloggingsdetaljer",
"Your old password is incorrect!" : "Ditt gamle passord er feil!",
"New passwords do not match!" : "De nye passordene er ikke like!",
"Please login with your new vault password" : "Logg inn med ditt nye hvelv-passord",
"Share with users and groups" : "Del med brukere og grupper",
- "Share link" : "Deling lenke",
+ "Share link" : "Delingslenke",
"Are you sure you want to leave? This will corrupt this credential" : "Er du sikker på at du ønsker å forlate? Dette vil skade disse påloggingsdetaljene",
"Credential unshared" : "Deling av legitimasjon trukket tilbake",
+ "Credential shared" : "Påloggingsdetalj delt",
"Saved!" : "Lagret!",
"Poor" : "Dårlig",
"Weak" : "Svak",
@@ -96,7 +105,7 @@
"Use special characters" : "Bruk spesialtegn",
"Avoid ambiguous characters" : "Unngå tvetydige tegn",
"Require every character type" : "Krever hver tegntype",
- "Export type" : "Eksport type",
+ "Export type" : "Eksporttype",
"Export" : "Eksporter",
"Enter vault password to confirm export." : "Skriv inn hvelv-passord for å bekrefte eksportering.",
"Rename vault" : "Gi hvelv nytt navn",
@@ -112,6 +121,9 @@
"About Passman" : "Om Passman",
"Version" : "Versjon",
"Donate to support development" : "Doner for å støtte utviklingen",
+ "Bookmarklet" : "Bookmarklet",
+ "Save your passwords with 1 click!" : "Lagre passordene dine med ett klikk!",
+ "Drag below button to your bookmark toolbar." : "Dra knappen nedenfor til din bokmerkeverktøyslinje.",
"Delete vault" : "Slett hvelv",
"Vault password" : "Hvelv-passord",
"This process is irreversible" : "Denne prosessen er irreversibel ",
@@ -128,13 +140,20 @@
"Save keys" : "Lagre nøkler",
"Generate sharing keys" : "Opprett delingsnøkler",
"Generating sharing keys" : "Oppretter delingsnøkler",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Passordverktøyet vil skanne passordet ditt, kalkulere gjennomsnittlig tid for knekking og liste dem som er under terskelen",
"Minimum password stength" : "Minimums passordstyrke",
+ "Start scan" : "Start skanning",
+ "Result" : "Resultat",
+ "A total of {{scan_result}} weak credentials were found." : "Fant {{scan_result}} svake identitetsdetaljer.",
"Score" : "Poengsum",
"Action" : "Handling",
"Search users or groups..." : "Søk etter brukere eller grupper…",
"Missing users? Only users that have vaults are shown." : "Manglende brukere? Bare brukere som har hvelv blir vist.",
+ "Cyphering" : "Chiffrerer",
"Uploading" : "Laster opp",
"User" : "Bruker",
+ "Crypto time" : "Krypteringstid",
+ "Total time spent cyphering" : "Tid brukt på chiffrering",
"Read" : "Les",
"Write" : "Skriv",
"Files" : "Filer",
@@ -143,27 +162,35 @@
"Enable link sharing" : "Skru på deling av lenker",
"Share until date" : "Del til dato",
"Expire after views" : "Utløper etter antall visninger",
- "Click share first" : "Klikk \"del\" først",
+ "Click share first" : "Klikk \"Del\" først",
"Show files" : "Vis filer",
"Details" : "Detaljer",
"Hide details" : "Skjul detaljer",
"Password score" : "Passord-poengsum",
"Cracking times" : "Løsningstider",
"100 / hour" : "100 / time",
+ "Throttled online attack" : "Begrenset nettbasert angrep",
"10 / second" : "10 / sekund",
+ "Unthrottled online attack" : "Ubegrenset nettbasert angrep",
"10k / second" : "10k / sekund",
"Offline attack, slow hash, many cores" : "Frakoblet angrep, treg sjekksummering, mange kjerner",
"10B / second" : "10B / sekund",
"Offline attack, fast hash, many cores" : "Frakoblet angrep, rask sjekksummering, mange kjerner",
+ "Match sequence" : "Samsvar sekvens",
+ "See match sequence" : "Se samsvarende sekvens",
"Pattern" : "Mønster",
+ "Matched word" : "Samsvart ord",
"Dictionary name" : "Ordboknavn",
"Rank" : "Rangering",
"Reversed" : "Tilbakestilt",
"Guesses" : "Gjettinger",
"Base guesses" : "Basis gjettinger",
- "Uppercase variations" : "Storbokstav variasjoner",
+ "Uppercase variations" : "Variasjoner med store bokstaver",
"l33t-variations" : "l33t-varianter",
+ "Showing revisions of" : "Viser utgaver av",
+ "Revision of" : "Revisjon av",
"by" : "av",
+ "No revisions found." : "Ingen revisjoner funner.",
"Label" : "Etikett",
"Restore revision" : "Gjenopprett revisjonen",
"Delete revision" : "Slett revisjonen",
@@ -174,8 +201,10 @@
"Settings" : "Innstillinger",
"Share credential {{credential}}" : "Del legitimasjon {{credential}}",
"Unshare" : "Avslutt deling",
- "Showing deleted since" : "Vis slettede siden",
- "All time" : "Alle tider",
+ "Showing deleted since" : "Viser slettede siden",
+ "All time" : "Begynnelsen",
+ "Showing {{number_filtered}} of {{credential_number}} credentials" : "Viser {{number_filtered}} av {{credential_number}} identitetsdetaljer",
+ "Search credential..." : "Søk etter identitetsdetalj…",
"Account" : "Konto",
"Password" : "Passord",
"OTP" : "Éngangspassord (OTP)",
@@ -185,12 +214,13 @@
"Expire time" : "Utløpsdato",
"Changed" : "Endret",
"Created" : "Opprettet",
- "Edit" : "Endre",
+ "Edit" : "Rediger",
"Delete" : "Slett",
"Share" : "Deling",
"Recover" : "Gjenopprett",
"Destroy" : "Ødelegge",
- "Use regex" : "Bruk regex",
+ "Use regex" : "Bruk regulære uttrykk",
+ "You have incoming share requests." : "Du har innkommende delingsforespørsler.",
"If you want to put the credential in a other vault," : "Hvis du ønsker å putte identitetsdeltajene i et annet hvelv,",
"logout of this vault and login to the vault you want the shared credential in." : "logg ut av dette hvelvet og logg inn i det hvelvet du ønsker å legge identitetsdetaljene i.",
"Permissions" : "Rettigheter",
@@ -211,9 +241,13 @@
"Go back to vaults" : "Gå tilbake til hvelv",
"Please input the password for" : "Skriv inn passordet for",
"Set this vault as default." : "Set dette hvelvet som forvalg.",
+ "Log into this vault automatically." : "Logg inn i dette hvelvet automatisk.",
"Logout of this vault automatically after: " : "Logg ut av dette hvelvet etter:",
"Decrypt vault" : "Dekrypter hvelv",
"Seems you lost the vault password and you're unable to login." : "Det later til at du har mistet hvelv-passordet og ikke kan logge inn.",
+ "If you want this vault to be removed you can request that here." : "Hvis du ønsker dette hvelvet fjernet kan du forespørre det her.",
+ "An admin then accepts to the request (or not)" : "En administrator godtar eller avslår forespørselen",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Etter at en administrator ødelegger dette hvelvet, vil alle identitetsdetaljer i det gå tapt",
"Reason to request deletion (optional):" : "Grunn til å forespørre sletting (valgfritt):",
"Request vault destruction" : "Forespør ødeleggelse av hvelvet",
"Yes, request an admin to destroy this vault" : "Ja, forespør en administrator om å ødelegge dette hvelvet",
@@ -221,14 +255,16 @@
"Vault destruction requested" : "Hvelv-ødeleggelse forespurt",
"Request removed" : "Forespørsel fjernet",
"Destruction request pending" : "Ødeleggelsesforespørsel på vent",
+ "Warning! Adding credentials over http can be insecure!" : "Advarsel! Å legge til identitetsdetaljer over HTTP er usikkert!",
"Logged in to {{vault_name}}" : "Logget inn på {{vault_name}}",
- "Change vault" : "Endre hvelv",
+ "Change vault" : "Bytt hvelv",
"Deleted credentials" : "Slett påloggingsdetaljer",
"Logout" : "Logg ut",
"Donate" : "Doner",
"Someone has shared a credential with you." : "Noen har delt en påloggingsinformasjon med deg.",
"Click here to request it" : "Klikk her for å forespørre det",
- "Loading..." : "Laster...",
+ "Loading..." : "Laster…",
+ "Awwhh.... credential not found. Maybe it expired" : "Huffda… innloggingsdetaljen ble ikke funnet. Kanskje den har utløpt",
"Error while saving field" : "Feil under lagring av felt",
"A Passman item has been created, modified or deleted" : "Et Passman element er opprettet, endret eller slettet",
"A Passman item has expired" : "Et Passman element er utløpt",
@@ -258,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s delte \"%s\" med deg. Klikk her for å akseptere",
"%s has declined your share request for \"%s\"." : "%s har avvist din forespørsel om å dele \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s har akseptert din forespørsel om å dele \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Kunne ikke hente versjonsinfo",
"Passman Settings" : "Passman-innstillinger",
- "Github version:" : "Github versjon:",
+ "Github version:" : "GitHub-versjon:",
+ "A newer version of Passman is available" : "En nyere versjon av Passman er tilgjengelig",
"Password sharing" : "Passorddeling",
"Credential mover" : "Legitimasjonsflytter",
"Vault destruction requests" : "Hvelv-ødeleggelsesforespørsler",
"Check for new versions" : "Se etter nye versjoner",
- "Enable HTTPS check" : "Aktiver HTTPS kontroll",
+ "Enable HTTPS check" : "Aktiver HTTPS-kontroll",
"Disable context menu" : "Skru av bindeleddsmeny",
+ "Disable JavaScript debugger" : "Skru av JavaScript-feilsøkingsprogram",
"Allow users on this server to share passwords with a link" : "Tillat brukere på denne tjeneren å dele passord med en lenke",
"Allow users on this server to share passwords with other users" : "Tillat brukere på denne tjeneren å dele passord med andre brukere",
"Move credentials from one account to another" : "Flytt påloggingsinformasjon fra en konto til en annen",
diff --git a/l10n/nl.js b/l10n/nl.js
index 0060263b..2d46a326 100644
--- a/l10n/nl.js
+++ b/l10n/nl.js
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Geïnterpreteerd {{num}} inloggegevens, beginnen met import",
"Importing" : "Importeren",
"Start import" : "Start import",
+ "Select CSV file" : "Selecteer CSV-bestand",
+ "Parsed {{rows}} lines from CSV file" : "Ingelezen {{rows}} regels van CSV-bestand",
"Skip first row" : "Eerste regel overslaan",
"You need to assign the label field before you can start the import." : "Je moet het labelveld opgeven, voordat je de import kunt starten.",
+ "First 5 lines of the CSV are shown." : "De eerste 5 regels van de CSV worden getoond.",
"Assign the proper fields to each column." : "Geef de juiste veldnamen op voor elke kolom.",
"Example imported credential" : "Voorbeeld geïmporteerde inloggegevens",
+ "Missing an importer? Try it with the generic CSV importer." : "Mis je een importer? Probeer het met een generieke CSV-importer.",
"Go back to importers." : "Terug naar importeerders.",
"Revision deleted" : "Revisie verwijderd",
"Revision restored" : "Revisie hersteld",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Opslaan sleutels",
"Generate sharing keys" : "Genereren sleutels om te delen",
"Generating sharing keys" : "Genereren sleutels om te delen",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Het wachtwoord hulpje scant je wachtwoord, berekent de gemiddelde kraaktijd en toont de zwakke wachtwoorden",
"Minimum password stength" : "Minimale wachtwoordsterkte",
+ "Start scan" : "Start scan",
+ "Result" : "Resultaat",
+ "A total of {{scan_result}} weak credentials were found." : "Totaal {{scan_result}} zwakke wachtwoorden gevonden.",
"Score" : "Score",
"Action" : "Actie",
"Search users or groups..." : "Zoeken gebruikers of groepen ...",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Terug naar kluizen",
"Please input the password for" : "Voer het wachtwoord in voor",
"Set this vault as default." : "Stel deze kluis als standaard in.",
+ "Log into this vault automatically." : "Automatisch in deze kluis uitloggen.",
"Logout of this vault automatically after: " : "Automatisch van deze kluis uitloggen na:",
"Decrypt vault" : "Ontsleutel kluis",
"Seems you lost the vault password and you're unable to login." : "Het lijkt erop dat je het kluiswachtwoord kwijt bent en de niet meer in kunt loggen.",
+ "If you want this vault to be removed you can request that here." : "Als je deze kluis verwijderd wilt hebben, kun je de vernietiging van de kluis hier aanvragen.",
+ "An admin then accepts to the request (or not)" : "Een beheerder accepteert dan deze aanvraag (of niet)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Nadat een beheerde deze kluis heeft vernietigd, zijn de inloggegevens verwijderd",
"Reason to request deletion (optional):" : "Reden voor aanvraag vernietiging (optioneel):",
"Request vault destruction" : "Aanvragen kluisvernietiging",
"Yes, request an admin to destroy this vault" : "Ja, vraag een beheerder om deze kluis te vernietigen",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s deelde \"%s\" met je. Klik hier om te accepteren",
"%s has declined your share request for \"%s\"." : "%s weigerde je aanvraag om \"%s\" te delen.",
"%s has accepted your share request for \"%s\"." : "%s accepteerde je aanvraag om \"%s\" te delen.",
+ "Passman" : "Passman",
"Unable to get version info" : "Kon de versieinformatie niet ophalen",
"Passman Settings" : "Passman instellingen",
"Github version:" : "Github versie:",
+ "A newer version of Passman is available" : "Er is een meer recente versie van passman beschikbaar",
"Password sharing" : "Wachtwoord delen",
"Credential mover" : "Inloggegevens verplaatser",
"Vault destruction requests" : "Kluisvernietigingsaanvragen",
"Check for new versions" : "Controleren op nieuwe versies",
"Enable HTTPS check" : "Inschakelen HTTPS controle",
"Disable context menu" : "Deactiveren contextmenu",
+ "Disable JavaScript debugger" : "Uitschakelen JavaScript debugger",
"Allow users on this server to share passwords with a link" : "Toestaan dat gebruikers op deze server wachtwoorden delen via een link",
"Allow users on this server to share passwords with other users" : "Toestaan dat gebruikers op deze server wachtwoorden met andere gebruikers delen",
"Move credentials from one account to another" : "Verplaats inloggegevens van het ene account naar een ander",
diff --git a/l10n/nl.json b/l10n/nl.json
index 37de2b70..361f1291 100644
--- a/l10n/nl.json
+++ b/l10n/nl.json
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Geïnterpreteerd {{num}} inloggegevens, beginnen met import",
"Importing" : "Importeren",
"Start import" : "Start import",
+ "Select CSV file" : "Selecteer CSV-bestand",
+ "Parsed {{rows}} lines from CSV file" : "Ingelezen {{rows}} regels van CSV-bestand",
"Skip first row" : "Eerste regel overslaan",
"You need to assign the label field before you can start the import." : "Je moet het labelveld opgeven, voordat je de import kunt starten.",
+ "First 5 lines of the CSV are shown." : "De eerste 5 regels van de CSV worden getoond.",
"Assign the proper fields to each column." : "Geef de juiste veldnamen op voor elke kolom.",
"Example imported credential" : "Voorbeeld geïmporteerde inloggegevens",
+ "Missing an importer? Try it with the generic CSV importer." : "Mis je een importer? Probeer het met een generieke CSV-importer.",
"Go back to importers." : "Terug naar importeerders.",
"Revision deleted" : "Revisie verwijderd",
"Revision restored" : "Revisie hersteld",
@@ -136,7 +140,11 @@
"Save keys" : "Opslaan sleutels",
"Generate sharing keys" : "Genereren sleutels om te delen",
"Generating sharing keys" : "Genereren sleutels om te delen",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Het wachtwoord hulpje scant je wachtwoord, berekent de gemiddelde kraaktijd en toont de zwakke wachtwoorden",
"Minimum password stength" : "Minimale wachtwoordsterkte",
+ "Start scan" : "Start scan",
+ "Result" : "Resultaat",
+ "A total of {{scan_result}} weak credentials were found." : "Totaal {{scan_result}} zwakke wachtwoorden gevonden.",
"Score" : "Score",
"Action" : "Actie",
"Search users or groups..." : "Zoeken gebruikers of groepen ...",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Terug naar kluizen",
"Please input the password for" : "Voer het wachtwoord in voor",
"Set this vault as default." : "Stel deze kluis als standaard in.",
+ "Log into this vault automatically." : "Automatisch in deze kluis uitloggen.",
"Logout of this vault automatically after: " : "Automatisch van deze kluis uitloggen na:",
"Decrypt vault" : "Ontsleutel kluis",
"Seems you lost the vault password and you're unable to login." : "Het lijkt erop dat je het kluiswachtwoord kwijt bent en de niet meer in kunt loggen.",
+ "If you want this vault to be removed you can request that here." : "Als je deze kluis verwijderd wilt hebben, kun je de vernietiging van de kluis hier aanvragen.",
+ "An admin then accepts to the request (or not)" : "Een beheerder accepteert dan deze aanvraag (of niet)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Nadat een beheerde deze kluis heeft vernietigd, zijn de inloggegevens verwijderd",
"Reason to request deletion (optional):" : "Reden voor aanvraag vernietiging (optioneel):",
"Request vault destruction" : "Aanvragen kluisvernietiging",
"Yes, request an admin to destroy this vault" : "Ja, vraag een beheerder om deze kluis te vernietigen",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s deelde \"%s\" met je. Klik hier om te accepteren",
"%s has declined your share request for \"%s\"." : "%s weigerde je aanvraag om \"%s\" te delen.",
"%s has accepted your share request for \"%s\"." : "%s accepteerde je aanvraag om \"%s\" te delen.",
+ "Passman" : "Passman",
"Unable to get version info" : "Kon de versieinformatie niet ophalen",
"Passman Settings" : "Passman instellingen",
"Github version:" : "Github versie:",
+ "A newer version of Passman is available" : "Er is een meer recente versie van passman beschikbaar",
"Password sharing" : "Wachtwoord delen",
"Credential mover" : "Inloggegevens verplaatser",
"Vault destruction requests" : "Kluisvernietigingsaanvragen",
"Check for new versions" : "Controleren op nieuwe versies",
"Enable HTTPS check" : "Inschakelen HTTPS controle",
"Disable context menu" : "Deactiveren contextmenu",
+ "Disable JavaScript debugger" : "Uitschakelen JavaScript debugger",
"Allow users on this server to share passwords with a link" : "Toestaan dat gebruikers op deze server wachtwoorden delen via een link",
"Allow users on this server to share passwords with other users" : "Toestaan dat gebruikers op deze server wachtwoorden met andere gebruikers delen",
"Move credentials from one account to another" : "Verplaats inloggegevens van het ene account naar een ander",
diff --git a/l10n/pl.js b/l10n/pl.js
index b0c00335..feb002c2 100644
--- a/l10n/pl.js
+++ b/l10n/pl.js
@@ -3,15 +3,15 @@ OC.L10N.register(
{
"Passwords" : "Hasła",
"Generating sharing keys ( %step / 2)" : "Tworzenie kluczy współdzielonych ( %step / 2)",
- "Incorrect vault password!" : "Złe hasło krypty!",
+ "Incorrect vault password!" : "Nieprawidłowe hasło sejfu!",
"Passwords do not match" : "Hasła nie pasują",
"General" : "Ogólne",
"Custom Fields" : "Pola niestandardowe",
"Please fill in a label!" : "Proszę wypełnić etykietę!",
- "Please fill in a value!" : "Proszę wypełnić kryptę!",
+ "Please fill in a value!" : "Proszę wypełnić wartość!",
"Error loading file" : "Błąd ładowania pliku",
"An error happened during decryption" : "Podczas odszyfrowywania nastąpił błąd",
- "Credential created!" : "Poświadczenie stworzone!",
+ "Credential created!" : "Poświadczenie utworzone!",
"Credential deleted" : "Poświadczenie skasowane",
"Credential updated" : "Poświadczenie zaktualizowane",
"Credential recovered" : "Poświadczenie odzyskane",
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Zanalizowano {{num}} poświadczeń, rozpoczynanie importu",
"Importing" : "Importuję",
"Start import" : "Start importu",
+ "Select CSV file" : "Wybierz plik CSV",
+ "Parsed {{rows}} lines from CSV file" : "Przeanalizowano {{rows}} linii z pliku CSV",
"Skip first row" : "Pomiń pierwszy wiersz",
"You need to assign the label field before you can start the import." : "Zanim zaczniesz import musisz przypisać etykietę pola.",
+ "First 5 lines of the CSV are shown." : "Wyświetlono pierwsze 5 linii pliku CSV.",
"Assign the proper fields to each column." : "Przypisz właściwe pola każdej kolumnie.",
"Example imported credential" : "Przykładowe zaimportowane poświadczenia",
+ "Missing an importer? Try it with the generic CSV importer." : "Brakuje jakiegoś importera? Spróbuj z domyślnym importerem CSV.",
"Go back to importers." : "Wróć do mechanizmów importujących.",
"Revision deleted" : "Rewizja skasowana",
"Revision restored" : "Rewizja przywrócona",
@@ -48,7 +52,7 @@ OC.L10N.register(
"Are you sure you want to leave? This WILL corrupt all your credentials" : "Na pewno chcesz wyjść? To USZKODZI twoje poświadczenia",
"Your old password is incorrect!" : "Twoje stare hasło jest nieprawidłowe",
"New passwords do not match!" : "Nowe hasła nie pasują do siebie",
- "Please login with your new vault password" : "Proszę się zalogować swoim nowym hasłem do krypty",
+ "Please login with your new vault password" : "Zaloguj się do sejfu używając nowego hasła",
"Share with users and groups" : "Udostępnij użytkownikom i grupom",
"Share link" : "Łącze udostępniania",
"Are you sure you want to leave? This will corrupt this credential" : "Na pewno chcesz wyjść? To uszkodzi twoje poświadczenia",
@@ -59,7 +63,7 @@ OC.L10N.register(
"Weak" : "Słabe",
"Good" : "Dobre",
"Strong" : "Silne",
- "Toggle visibility" : "Włącz widoczność",
+ "Toggle visibility" : "Pokaż hasło",
"Copy to clipboard" : "Skopiuj do schowka",
"Copied to clipboard!" : "Skopiowano do schowka!",
"Generate password" : "Wygeneruj hasło",
@@ -89,7 +93,7 @@ OC.L10N.register(
"Expire date" : "Data wygaśnięcia",
"No expire date set" : "Brak daty wygasnięcia",
"Renew interval" : "Interwał odnowienia",
- "Disabled" : "Wyłączono",
+ "Disabled" : "Nieaktywne",
"Day(s)" : "Dzień(-ni)",
"Week(s)" : "Tydzień(-dnie)",
"Month(s)" : "Miesiąc(-ce)",
@@ -105,15 +109,15 @@ OC.L10N.register(
"Require every character type" : "Wymagaj każdego typu znaku",
"Export type" : "Typ eksportu",
"Export" : "Eksport",
- "Enter vault password to confirm export." : "Potwierdź hasło schowka w celu potwierdzenia eksportu.",
- "Rename vault" : "Zmień nazwę krypty",
- "New vault name" : "Nowa nazwa krypty",
+ "Enter vault password to confirm export." : "Wprowadź hasło aby potwierdzić eksport sejfu.",
+ "Rename vault" : "Zmień nazwę sejfu",
+ "New vault name" : "Nowa nazwa sejfu",
"Change" : "Zmień",
"Change vault key" : "Zmień wartość klucza",
- "Old vault password" : "Stare hasło krypty",
- "New vault password" : "Nowa hasło krypty",
- "New vault password repeat" : "Powtórz nowe hasło krypty",
- "Please wait your vault is being updated, do not leave this page." : "Proszę poczekać aż krypta zostanie zaktualizowana, nie opuszczaj tej strony.",
+ "Old vault password" : "Stare hasło sejfu",
+ "New vault password" : "Nowe hasło sejfu",
+ "New vault password repeat" : "Powtórz nowe hasło sejfu",
+ "Please wait your vault is being updated, do not leave this page." : "Proszę poczekać aż sejf zostanie zaktualizowany, nie opuszczaj tej strony.",
"Processing" : "Przetwarzam",
"Total progress" : "Postęp całowity",
"About Passman" : "O Passmanie",
@@ -122,8 +126,8 @@ OC.L10N.register(
"Bookmarklet" : "Skryptozakładka",
"Save your passwords with 1 click!" : "Zapisz swoje hasło jednym kliknięciem!",
"Drag below button to your bookmark toolbar." : "Przesuń poniższy przycisk na pasek zakładek.",
- "Delete vault" : "Usuń kryptę",
- "Vault password" : "Hasło krypty",
+ "Delete vault" : "Usuń sejf",
+ "Vault password" : "Hasło sejfu",
"This process is irreversible" : "Ten proces jest nieodwracalny",
"Delete my precious passwords" : "Skasuj moje cenne hasła",
"Deleting {{password}}..." : "Kasuję {{password}}...",
@@ -138,11 +142,15 @@ OC.L10N.register(
"Save keys" : "Zapisz klucze",
"Generate sharing keys" : "Generuj klucze współdzielone",
"Generating sharing keys" : "Generowanie klucze współdzielone",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Narzędzie przeskanuje Twoje hasła, obliczy czas potrzebny do ich złamania i wyświetli te, które znajdą się poniżej założonego progu",
"Minimum password stength" : "Minimalna siła hasła",
+ "Start scan" : "Rozpocznij skanowanie",
+ "Result" : "Wynik",
+ "A total of {{scan_result}} weak credentials were found." : "Znaleziono {{scan_result}} słabych uprawnień.",
"Score" : "Punktacja",
"Action" : "Akcja",
"Search users or groups..." : "Szukaj użytkowników lub grup...",
- "Missing users? Only users that have vaults are shown." : "Brakujący użytkownicy? Tylko użytkownicy, którzy posiadają schowki zostali pokazani.",
+ "Missing users? Only users that have vaults are shown." : "Brakuje użytkowników? Zostali pokazani tylko użytkownicy posiadający sejfy.",
"Cyphering" : "Szyfrowanie",
"Uploading" : "Wysyłanie",
"User" : "Użytkownik",
@@ -181,7 +189,7 @@ OC.L10N.register(
"Base guesses" : "Odgadnięte podstawy",
"Uppercase variations" : "Wariacje wielkich liter",
"l33t-variations" : "Wariacje l33t",
- "Showing revisions of" : "Pokaż rewizję z",
+ "Showing revisions of" : "Rewizje",
"Revision of" : "Rewizja z",
"by" : "przez",
"No revisions found." : "Nie znaleziono rewizji",
@@ -189,7 +197,7 @@ OC.L10N.register(
"Restore revision" : "Przywróć rewizję",
"Delete revision" : "Usuń rewizję",
"Edit credential" : "Edytuj poświadczenie",
- "Create new credential" : "Stwórz nowe poświadczenie",
+ "Create new credential" : "Utwórz nowe poświadczenie",
"Save" : "Zapisz",
"Cancel" : "Anuluj",
"Settings" : "Ustawienia",
@@ -215,39 +223,43 @@ OC.L10N.register(
"Destroy" : "Zniszcz",
"Use regex" : "Użyj wyrażeń regularnych",
"You have incoming share requests." : "Masz nowe żądania udostępniania.",
- "If you want to put the credential in a other vault," : "Jeśli chcesz zapisać poświadczenie w innej krypcie,",
- "logout of this vault and login to the vault you want the shared credential in." : "wyloguj się z tej krypty i zaloguj do krypty, do której chcesz zapisać poświadczenie",
+ "If you want to put the credential in a other vault," : "Jeśli chcesz zapisać poświadczenie w innym sejfie,",
+ "logout of this vault and login to the vault you want the shared credential in." : "wyloguj się z tego sejfu, a następnie zaloguj się do sejfu, do którego chcesz zapisać poświadczenie",
"Permissions" : "Uprawnienia",
"Received from" : "Otrzymane od",
"Date" : "Data",
"Accept" : "Akceptuj",
"Decline" : "Odrzuć",
"You have {{session_time}} left before logout." : "Do wylogowania pozostało ci {{session_time}}",
- "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Twój schowek został zablokowany na {{time}} ponieaż został wykonanych {{tries}} nieprawidłowych prób zalogowania.",
- "Last accessed" : "Ostatnio dostępny",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Twój sejf został zablokowany na {{time}} ponieaż zostało wykonanych {{tries}} nieprawidłowych prób zalogowania.",
+ "Last accessed" : "Ostatnio używany",
"Never" : "Nigdy",
- "No vaults found, why not create one?" : "Nie znaleziono żadnej krypty, dlaczego by jakiejś nie stworzyć?",
+ "No vaults found, why not create one?" : "Nie znaleziono żadnego sejfu. Dlaczego by jakiegoś nie stworzyć?",
"Password strength must be at least: {{strength}}" : "Siła hasła musi być przynajmniej: {{strength}}",
- "Please give your new vault a name." : "Proszę nadaj nowej krypcie nazwę.",
- "Repeat vault password" : "Powtórz hasło krypty",
+ "Please give your new vault a name." : "Proszę nadaj nazwę nowemu sejfowi.",
+ "Repeat vault password" : "Powtórz hasło sejfu",
"Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Twoje klucze udostępniania będą miały siłę 1024 bitów, co możesz potem zmienić w ustawieniach",
- "Create vault" : "Utwórz kryptę",
- "Go back to vaults" : "Wróć do krypt",
+ "Create vault" : "Utwórz nowy sejf",
+ "Go back to vaults" : "Wróć do sejfów",
"Please input the password for" : "Proszę wprowadzić hasło do",
- "Set this vault as default." : "Ustaw tę kryptę jako domyślną.",
- "Logout of this vault automatically after: " : "Wyloguj automatycznie z tej krypty po:",
- "Decrypt vault" : "Odszyfruj kryptę",
+ "Set this vault as default." : "Ustaw ten sejf jako domyślny.",
+ "Log into this vault automatically." : "Automatycznie zaloguj do tego sejfu.",
+ "Logout of this vault automatically after: " : "Wyloguj automatycznie z tego sejfu po:",
+ "Decrypt vault" : "Odszyfruj sejf",
"Seems you lost the vault password and you're unable to login." : "Wygląda na to, że zgubiłeś/-aś hasło krypty i nie jesteś w stanie się zalogować.",
- "Reason to request deletion (optional):" : "Powód prośby usunięcia (opcjonalnie):",
- "Request vault destruction" : "Poproś o zniszczenie krypty",
- "Yes, request an admin to destroy this vault" : "Tak, poprosiłeś/-aś administratora o zniszczenie tej krypty",
+ "If you want this vault to be removed you can request that here." : "Jeżeli chcesz usunąć ten sejf możesz to zgłosić tutaj.",
+ "An admin then accepts to the request (or not)" : "Wtedy administrator zaakceptuje (lub nie) twoją prośbę",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Kiedy administrator zniszczy ten sejf wszystkie poświadczenia zostaną utracone",
+ "Reason to request deletion (optional):" : "Powód usunięcia (opcjonalnie):",
+ "Request vault destruction" : "Poproś o zniszczenie sejfu",
+ "Yes, request an admin to destroy this vault" : "Tak, poproś administratora o zniszczenie tego sejfu",
"Cancel destruction request" : "Anuluj prośbę o zniszczenie",
- "Vault destruction requested" : "Prośba o zniszczenie krypty została złożona",
+ "Vault destruction requested" : "Prośba o zniszczenie sejfu została wysłana",
"Request removed" : "Prośba została usunięta",
- "Destruction request pending" : "Oczekujące prośby o zniszczenie",
+ "Destruction request pending" : "Oczekuje na zniszczenie",
"Warning! Adding credentials over http can be insecure!" : "Uwaga! Dodawanie poświadczeń przez nieszyfrowane połączenie (http) może być niebezpieczne!",
"Logged in to {{vault_name}}" : "Zalogowano do {{vault_name}}",
- "Change vault" : "Zmień kryptę",
+ "Change vault" : "Zmień sejf",
"Deleted credentials" : "Usunięte poświadczenia",
"Logout" : "Wyloguj",
"Donate" : "Dotuj",
@@ -276,7 +288,7 @@ OC.L10N.register(
"You permanently deleted %1$s" : "Trwale usunięto %1$s",
"The password of %1$s has expired, renew it now." : "Hasło %1$s wygasło, odnów je teraz.",
"%1$s has been shared with %2$s" : "%1$s udostępniono dla %2$s",
- "You received a share request for %1$s from %2$s" : "Otrzymałeś(-łaś) prośbę udostępnienia %1$s od %2$s",
+ "You received a share request for %1$s from %2$s" : "Użytkownik %2$s poprosił Cię o udstępnienie %1$s",
"%s has been shared with a link" : "%s został udostępniony łączem",
"Your credential \"%s\" expired, click here to update the credential." : "Twoje poświadczenie \"%s\" wygasła, kliknij tu, aby je zaktualizować.",
"Remind me later" : "Przypomnij mi później",
@@ -284,22 +296,25 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s udostępnił ci \"%s\". Kliknij, aby zaakceptować",
"%s has declined your share request for \"%s\"." : "%s odrzucił twoją prośbę o udostępnienie \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s zaakceptował twoją prośbę o udostępnienie \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Nie mogę uzyskać informacji o wersji",
"Passman Settings" : "Ustawienia Passmana",
"Github version:" : "Wersja Github:",
+ "A newer version of Passman is available" : "Nowsza wersja aplikacji Passman jest dostępna",
"Password sharing" : "Współdzielenie hasła",
"Credential mover" : "Przenoszenie poświadczeń",
- "Vault destruction requests" : "Prośby o zniszczenie krypty",
- "Check for new versions" : "Sprawdź czy jest nowsza wersja",
+ "Vault destruction requests" : "Prośby o zniszczenie sejfu",
+ "Check for new versions" : "Sprawdzaj czy jest nowsza wersja",
"Enable HTTPS check" : "Włącz sprawdzenie HTTPS",
"Disable context menu" : "Wyłącz menu kontekstowe",
+ "Disable JavaScript debugger" : "Wyłącz debugger JavaScript",
"Allow users on this server to share passwords with a link" : "Zezwól użytkownikom tego serwera na udostępnianie haseł łączem",
"Allow users on this server to share passwords with other users" : "Zezwól użytkownikom tego serwera na udostępnianie haseł innym użytkownikom",
- "Move credentials from one account to another" : "Przesuń poświadczenia z jednego konta na drugie",
+ "Move credentials from one account to another" : "Przenieś poświadczenia pomiędzy kontami",
"Source account" : "Konto źródłowe",
"Destination account" : "Konto docelowe",
"Credentials moved!" : "Poświadczenia przeniesiono!",
- "Requests to destroy vault" : "Prośby o zniszczenie krypty",
+ "Requests to destroy vault" : "Prośby o zniszczenie sejfu",
"Request ID" : "Identyfikator prośby",
"Requested by" : "Prośba złożona przez",
"Reason" : "Powód",
@@ -309,4 +324,4 @@ OC.L10N.register(
"Dismiss" : "Odrzuć",
"seconds ago" : "sekund temu"
},
-"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);");
+"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);");
diff --git a/l10n/pl.json b/l10n/pl.json
index 8addd4fd..ed390bd9 100644
--- a/l10n/pl.json
+++ b/l10n/pl.json
@@ -1,15 +1,15 @@
{ "translations": {
"Passwords" : "Hasła",
"Generating sharing keys ( %step / 2)" : "Tworzenie kluczy współdzielonych ( %step / 2)",
- "Incorrect vault password!" : "Złe hasło krypty!",
+ "Incorrect vault password!" : "Nieprawidłowe hasło sejfu!",
"Passwords do not match" : "Hasła nie pasują",
"General" : "Ogólne",
"Custom Fields" : "Pola niestandardowe",
"Please fill in a label!" : "Proszę wypełnić etykietę!",
- "Please fill in a value!" : "Proszę wypełnić kryptę!",
+ "Please fill in a value!" : "Proszę wypełnić wartość!",
"Error loading file" : "Błąd ładowania pliku",
"An error happened during decryption" : "Podczas odszyfrowywania nastąpił błąd",
- "Credential created!" : "Poświadczenie stworzone!",
+ "Credential created!" : "Poświadczenie utworzone!",
"Credential deleted" : "Poświadczenie skasowane",
"Credential updated" : "Poświadczenie zaktualizowane",
"Credential recovered" : "Poświadczenie odzyskane",
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Zanalizowano {{num}} poświadczeń, rozpoczynanie importu",
"Importing" : "Importuję",
"Start import" : "Start importu",
+ "Select CSV file" : "Wybierz plik CSV",
+ "Parsed {{rows}} lines from CSV file" : "Przeanalizowano {{rows}} linii z pliku CSV",
"Skip first row" : "Pomiń pierwszy wiersz",
"You need to assign the label field before you can start the import." : "Zanim zaczniesz import musisz przypisać etykietę pola.",
+ "First 5 lines of the CSV are shown." : "Wyświetlono pierwsze 5 linii pliku CSV.",
"Assign the proper fields to each column." : "Przypisz właściwe pola każdej kolumnie.",
"Example imported credential" : "Przykładowe zaimportowane poświadczenia",
+ "Missing an importer? Try it with the generic CSV importer." : "Brakuje jakiegoś importera? Spróbuj z domyślnym importerem CSV.",
"Go back to importers." : "Wróć do mechanizmów importujących.",
"Revision deleted" : "Rewizja skasowana",
"Revision restored" : "Rewizja przywrócona",
@@ -46,7 +50,7 @@
"Are you sure you want to leave? This WILL corrupt all your credentials" : "Na pewno chcesz wyjść? To USZKODZI twoje poświadczenia",
"Your old password is incorrect!" : "Twoje stare hasło jest nieprawidłowe",
"New passwords do not match!" : "Nowe hasła nie pasują do siebie",
- "Please login with your new vault password" : "Proszę się zalogować swoim nowym hasłem do krypty",
+ "Please login with your new vault password" : "Zaloguj się do sejfu używając nowego hasła",
"Share with users and groups" : "Udostępnij użytkownikom i grupom",
"Share link" : "Łącze udostępniania",
"Are you sure you want to leave? This will corrupt this credential" : "Na pewno chcesz wyjść? To uszkodzi twoje poświadczenia",
@@ -57,7 +61,7 @@
"Weak" : "Słabe",
"Good" : "Dobre",
"Strong" : "Silne",
- "Toggle visibility" : "Włącz widoczność",
+ "Toggle visibility" : "Pokaż hasło",
"Copy to clipboard" : "Skopiuj do schowka",
"Copied to clipboard!" : "Skopiowano do schowka!",
"Generate password" : "Wygeneruj hasło",
@@ -87,7 +91,7 @@
"Expire date" : "Data wygaśnięcia",
"No expire date set" : "Brak daty wygasnięcia",
"Renew interval" : "Interwał odnowienia",
- "Disabled" : "Wyłączono",
+ "Disabled" : "Nieaktywne",
"Day(s)" : "Dzień(-ni)",
"Week(s)" : "Tydzień(-dnie)",
"Month(s)" : "Miesiąc(-ce)",
@@ -103,15 +107,15 @@
"Require every character type" : "Wymagaj każdego typu znaku",
"Export type" : "Typ eksportu",
"Export" : "Eksport",
- "Enter vault password to confirm export." : "Potwierdź hasło schowka w celu potwierdzenia eksportu.",
- "Rename vault" : "Zmień nazwę krypty",
- "New vault name" : "Nowa nazwa krypty",
+ "Enter vault password to confirm export." : "Wprowadź hasło aby potwierdzić eksport sejfu.",
+ "Rename vault" : "Zmień nazwę sejfu",
+ "New vault name" : "Nowa nazwa sejfu",
"Change" : "Zmień",
"Change vault key" : "Zmień wartość klucza",
- "Old vault password" : "Stare hasło krypty",
- "New vault password" : "Nowa hasło krypty",
- "New vault password repeat" : "Powtórz nowe hasło krypty",
- "Please wait your vault is being updated, do not leave this page." : "Proszę poczekać aż krypta zostanie zaktualizowana, nie opuszczaj tej strony.",
+ "Old vault password" : "Stare hasło sejfu",
+ "New vault password" : "Nowe hasło sejfu",
+ "New vault password repeat" : "Powtórz nowe hasło sejfu",
+ "Please wait your vault is being updated, do not leave this page." : "Proszę poczekać aż sejf zostanie zaktualizowany, nie opuszczaj tej strony.",
"Processing" : "Przetwarzam",
"Total progress" : "Postęp całowity",
"About Passman" : "O Passmanie",
@@ -120,8 +124,8 @@
"Bookmarklet" : "Skryptozakładka",
"Save your passwords with 1 click!" : "Zapisz swoje hasło jednym kliknięciem!",
"Drag below button to your bookmark toolbar." : "Przesuń poniższy przycisk na pasek zakładek.",
- "Delete vault" : "Usuń kryptę",
- "Vault password" : "Hasło krypty",
+ "Delete vault" : "Usuń sejf",
+ "Vault password" : "Hasło sejfu",
"This process is irreversible" : "Ten proces jest nieodwracalny",
"Delete my precious passwords" : "Skasuj moje cenne hasła",
"Deleting {{password}}..." : "Kasuję {{password}}...",
@@ -136,11 +140,15 @@
"Save keys" : "Zapisz klucze",
"Generate sharing keys" : "Generuj klucze współdzielone",
"Generating sharing keys" : "Generowanie klucze współdzielone",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Narzędzie przeskanuje Twoje hasła, obliczy czas potrzebny do ich złamania i wyświetli te, które znajdą się poniżej założonego progu",
"Minimum password stength" : "Minimalna siła hasła",
+ "Start scan" : "Rozpocznij skanowanie",
+ "Result" : "Wynik",
+ "A total of {{scan_result}} weak credentials were found." : "Znaleziono {{scan_result}} słabych uprawnień.",
"Score" : "Punktacja",
"Action" : "Akcja",
"Search users or groups..." : "Szukaj użytkowników lub grup...",
- "Missing users? Only users that have vaults are shown." : "Brakujący użytkownicy? Tylko użytkownicy, którzy posiadają schowki zostali pokazani.",
+ "Missing users? Only users that have vaults are shown." : "Brakuje użytkowników? Zostali pokazani tylko użytkownicy posiadający sejfy.",
"Cyphering" : "Szyfrowanie",
"Uploading" : "Wysyłanie",
"User" : "Użytkownik",
@@ -179,7 +187,7 @@
"Base guesses" : "Odgadnięte podstawy",
"Uppercase variations" : "Wariacje wielkich liter",
"l33t-variations" : "Wariacje l33t",
- "Showing revisions of" : "Pokaż rewizję z",
+ "Showing revisions of" : "Rewizje",
"Revision of" : "Rewizja z",
"by" : "przez",
"No revisions found." : "Nie znaleziono rewizji",
@@ -187,7 +195,7 @@
"Restore revision" : "Przywróć rewizję",
"Delete revision" : "Usuń rewizję",
"Edit credential" : "Edytuj poświadczenie",
- "Create new credential" : "Stwórz nowe poświadczenie",
+ "Create new credential" : "Utwórz nowe poświadczenie",
"Save" : "Zapisz",
"Cancel" : "Anuluj",
"Settings" : "Ustawienia",
@@ -213,39 +221,43 @@
"Destroy" : "Zniszcz",
"Use regex" : "Użyj wyrażeń regularnych",
"You have incoming share requests." : "Masz nowe żądania udostępniania.",
- "If you want to put the credential in a other vault," : "Jeśli chcesz zapisać poświadczenie w innej krypcie,",
- "logout of this vault and login to the vault you want the shared credential in." : "wyloguj się z tej krypty i zaloguj do krypty, do której chcesz zapisać poświadczenie",
+ "If you want to put the credential in a other vault," : "Jeśli chcesz zapisać poświadczenie w innym sejfie,",
+ "logout of this vault and login to the vault you want the shared credential in." : "wyloguj się z tego sejfu, a następnie zaloguj się do sejfu, do którego chcesz zapisać poświadczenie",
"Permissions" : "Uprawnienia",
"Received from" : "Otrzymane od",
"Date" : "Data",
"Accept" : "Akceptuj",
"Decline" : "Odrzuć",
"You have {{session_time}} left before logout." : "Do wylogowania pozostało ci {{session_time}}",
- "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Twój schowek został zablokowany na {{time}} ponieaż został wykonanych {{tries}} nieprawidłowych prób zalogowania.",
- "Last accessed" : "Ostatnio dostępny",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Twój sejf został zablokowany na {{time}} ponieaż zostało wykonanych {{tries}} nieprawidłowych prób zalogowania.",
+ "Last accessed" : "Ostatnio używany",
"Never" : "Nigdy",
- "No vaults found, why not create one?" : "Nie znaleziono żadnej krypty, dlaczego by jakiejś nie stworzyć?",
+ "No vaults found, why not create one?" : "Nie znaleziono żadnego sejfu. Dlaczego by jakiegoś nie stworzyć?",
"Password strength must be at least: {{strength}}" : "Siła hasła musi być przynajmniej: {{strength}}",
- "Please give your new vault a name." : "Proszę nadaj nowej krypcie nazwę.",
- "Repeat vault password" : "Powtórz hasło krypty",
+ "Please give your new vault a name." : "Proszę nadaj nazwę nowemu sejfowi.",
+ "Repeat vault password" : "Powtórz hasło sejfu",
"Your sharing key's will have a strength of 1024 bit, which you can change later in settings." : "Twoje klucze udostępniania będą miały siłę 1024 bitów, co możesz potem zmienić w ustawieniach",
- "Create vault" : "Utwórz kryptę",
- "Go back to vaults" : "Wróć do krypt",
+ "Create vault" : "Utwórz nowy sejf",
+ "Go back to vaults" : "Wróć do sejfów",
"Please input the password for" : "Proszę wprowadzić hasło do",
- "Set this vault as default." : "Ustaw tę kryptę jako domyślną.",
- "Logout of this vault automatically after: " : "Wyloguj automatycznie z tej krypty po:",
- "Decrypt vault" : "Odszyfruj kryptę",
+ "Set this vault as default." : "Ustaw ten sejf jako domyślny.",
+ "Log into this vault automatically." : "Automatycznie zaloguj do tego sejfu.",
+ "Logout of this vault automatically after: " : "Wyloguj automatycznie z tego sejfu po:",
+ "Decrypt vault" : "Odszyfruj sejf",
"Seems you lost the vault password and you're unable to login." : "Wygląda na to, że zgubiłeś/-aś hasło krypty i nie jesteś w stanie się zalogować.",
- "Reason to request deletion (optional):" : "Powód prośby usunięcia (opcjonalnie):",
- "Request vault destruction" : "Poproś o zniszczenie krypty",
- "Yes, request an admin to destroy this vault" : "Tak, poprosiłeś/-aś administratora o zniszczenie tej krypty",
+ "If you want this vault to be removed you can request that here." : "Jeżeli chcesz usunąć ten sejf możesz to zgłosić tutaj.",
+ "An admin then accepts to the request (or not)" : "Wtedy administrator zaakceptuje (lub nie) twoją prośbę",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Kiedy administrator zniszczy ten sejf wszystkie poświadczenia zostaną utracone",
+ "Reason to request deletion (optional):" : "Powód usunięcia (opcjonalnie):",
+ "Request vault destruction" : "Poproś o zniszczenie sejfu",
+ "Yes, request an admin to destroy this vault" : "Tak, poproś administratora o zniszczenie tego sejfu",
"Cancel destruction request" : "Anuluj prośbę o zniszczenie",
- "Vault destruction requested" : "Prośba o zniszczenie krypty została złożona",
+ "Vault destruction requested" : "Prośba o zniszczenie sejfu została wysłana",
"Request removed" : "Prośba została usunięta",
- "Destruction request pending" : "Oczekujące prośby o zniszczenie",
+ "Destruction request pending" : "Oczekuje na zniszczenie",
"Warning! Adding credentials over http can be insecure!" : "Uwaga! Dodawanie poświadczeń przez nieszyfrowane połączenie (http) może być niebezpieczne!",
"Logged in to {{vault_name}}" : "Zalogowano do {{vault_name}}",
- "Change vault" : "Zmień kryptę",
+ "Change vault" : "Zmień sejf",
"Deleted credentials" : "Usunięte poświadczenia",
"Logout" : "Wyloguj",
"Donate" : "Dotuj",
@@ -274,7 +286,7 @@
"You permanently deleted %1$s" : "Trwale usunięto %1$s",
"The password of %1$s has expired, renew it now." : "Hasło %1$s wygasło, odnów je teraz.",
"%1$s has been shared with %2$s" : "%1$s udostępniono dla %2$s",
- "You received a share request for %1$s from %2$s" : "Otrzymałeś(-łaś) prośbę udostępnienia %1$s od %2$s",
+ "You received a share request for %1$s from %2$s" : "Użytkownik %2$s poprosił Cię o udstępnienie %1$s",
"%s has been shared with a link" : "%s został udostępniony łączem",
"Your credential \"%s\" expired, click here to update the credential." : "Twoje poświadczenie \"%s\" wygasła, kliknij tu, aby je zaktualizować.",
"Remind me later" : "Przypomnij mi później",
@@ -282,22 +294,25 @@
"%s shared \"%s\" with you. Click here to accept" : "%s udostępnił ci \"%s\". Kliknij, aby zaakceptować",
"%s has declined your share request for \"%s\"." : "%s odrzucił twoją prośbę o udostępnienie \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s zaakceptował twoją prośbę o udostępnienie \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Nie mogę uzyskać informacji o wersji",
"Passman Settings" : "Ustawienia Passmana",
"Github version:" : "Wersja Github:",
+ "A newer version of Passman is available" : "Nowsza wersja aplikacji Passman jest dostępna",
"Password sharing" : "Współdzielenie hasła",
"Credential mover" : "Przenoszenie poświadczeń",
- "Vault destruction requests" : "Prośby o zniszczenie krypty",
- "Check for new versions" : "Sprawdź czy jest nowsza wersja",
+ "Vault destruction requests" : "Prośby o zniszczenie sejfu",
+ "Check for new versions" : "Sprawdzaj czy jest nowsza wersja",
"Enable HTTPS check" : "Włącz sprawdzenie HTTPS",
"Disable context menu" : "Wyłącz menu kontekstowe",
+ "Disable JavaScript debugger" : "Wyłącz debugger JavaScript",
"Allow users on this server to share passwords with a link" : "Zezwól użytkownikom tego serwera na udostępnianie haseł łączem",
"Allow users on this server to share passwords with other users" : "Zezwól użytkownikom tego serwera na udostępnianie haseł innym użytkownikom",
- "Move credentials from one account to another" : "Przesuń poświadczenia z jednego konta na drugie",
+ "Move credentials from one account to another" : "Przenieś poświadczenia pomiędzy kontami",
"Source account" : "Konto źródłowe",
"Destination account" : "Konto docelowe",
"Credentials moved!" : "Poświadczenia przeniesiono!",
- "Requests to destroy vault" : "Prośby o zniszczenie krypty",
+ "Requests to destroy vault" : "Prośby o zniszczenie sejfu",
"Request ID" : "Identyfikator prośby",
"Requested by" : "Prośba złożona przez",
"Reason" : "Powód",
@@ -306,5 +321,5 @@
"Saving..." : "Zapisywanie...",
"Dismiss" : "Odrzuć",
"seconds ago" : "sekund temu"
-},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"
+},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"
} \ No newline at end of file
diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js
index fe2e2605..976905ff 100644
--- a/l10n/pt_BR.js
+++ b/l10n/pt_BR.js
@@ -7,7 +7,7 @@ OC.L10N.register(
"Passwords do not match" : "As senhas não coincidem",
"General" : "Geral",
"Custom Fields" : "Campos personalizados",
- "Please fill in a label!" : "Preencha a etiqueta!",
+ "Please fill in a label!" : "por favor preencher a etiqueta!",
"Please fill in a value!" : "Preencha o valor!",
"Error loading file" : "Erro ao carregar o arquivo",
"An error happened during decryption" : "Ocorreu um erro durante a descriptografia",
@@ -26,14 +26,18 @@ OC.L10N.register(
"Credential has no label, skipping" : "Credencial não tem etiqueta, ignorando",
"Adding {{credential}}" : "Adicionando {{credential}}",
"Added {{credential}}" : "Adicionada {{credential}} ",
- "Skipping credential, missing label on line {{line}}" : "Ignorando credencial, falta rótulo online {{line}}",
+ "Skipping credential, missing label on line {{line}}" : "Ignorando credencial, falta etiqueta online {{line}}",
"Parsed {{num}} credentials, starting to import" : "Credenciais {{num}} analisadas, começando a importar",
"Importing" : "Importando",
"Start import" : "Iniciar importação",
+ "Select CSV file" : "Selecione um arquivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "{{rows}} linhas analisadas do arquivo CSV",
"Skip first row" : "Ignorar a primeira linha",
"You need to assign the label field before you can start the import." : "É necessário atribuir o campo de etiqueta para poder iniciar a importação.",
+ "First 5 lines of the CSV are shown." : "Serão mostradas as 5 primeiras linhas do CSV.",
"Assign the proper fields to each column." : "Atribua os campos apropriados a cada coluna.",
"Example imported credential" : "Exemplo de credencial importada",
+ "Missing an importer? Try it with the generic CSV importer." : "Não tem um importador? Experimente o importador CSV genérico.",
"Go back to importers." : "Volte para importadores.",
"Revision deleted" : "Revisão excluída",
"Revision restored" : "Revisão restaurada",
@@ -67,7 +71,7 @@ OC.L10N.register(
"Password copied to clipboard!" : "Senha copiada para a área de transferência!",
"Complete" : "Completo",
"Username" : "Nome do usuário",
- "Repeat password" : "Repita a senha",
+ "Repeat password" : "Repetir a senha",
"Add Tag" : "Adicionar etiqueta",
"Field label" : "Campo etiqueta",
"Field value" : "Campo valor",
@@ -96,7 +100,7 @@ OC.L10N.register(
"Year(s)" : "Ano(s)",
"Password generation settings" : "Configurações de geração de senha",
"Password length" : "Comprimento da senha",
- "Minimum amount of digits" : "Tamanho mínimo",
+ "Minimum amount of digits" : "Quantidade mínima de dígitos",
"Use uppercase letters" : "Usar letras maiúsculas",
"Use lowercase letters" : "Usar letras minúsculas",
"Use numbers" : "Usar números",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Salvar chaves",
"Generate sharing keys" : "Gerar chaves de compartilhamento",
"Generating sharing keys" : "Gerando chaves de compartilhamento",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "A ferramenta de senha irá escanear sua senha, calcular o tempo médio para quebrá-la e listar aquelas que estão abaixo do limiar",
"Minimum password stength" : "Força mínima da senha",
+ "Start scan" : "Iniciar escaneamento",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "{{scan_result}} credenciais fracas foram encontradas.",
"Score" : "Pontuação",
"Action" : "Ação",
"Search users or groups..." : "Pesquisar usuários ou grupos...",
@@ -173,7 +181,7 @@ OC.L10N.register(
"Match sequence" : "Sequência de correspondência",
"See match sequence" : "Ver sequência de correspondência",
"Pattern" : "Padrão",
- "Matched word" : "Palavra combinada",
+ "Matched word" : "Palavra correspondente",
"Dictionary name" : "Nome do dicionário",
"Rank" : "Classificação",
"Reversed" : "Invertido",
@@ -202,7 +210,7 @@ OC.L10N.register(
"Account" : "Conta",
"Password" : "Senha",
"OTP" : "OTP",
- "E-mail" : "Email",
+ "E-mail" : "E-mail",
"URL" : "URL",
"Notes" : "Anotações",
"Expire time" : "Data de expiração",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Voltar para os cofres",
"Please input the password for" : "Por favor entre uma senha para",
"Set this vault as default." : "Configure esse cofre como padrão.",
- "Logout of this vault automatically after: " : "Efetue o logout desta solicitação logo após:",
+ "Log into this vault automatically." : "Entre neste cofre automaticamente.",
+ "Logout of this vault automatically after: " : "Efetue o logout deste cofre automaticamente após:",
"Decrypt vault" : "Descriptografar o cofre",
"Seems you lost the vault password and you're unable to login." : "Parece que você perdeu a senha do cofre e não consegue fazer login.",
+ "If you want this vault to be removed you can request that here." : "Se quiser que este cofre seja excluído, pode solicitar isso aqui.",
+ "An admin then accepts to the request (or not)" : "Um administrador então aceita (ou não) a solicitação",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Após o administrador destruir o cofre, todas as credenciais dentro serão perdidas",
"Reason to request deletion (optional):" : "Motivo para solicitar a exclusão (opcional):",
"Request vault destruction" : "Solicitar a destruição do cofre",
"Yes, request an admin to destroy this vault" : "Sim, solicitar a um administrador para destruir este cofre",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s compartilhou \"%s\" com você. Clique aqui para aceitar",
"%s has declined your share request for \"%s\"." : "%s recusou sua solicitação de compartilhamento de \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s aceitou sua solicitação de compartilhamento para \"%s\".",
- "Unable to get version info" : "Não é possível obter informações sobre a versão",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Não foi possível obter informações sobre a versão",
"Passman Settings" : "Configurações do Passman",
"Github version:" : "Versão Github:",
+ "A newer version of Passman is available" : "Uma nova versão do Passman está disponível",
"Password sharing" : "Compartilhamento de senha",
"Credential mover" : "Movimentação de credenciais",
"Vault destruction requests" : "Solicitações de destruição de cofres",
"Check for new versions" : "Verificar novas versões",
"Enable HTTPS check" : "Ativar verificação HTTPS",
"Disable context menu" : "Desativar menu de contexto",
+ "Disable JavaScript debugger" : "Desabilitar a depuração JavaScript",
"Allow users on this server to share passwords with a link" : "Permitir que usuários neste servidor compartilhem senhas com um link",
"Allow users on this server to share passwords with other users" : "Permitir que usuários neste servidor compartilhem senhas com outros usuários",
"Move credentials from one account to another" : "Mover credenciais de uma conta para outra",
@@ -300,12 +315,12 @@ OC.L10N.register(
"Destination account" : "Conta de destino",
"Credentials moved!" : "Credenciais movidas!",
"Requests to destroy vault" : "Pedidos para destruir cofre",
- "Request ID" : "Requisitar ID",
+ "Request ID" : "Solicitar ID",
"Requested by" : "Requerido por",
"Reason" : "Razão",
"Connection to server lost" : "Conexão perdida com o servidor",
"Problem loading page, reloading in 5 seconds" : "Problema ao carregar a página, recarregando em 5 segundos",
- "Saving..." : "Pesquisando...",
+ "Saving..." : "Salvando...",
"Dismiss" : "Descartar",
"seconds ago" : "segundos atras"
},
diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json
index d9e69c7b..13f4076b 100644
--- a/l10n/pt_BR.json
+++ b/l10n/pt_BR.json
@@ -5,7 +5,7 @@
"Passwords do not match" : "As senhas não coincidem",
"General" : "Geral",
"Custom Fields" : "Campos personalizados",
- "Please fill in a label!" : "Preencha a etiqueta!",
+ "Please fill in a label!" : "por favor preencher a etiqueta!",
"Please fill in a value!" : "Preencha o valor!",
"Error loading file" : "Erro ao carregar o arquivo",
"An error happened during decryption" : "Ocorreu um erro durante a descriptografia",
@@ -24,14 +24,18 @@
"Credential has no label, skipping" : "Credencial não tem etiqueta, ignorando",
"Adding {{credential}}" : "Adicionando {{credential}}",
"Added {{credential}}" : "Adicionada {{credential}} ",
- "Skipping credential, missing label on line {{line}}" : "Ignorando credencial, falta rótulo online {{line}}",
+ "Skipping credential, missing label on line {{line}}" : "Ignorando credencial, falta etiqueta online {{line}}",
"Parsed {{num}} credentials, starting to import" : "Credenciais {{num}} analisadas, começando a importar",
"Importing" : "Importando",
"Start import" : "Iniciar importação",
+ "Select CSV file" : "Selecione um arquivo CSV",
+ "Parsed {{rows}} lines from CSV file" : "{{rows}} linhas analisadas do arquivo CSV",
"Skip first row" : "Ignorar a primeira linha",
"You need to assign the label field before you can start the import." : "É necessário atribuir o campo de etiqueta para poder iniciar a importação.",
+ "First 5 lines of the CSV are shown." : "Serão mostradas as 5 primeiras linhas do CSV.",
"Assign the proper fields to each column." : "Atribua os campos apropriados a cada coluna.",
"Example imported credential" : "Exemplo de credencial importada",
+ "Missing an importer? Try it with the generic CSV importer." : "Não tem um importador? Experimente o importador CSV genérico.",
"Go back to importers." : "Volte para importadores.",
"Revision deleted" : "Revisão excluída",
"Revision restored" : "Revisão restaurada",
@@ -65,7 +69,7 @@
"Password copied to clipboard!" : "Senha copiada para a área de transferência!",
"Complete" : "Completo",
"Username" : "Nome do usuário",
- "Repeat password" : "Repita a senha",
+ "Repeat password" : "Repetir a senha",
"Add Tag" : "Adicionar etiqueta",
"Field label" : "Campo etiqueta",
"Field value" : "Campo valor",
@@ -94,7 +98,7 @@
"Year(s)" : "Ano(s)",
"Password generation settings" : "Configurações de geração de senha",
"Password length" : "Comprimento da senha",
- "Minimum amount of digits" : "Tamanho mínimo",
+ "Minimum amount of digits" : "Quantidade mínima de dígitos",
"Use uppercase letters" : "Usar letras maiúsculas",
"Use lowercase letters" : "Usar letras minúsculas",
"Use numbers" : "Usar números",
@@ -136,7 +140,11 @@
"Save keys" : "Salvar chaves",
"Generate sharing keys" : "Gerar chaves de compartilhamento",
"Generating sharing keys" : "Gerando chaves de compartilhamento",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "A ferramenta de senha irá escanear sua senha, calcular o tempo médio para quebrá-la e listar aquelas que estão abaixo do limiar",
"Minimum password stength" : "Força mínima da senha",
+ "Start scan" : "Iniciar escaneamento",
+ "Result" : "Resultado",
+ "A total of {{scan_result}} weak credentials were found." : "{{scan_result}} credenciais fracas foram encontradas.",
"Score" : "Pontuação",
"Action" : "Ação",
"Search users or groups..." : "Pesquisar usuários ou grupos...",
@@ -171,7 +179,7 @@
"Match sequence" : "Sequência de correspondência",
"See match sequence" : "Ver sequência de correspondência",
"Pattern" : "Padrão",
- "Matched word" : "Palavra combinada",
+ "Matched word" : "Palavra correspondente",
"Dictionary name" : "Nome do dicionário",
"Rank" : "Classificação",
"Reversed" : "Invertido",
@@ -200,7 +208,7 @@
"Account" : "Conta",
"Password" : "Senha",
"OTP" : "OTP",
- "E-mail" : "Email",
+ "E-mail" : "E-mail",
"URL" : "URL",
"Notes" : "Anotações",
"Expire time" : "Data de expiração",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Voltar para os cofres",
"Please input the password for" : "Por favor entre uma senha para",
"Set this vault as default." : "Configure esse cofre como padrão.",
- "Logout of this vault automatically after: " : "Efetue o logout desta solicitação logo após:",
+ "Log into this vault automatically." : "Entre neste cofre automaticamente.",
+ "Logout of this vault automatically after: " : "Efetue o logout deste cofre automaticamente após:",
"Decrypt vault" : "Descriptografar o cofre",
"Seems you lost the vault password and you're unable to login." : "Parece que você perdeu a senha do cofre e não consegue fazer login.",
+ "If you want this vault to be removed you can request that here." : "Se quiser que este cofre seja excluído, pode solicitar isso aqui.",
+ "An admin then accepts to the request (or not)" : "Um administrador então aceita (ou não) a solicitação",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Após o administrador destruir o cofre, todas as credenciais dentro serão perdidas",
"Reason to request deletion (optional):" : "Motivo para solicitar a exclusão (opcional):",
"Request vault destruction" : "Solicitar a destruição do cofre",
"Yes, request an admin to destroy this vault" : "Sim, solicitar a um administrador para destruir este cofre",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s compartilhou \"%s\" com você. Clique aqui para aceitar",
"%s has declined your share request for \"%s\"." : "%s recusou sua solicitação de compartilhamento de \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s aceitou sua solicitação de compartilhamento para \"%s\".",
- "Unable to get version info" : "Não é possível obter informações sobre a versão",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Não foi possível obter informações sobre a versão",
"Passman Settings" : "Configurações do Passman",
"Github version:" : "Versão Github:",
+ "A newer version of Passman is available" : "Uma nova versão do Passman está disponível",
"Password sharing" : "Compartilhamento de senha",
"Credential mover" : "Movimentação de credenciais",
"Vault destruction requests" : "Solicitações de destruição de cofres",
"Check for new versions" : "Verificar novas versões",
"Enable HTTPS check" : "Ativar verificação HTTPS",
"Disable context menu" : "Desativar menu de contexto",
+ "Disable JavaScript debugger" : "Desabilitar a depuração JavaScript",
"Allow users on this server to share passwords with a link" : "Permitir que usuários neste servidor compartilhem senhas com um link",
"Allow users on this server to share passwords with other users" : "Permitir que usuários neste servidor compartilhem senhas com outros usuários",
"Move credentials from one account to another" : "Mover credenciais de uma conta para outra",
@@ -298,12 +313,12 @@
"Destination account" : "Conta de destino",
"Credentials moved!" : "Credenciais movidas!",
"Requests to destroy vault" : "Pedidos para destruir cofre",
- "Request ID" : "Requisitar ID",
+ "Request ID" : "Solicitar ID",
"Requested by" : "Requerido por",
"Reason" : "Razão",
"Connection to server lost" : "Conexão perdida com o servidor",
"Problem loading page, reloading in 5 seconds" : "Problema ao carregar a página, recarregando em 5 segundos",
- "Saving..." : "Pesquisando...",
+ "Saving..." : "Salvando...",
"Dismiss" : "Descartar",
"seconds ago" : "segundos atras"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
diff --git a/l10n/ru.js b/l10n/ru.js
index 33915815..2adb99bc 100644
--- a/l10n/ru.js
+++ b/l10n/ru.js
@@ -17,7 +17,7 @@ OC.L10N.register(
"Credential recovered" : "Запись восстановлена",
"Credential destroyed" : "Учетные данные уничтожены",
"Error downloading file, you probably don't have enough permissions" : "Ошибка скачивания файла, возможно у вас не достаточно прав доступа",
- "Invalid QR code" : "Неверный код QR",
+ "Invalid QR code" : "Неверный QR код",
"Starting export" : "Начинается экспорт",
"Decrypting credentials" : "Расшифровка записей",
"Done" : "Готово",
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Разобрано {{num}} записей, начинается импорт",
"Importing" : "Импортируется",
"Start import" : "Начать импорт",
+ "Select CSV file" : "Выберите файл CVS",
+ "Parsed {{rows}} lines from CSV file" : "Разобрано {{rows}} строк из файла CSV",
"Skip first row" : "Пропустить первую строку",
"You need to assign the label field before you can start the import." : "Перед началом импорта необходимо присвоить метку полю",
+ "First 5 lines of the CSV are shown." : "Показаны первые 5 строк из файла CSV",
"Assign the proper fields to each column." : "Назначьте правильные поля каждому из столбцов",
"Example imported credential" : "Пример импортированной записи",
+ "Missing an importer? Try it with the generic CSV importer." : "Нужный тип отсутствует в списке? Попробуйте иморт из CSV.",
"Go back to importers." : "Вернуться к списку выбора.",
"Revision deleted" : "Версия удалена",
"Revision restored" : "Версия восстановлена",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Сохранить ключи",
"Generate sharing keys" : "Создать ключи общего доступа",
"Generating sharing keys" : "Ключи общего доступа создаются",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Инструмент паролей просканирует ваши пароли, вычислит среднее время для из взлома, и, если оно окажется ниже порогового значения, покажет их",
"Minimum password stength" : "Минимальная устойчивость пароля",
+ "Start scan" : "Запустить сканирование",
+ "Result" : "Результат",
+ "A total of {{scan_result}} weak credentials were found." : "Найдено записей со слабым паролем: {{scan_result}} .",
"Score" : "Баллов",
"Action" : "Действие",
"Search users or groups..." : "Поиск пользователя или групп...",
@@ -156,7 +164,7 @@ OC.L10N.register(
"Enable link sharing" : "Разрешить обмен ссылками",
"Share until date" : "Поделиться до даты",
"Expire after views" : "Истекает после просмотров",
- "Click share first" : "Сначала щелкните по \"поделиться\"",
+ "Click share first" : "Сначала нажмите на «поделиться»",
"Show files" : "Показать файлы",
"Details" : "Подробно",
"Hide details" : "Скрыть подробности",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Вернуться в хранилище",
"Please input the password for" : "Введите пароль для",
"Set this vault as default." : "Установить текущее хранилище хранилищем по-умолчанию.",
+ "Log into this vault automatically." : "Автоматически входить в это хранилище.",
"Logout of this vault automatically after: " : "Автоматически выходить из этого хранилища через:",
"Decrypt vault" : "Расшифровать хранилище",
"Seems you lost the vault password and you're unable to login." : "Вероятно, вы утеряли пароль хранилища. Вход не возможен.",
+ "If you want this vault to be removed you can request that here." : "Если вы хотите, чтобы это хранилище было удалено, вы можете запросить это здесь.",
+ "An admin then accepts to the request (or not)" : "После этого администратор примет Ваш запрос (или нет)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "После удаления хранилища администратором, все записи внутри хранилища будет потеряны.",
"Reason to request deletion (optional):" : "Причина запроса на удаление (необязательно):",
"Request vault destruction" : "Запросить уничтожение хранилища",
"Yes, request an admin to destroy this vault" : "Да, запросить удаление этого хранилища администратором.",
@@ -252,7 +264,7 @@ OC.L10N.register(
"Logout" : "Выйти",
"Donate" : "Пожертвовать",
"Someone has shared a credential with you." : "Кто-то поделился с вами записью.",
- "Click here to request it" : "Щелкните здесь для их получения.",
+ "Click here to request it" : "Нажмите здесь для их получения.",
"Loading..." : "Загрузка...",
"Awwhh.... credential not found. Maybe it expired" : "Запись не найдена. Возможно, закончился срок её действия.",
"Error while saving field" : "Ошибка при сохранении поля",
@@ -278,21 +290,24 @@ OC.L10N.register(
"%1$s has been shared with %2$s" : "%1$s поделились с %2$s",
"You received a share request for %1$s from %2$s" : "Вы получили запрос на предоставление общего доступа к %1$s от %2$s",
"%s has been shared with a link" : "к %s был предоставлен общий доступ ссылкой",
- "Your credential \"%s\" expired, click here to update the credential." : "Истёк срок действия записи \"%s\", щелкните здесь для обновления.",
+ "Your credential \"%s\" expired, click here to update the credential." : "Истёк срок действия записи «%s», нажмите здесь для обновления.",
"Remind me later" : "Напомнить позже",
"Ignore" : "Пропустить",
- "%s shared \"%s\" with you. Click here to accept" : "%s предоставил вам доступ к \"%s\". Щёлкните здесь что бы принять.",
- "%s has declined your share request for \"%s\"." : "%s отклонил ваш запрос на предоставление общего доступа к \"%s\".",
- "%s has accepted your share request for \"%s\"." : "%s принял ваш запрос на предоставление общего доступа к \"%s\".",
+ "%s shared \"%s\" with you. Click here to accept" : "%s предоставил вам доступ к «%s». Нажмите здесь что бы принять.",
+ "%s has declined your share request for \"%s\"." : "%s отклонил ваш запрос на предоставление общего доступа к «%s».",
+ "%s has accepted your share request for \"%s\"." : "%s принял ваш запрос на предоставление общего доступа к «%s».",
+ "Passman" : "Passman",
"Unable to get version info" : "Невозможно получить информацию о версии",
"Passman Settings" : "Настройки Passman",
"Github version:" : "Версия github:",
+ "A newer version of Passman is available" : "Доступна новая версия Passman",
"Password sharing" : "Общий доступ к паролями",
"Credential mover" : "Перемещение записей",
"Vault destruction requests" : "Запросы на удаление хранилищ",
"Check for new versions" : "Проверить наличие новых версий",
"Enable HTTPS check" : "Включить проверку HTTPS",
"Disable context menu" : "Отключить контекстное меню",
+ "Disable JavaScript debugger" : "Отключите отладчик JavaScript",
"Allow users on this server to share passwords with a link" : "Разрешить пользователям этого сервера делиться паролями посредством ссылки",
"Allow users on this server to share passwords with other users" : "Разрешить пользователям этого сервера делиться паролями с другими пользователями",
"Move credentials from one account to another" : "Перемещение записей между аккаунтами",
diff --git a/l10n/ru.json b/l10n/ru.json
index fb1e006c..17fa9eac 100644
--- a/l10n/ru.json
+++ b/l10n/ru.json
@@ -15,7 +15,7 @@
"Credential recovered" : "Запись восстановлена",
"Credential destroyed" : "Учетные данные уничтожены",
"Error downloading file, you probably don't have enough permissions" : "Ошибка скачивания файла, возможно у вас не достаточно прав доступа",
- "Invalid QR code" : "Неверный код QR",
+ "Invalid QR code" : "Неверный QR код",
"Starting export" : "Начинается экспорт",
"Decrypting credentials" : "Расшифровка записей",
"Done" : "Готово",
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "Разобрано {{num}} записей, начинается импорт",
"Importing" : "Импортируется",
"Start import" : "Начать импорт",
+ "Select CSV file" : "Выберите файл CVS",
+ "Parsed {{rows}} lines from CSV file" : "Разобрано {{rows}} строк из файла CSV",
"Skip first row" : "Пропустить первую строку",
"You need to assign the label field before you can start the import." : "Перед началом импорта необходимо присвоить метку полю",
+ "First 5 lines of the CSV are shown." : "Показаны первые 5 строк из файла CSV",
"Assign the proper fields to each column." : "Назначьте правильные поля каждому из столбцов",
"Example imported credential" : "Пример импортированной записи",
+ "Missing an importer? Try it with the generic CSV importer." : "Нужный тип отсутствует в списке? Попробуйте иморт из CSV.",
"Go back to importers." : "Вернуться к списку выбора.",
"Revision deleted" : "Версия удалена",
"Revision restored" : "Версия восстановлена",
@@ -136,7 +140,11 @@
"Save keys" : "Сохранить ключи",
"Generate sharing keys" : "Создать ключи общего доступа",
"Generating sharing keys" : "Ключи общего доступа создаются",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Инструмент паролей просканирует ваши пароли, вычислит среднее время для из взлома, и, если оно окажется ниже порогового значения, покажет их",
"Minimum password stength" : "Минимальная устойчивость пароля",
+ "Start scan" : "Запустить сканирование",
+ "Result" : "Результат",
+ "A total of {{scan_result}} weak credentials were found." : "Найдено записей со слабым паролем: {{scan_result}} .",
"Score" : "Баллов",
"Action" : "Действие",
"Search users or groups..." : "Поиск пользователя или групп...",
@@ -154,7 +162,7 @@
"Enable link sharing" : "Разрешить обмен ссылками",
"Share until date" : "Поделиться до даты",
"Expire after views" : "Истекает после просмотров",
- "Click share first" : "Сначала щелкните по \"поделиться\"",
+ "Click share first" : "Сначала нажмите на «поделиться»",
"Show files" : "Показать файлы",
"Details" : "Подробно",
"Hide details" : "Скрыть подробности",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Вернуться в хранилище",
"Please input the password for" : "Введите пароль для",
"Set this vault as default." : "Установить текущее хранилище хранилищем по-умолчанию.",
+ "Log into this vault automatically." : "Автоматически входить в это хранилище.",
"Logout of this vault automatically after: " : "Автоматически выходить из этого хранилища через:",
"Decrypt vault" : "Расшифровать хранилище",
"Seems you lost the vault password and you're unable to login." : "Вероятно, вы утеряли пароль хранилища. Вход не возможен.",
+ "If you want this vault to be removed you can request that here." : "Если вы хотите, чтобы это хранилище было удалено, вы можете запросить это здесь.",
+ "An admin then accepts to the request (or not)" : "После этого администратор примет Ваш запрос (или нет)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "После удаления хранилища администратором, все записи внутри хранилища будет потеряны.",
"Reason to request deletion (optional):" : "Причина запроса на удаление (необязательно):",
"Request vault destruction" : "Запросить уничтожение хранилища",
"Yes, request an admin to destroy this vault" : "Да, запросить удаление этого хранилища администратором.",
@@ -250,7 +262,7 @@
"Logout" : "Выйти",
"Donate" : "Пожертвовать",
"Someone has shared a credential with you." : "Кто-то поделился с вами записью.",
- "Click here to request it" : "Щелкните здесь для их получения.",
+ "Click here to request it" : "Нажмите здесь для их получения.",
"Loading..." : "Загрузка...",
"Awwhh.... credential not found. Maybe it expired" : "Запись не найдена. Возможно, закончился срок её действия.",
"Error while saving field" : "Ошибка при сохранении поля",
@@ -276,21 +288,24 @@
"%1$s has been shared with %2$s" : "%1$s поделились с %2$s",
"You received a share request for %1$s from %2$s" : "Вы получили запрос на предоставление общего доступа к %1$s от %2$s",
"%s has been shared with a link" : "к %s был предоставлен общий доступ ссылкой",
- "Your credential \"%s\" expired, click here to update the credential." : "Истёк срок действия записи \"%s\", щелкните здесь для обновления.",
+ "Your credential \"%s\" expired, click here to update the credential." : "Истёк срок действия записи «%s», нажмите здесь для обновления.",
"Remind me later" : "Напомнить позже",
"Ignore" : "Пропустить",
- "%s shared \"%s\" with you. Click here to accept" : "%s предоставил вам доступ к \"%s\". Щёлкните здесь что бы принять.",
- "%s has declined your share request for \"%s\"." : "%s отклонил ваш запрос на предоставление общего доступа к \"%s\".",
- "%s has accepted your share request for \"%s\"." : "%s принял ваш запрос на предоставление общего доступа к \"%s\".",
+ "%s shared \"%s\" with you. Click here to accept" : "%s предоставил вам доступ к «%s». Нажмите здесь что бы принять.",
+ "%s has declined your share request for \"%s\"." : "%s отклонил ваш запрос на предоставление общего доступа к «%s».",
+ "%s has accepted your share request for \"%s\"." : "%s принял ваш запрос на предоставление общего доступа к «%s».",
+ "Passman" : "Passman",
"Unable to get version info" : "Невозможно получить информацию о версии",
"Passman Settings" : "Настройки Passman",
"Github version:" : "Версия github:",
+ "A newer version of Passman is available" : "Доступна новая версия Passman",
"Password sharing" : "Общий доступ к паролями",
"Credential mover" : "Перемещение записей",
"Vault destruction requests" : "Запросы на удаление хранилищ",
"Check for new versions" : "Проверить наличие новых версий",
"Enable HTTPS check" : "Включить проверку HTTPS",
"Disable context menu" : "Отключить контекстное меню",
+ "Disable JavaScript debugger" : "Отключите отладчик JavaScript",
"Allow users on this server to share passwords with a link" : "Разрешить пользователям этого сервера делиться паролями посредством ссылки",
"Allow users on this server to share passwords with other users" : "Разрешить пользователям этого сервера делиться паролями с другими пользователями",
"Move credentials from one account to another" : "Перемещение записей между аккаунтами",
diff --git a/l10n/sq.js b/l10n/sq.js
index c794f88e..e8eb5ee9 100644
--- a/l10n/sq.js
+++ b/l10n/sq.js
@@ -22,10 +22,15 @@ OC.L10N.register(
"Decrypting credentials" : "Duke shifruar kredencialet",
"Done" : "U bë",
"File read successfully!" : "Skedari u lexuar me sukses!",
+ "Follow the following steps to import your file" : "Ndiq hapat e mëposhtëm për të importuar skedarin",
"Credential has no label, skipping" : "Kredencialet nuk kan etiketë, anashkalohet",
"Adding {{credential}}" : "Duke shtuar {{credential}}",
"Added {{credential}}" : "Shtuar {{credential}}",
"Parsed {{num}} credentials, starting to import" : "Parsed {{num}} kredencialet, duke filluar importimin",
+ "Importing" : "Duke u importuar",
+ "Start import" : "Fillo importimin",
+ "Select CSV file" : "Zgjidh skedarin CSV",
+ "Skip first row" : "Kaloje rreshtin e parë",
"Revision deleted" : "Rishikimi u fshi",
"Revision restored" : "Rishikimi u Restaurua",
"Save in passman" : "Ruaj ne Passman",
@@ -47,6 +52,9 @@ OC.L10N.register(
"Credential shared" : "Kredencialet e shperndara",
"Saved!" : "U Ruajt!",
"Poor" : "I varfër",
+ "Weak" : "I dobët",
+ "Good" : "I mirë",
+ "Strong" : "I fortë",
"Toggle visibility" : "Shikim i Dyfisht",
"Copy to clipboard" : "Kopjo në dërrasë ",
"Copied to clipboard!" : "U kopjua në dërrasë",
@@ -171,26 +179,100 @@ OC.L10N.register(
"Edit" : "Përpunoni",
"Delete" : "Fshi",
"Share" : "Ndani me të tjerët",
+ "Recover" : "Shërim",
+ "Destroy" : "Shkatërro",
+ "Use regex" : "Përdor shprehje të rregullt",
+ "You have incoming share requests." : "Ju keni kërkesa hyrëse për shpërndarje",
+ "Permissions" : "Lejet",
+ "Received from" : "Marrë nga",
"Date" : "Data",
"Accept" : "Prano",
+ "Decline" : "Rënie",
+ "You have {{session_time}} left before logout." : "Ju keni {{kohë_sesioni}} të mbetur para darljes.",
+ "Last accessed" : "I aksesuar së fundmi",
"Never" : "Asnjëherë",
+ "No vaults found, why not create one?" : "Asnjë kasafortë e gjetur, pse nuk krijoni një?",
+ "Password strength must be at least: {{strength}}" : "Fuqia e fjalëkalimit duhet të jetë të paktën: {{fuqi}}",
+ "Please give your new vault a name." : "Ju lutemi jepini kasafortës suaj një emër",
+ "Repeat vault password" : "Përsërit fjalëkalimin e kasafortës",
+ "Create vault" : "Krijo kasafortë",
+ "Go back to vaults" : "Shko prapa tek kasafortët",
+ "Please input the password for" : "Ju lutemi fusni fjalëkalimet për",
+ "Set this vault as default." : "Vendos këtë kasafortë si të parazgjedhur",
+ "Log into this vault automatically." : "Identifikohu në këtë kasafortë automatikisht.",
+ "Logout of this vault automatically after: " : "Dil nga kjo kasafortë automatikisht pas:",
+ "Decrypt vault" : "Dikripto kasafortën",
+ "Seems you lost the vault password and you're unable to login." : "Duket sikur keni humbur fjalëkalimin e kasafortës and ju nuk jeni në gjendje të hyni.",
+ "If you want this vault to be removed you can request that here." : "Nqs doni ",
+ "An admin then accepts to the request (or not)" : "Një administrator ",
+ "Reason to request deletion (optional):" : "Arsye e fshirjes së kërkesës (opsionale):",
+ "Request vault destruction" : "Kërko shkatërrim kasaforte",
+ "Yes, request an admin to destroy this vault" : "Po, kërko një administrator për të shkatërruar këtë kasafortë",
+ "Cancel destruction request" : "Anulo kërkesën për shkatërrimin",
+ "Vault destruction requested" : "Shkatërrimi i kasafortësi i kërkuar",
+ "Request removed" : "Kërkesa u hoq",
+ "Destruction request pending" : "Kërkesa për shkatërrim në pritje",
+ "Warning! Adding credentials over http can be insecure!" : "Paralajmërim! Shtimi i kredencialeve përmes http mund të jetë jo i sigurtë!",
+ "Logged in to {{vault_name}}" : "Hyrë ne {{emri_kasafortës}}",
+ "Change vault" : "Ndrysho kasafortë",
"Deleted credentials" : "Kredencialet e fshira",
"Logout" : "Dil",
"Donate" : "Dhuroni",
+ "Someone has shared a credential with you." : "Dikush ka ndarë me ty një kredencial",
"Click here to request it" : "Klikoni këtu për ta porositur atë",
"Loading..." : "Po ngarkohet",
"Awwhh.... credential not found. Maybe it expired" : "Awwhh... kredenciali nuk u gjet. Ndoshta i ka mbaruar afati",
+ "Error while saving field" : "Gabim gjatë ruajtjes së fushës",
+ "A Passman item has been created, modified or deleted" : "Një artikull Passman-i është krijuar, modifikuar ose fshirë",
+ "A Passman item has expired" : "Një artikull Passman-i ka skaduar",
+ "A Passman item has been shared" : "Një artikull Passman-i është shpërndarë",
+ "A Passman item has been renamed" : "Një artikull Passman-i është riemëruar",
"%1$s has been created by %2$s" : "%1$s është krijuar nga %2$s",
"You created %1$s" : "Ju krijuat %1$s",
"%1$s has been updated by %2$s" : "%1$s është përditësuar nga %2$s",
"You updated %1$s" : "Ju përditësuat %1$s",
+ "%2$s has revised %1$s to the revision of %3$s" : "%2$ska korrigjuar %1$snë versionin e %3$s",
+ "You reverted %1$s back to the revision of %3$s" : "Ju kthyhet%1$s prapa në versionin e %3$s",
"%3$s has renamed %1$s to %2$s" : "%3$s riemëroi %1$s në %2$s",
"You renamed %1$s to %2$s" : "Ju riemëruat %1$s në %2$s",
"%1$s has been deleted by %2$s" : "%1$s është fshirë nga %2$s",
"You deleted %1$s" : "Fshitë %1$s",
+ "%1$s has been recovered by %2$s" : "%1$sështë rimarrë nga %2$s",
+ "You recovered %1$s" : "Ju rimorët %1$s",
+ "%1$s has been permanently deleted by %2$s" : "%1$sështë fshirë përgjithmon nga %2$s",
+ "You permanently deleted %1$s" : "Ju fshitë përgjithmon %1$s",
"The password of %1$s has expired, renew it now." : "Fjalëkalimi i %1$s skadoi, rinovojeni tani. ",
+ "%1$s has been shared with %2$s" : "%1$sështë ndar me %2$s",
+ "You received a share request for %1$s from %2$s" : "Ju morët një kërkesë për ndarje për %1$snga %2$s",
+ "%s has been shared with a link" : "%sështë ndar me një link",
"Your credential \"%s\" expired, click here to update the credential." : "Kredenciali juaj \"%s\" skadoi, klikoni këtu për të përditësuar kredencialin.",
"Remind me later" : "Kujtomë më vonë",
+ "Ignore" : "Injoro",
+ "%s shared \"%s\" with you. Click here to accept" : "%s ndau\"%s\" me ju. Kliko këtu pë ta pranuar",
+ "%s has declined your share request for \"%s\"." : "%s ka refuzuar të ndaj kërkesën për \"%s\".",
+ "%s has accepted your share request for \"%s\"." : "%ska pranuar kërkesën tuaj për shpërndarjen e \"%s\"",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Nuk ishim në gjëndje të merrnim informcion mbi versionin",
+ "Passman Settings" : "Konfigurimet e Passman",
+ "Github version:" : "Versioni i Github:",
+ "A newer version of Passman is available" : "Një version i ri i Passman është i gatshëm",
+ "Password sharing" : "Ndarja e fjalëkalimeve",
+ "Credential mover" : "Lëvizësi i kredencialeve",
+ "Vault destruction requests" : "Kërkesa për shkatërrimin e kasafortës",
+ "Check for new versions" : "Kontrollo për versione të reja",
+ "Enable HTTPS check" : "Aktivizo kontrollin e HTTPS ",
+ "Disable context menu" : "Ç'aktivizo menun e kontekstit",
+ "Disable JavaScript debugger" : "Çaktivizo Zbuluesin e Gabimeve të JavaScript",
+ "Allow users on this server to share passwords with a link" : "Lejo përdoruesit në këtë server të ndajnë fjalëkalimet me një link",
+ "Allow users on this server to share passwords with other users" : "Lejo përdoruesit në këtë server të ndajn fjalëkalimet me përdoruesit e tjerë",
+ "Move credentials from one account to another" : "Lëvizi kredencialet nga një llogari te tjetra",
+ "Source account" : "Llogaria burim",
+ "Destination account" : "Llogaria destinacion",
+ "Credentials moved!" : "Kredencialet u lëvizën!",
+ "Requests to destroy vault" : "Kërkesa për të shkatërruar kasafortën",
+ "Request ID" : "Kërko ID",
+ "Requested by" : "U kërkua nga",
+ "Reason" : "Arsyeja",
"Connection to server lost" : "Lidhja me serverin u shkëput",
"Problem loading page, reloading in 5 seconds" : "Gabim në ngarkimin e faqes, do të ringarkohet pas 5 sekondash",
"Saving..." : "Po ruhet …",
diff --git a/l10n/sq.json b/l10n/sq.json
index 7178b848..2367e375 100644
--- a/l10n/sq.json
+++ b/l10n/sq.json
@@ -20,10 +20,15 @@
"Decrypting credentials" : "Duke shifruar kredencialet",
"Done" : "U bë",
"File read successfully!" : "Skedari u lexuar me sukses!",
+ "Follow the following steps to import your file" : "Ndiq hapat e mëposhtëm për të importuar skedarin",
"Credential has no label, skipping" : "Kredencialet nuk kan etiketë, anashkalohet",
"Adding {{credential}}" : "Duke shtuar {{credential}}",
"Added {{credential}}" : "Shtuar {{credential}}",
"Parsed {{num}} credentials, starting to import" : "Parsed {{num}} kredencialet, duke filluar importimin",
+ "Importing" : "Duke u importuar",
+ "Start import" : "Fillo importimin",
+ "Select CSV file" : "Zgjidh skedarin CSV",
+ "Skip first row" : "Kaloje rreshtin e parë",
"Revision deleted" : "Rishikimi u fshi",
"Revision restored" : "Rishikimi u Restaurua",
"Save in passman" : "Ruaj ne Passman",
@@ -45,6 +50,9 @@
"Credential shared" : "Kredencialet e shperndara",
"Saved!" : "U Ruajt!",
"Poor" : "I varfër",
+ "Weak" : "I dobët",
+ "Good" : "I mirë",
+ "Strong" : "I fortë",
"Toggle visibility" : "Shikim i Dyfisht",
"Copy to clipboard" : "Kopjo në dërrasë ",
"Copied to clipboard!" : "U kopjua në dërrasë",
@@ -169,26 +177,100 @@
"Edit" : "Përpunoni",
"Delete" : "Fshi",
"Share" : "Ndani me të tjerët",
+ "Recover" : "Shërim",
+ "Destroy" : "Shkatërro",
+ "Use regex" : "Përdor shprehje të rregullt",
+ "You have incoming share requests." : "Ju keni kërkesa hyrëse për shpërndarje",
+ "Permissions" : "Lejet",
+ "Received from" : "Marrë nga",
"Date" : "Data",
"Accept" : "Prano",
+ "Decline" : "Rënie",
+ "You have {{session_time}} left before logout." : "Ju keni {{kohë_sesioni}} të mbetur para darljes.",
+ "Last accessed" : "I aksesuar së fundmi",
"Never" : "Asnjëherë",
+ "No vaults found, why not create one?" : "Asnjë kasafortë e gjetur, pse nuk krijoni një?",
+ "Password strength must be at least: {{strength}}" : "Fuqia e fjalëkalimit duhet të jetë të paktën: {{fuqi}}",
+ "Please give your new vault a name." : "Ju lutemi jepini kasafortës suaj një emër",
+ "Repeat vault password" : "Përsërit fjalëkalimin e kasafortës",
+ "Create vault" : "Krijo kasafortë",
+ "Go back to vaults" : "Shko prapa tek kasafortët",
+ "Please input the password for" : "Ju lutemi fusni fjalëkalimet për",
+ "Set this vault as default." : "Vendos këtë kasafortë si të parazgjedhur",
+ "Log into this vault automatically." : "Identifikohu në këtë kasafortë automatikisht.",
+ "Logout of this vault automatically after: " : "Dil nga kjo kasafortë automatikisht pas:",
+ "Decrypt vault" : "Dikripto kasafortën",
+ "Seems you lost the vault password and you're unable to login." : "Duket sikur keni humbur fjalëkalimin e kasafortës and ju nuk jeni në gjendje të hyni.",
+ "If you want this vault to be removed you can request that here." : "Nqs doni ",
+ "An admin then accepts to the request (or not)" : "Një administrator ",
+ "Reason to request deletion (optional):" : "Arsye e fshirjes së kërkesës (opsionale):",
+ "Request vault destruction" : "Kërko shkatërrim kasaforte",
+ "Yes, request an admin to destroy this vault" : "Po, kërko një administrator për të shkatërruar këtë kasafortë",
+ "Cancel destruction request" : "Anulo kërkesën për shkatërrimin",
+ "Vault destruction requested" : "Shkatërrimi i kasafortësi i kërkuar",
+ "Request removed" : "Kërkesa u hoq",
+ "Destruction request pending" : "Kërkesa për shkatërrim në pritje",
+ "Warning! Adding credentials over http can be insecure!" : "Paralajmërim! Shtimi i kredencialeve përmes http mund të jetë jo i sigurtë!",
+ "Logged in to {{vault_name}}" : "Hyrë ne {{emri_kasafortës}}",
+ "Change vault" : "Ndrysho kasafortë",
"Deleted credentials" : "Kredencialet e fshira",
"Logout" : "Dil",
"Donate" : "Dhuroni",
+ "Someone has shared a credential with you." : "Dikush ka ndarë me ty një kredencial",
"Click here to request it" : "Klikoni këtu për ta porositur atë",
"Loading..." : "Po ngarkohet",
"Awwhh.... credential not found. Maybe it expired" : "Awwhh... kredenciali nuk u gjet. Ndoshta i ka mbaruar afati",
+ "Error while saving field" : "Gabim gjatë ruajtjes së fushës",
+ "A Passman item has been created, modified or deleted" : "Një artikull Passman-i është krijuar, modifikuar ose fshirë",
+ "A Passman item has expired" : "Një artikull Passman-i ka skaduar",
+ "A Passman item has been shared" : "Një artikull Passman-i është shpërndarë",
+ "A Passman item has been renamed" : "Një artikull Passman-i është riemëruar",
"%1$s has been created by %2$s" : "%1$s është krijuar nga %2$s",
"You created %1$s" : "Ju krijuat %1$s",
"%1$s has been updated by %2$s" : "%1$s është përditësuar nga %2$s",
"You updated %1$s" : "Ju përditësuat %1$s",
+ "%2$s has revised %1$s to the revision of %3$s" : "%2$ska korrigjuar %1$snë versionin e %3$s",
+ "You reverted %1$s back to the revision of %3$s" : "Ju kthyhet%1$s prapa në versionin e %3$s",
"%3$s has renamed %1$s to %2$s" : "%3$s riemëroi %1$s në %2$s",
"You renamed %1$s to %2$s" : "Ju riemëruat %1$s në %2$s",
"%1$s has been deleted by %2$s" : "%1$s është fshirë nga %2$s",
"You deleted %1$s" : "Fshitë %1$s",
+ "%1$s has been recovered by %2$s" : "%1$sështë rimarrë nga %2$s",
+ "You recovered %1$s" : "Ju rimorët %1$s",
+ "%1$s has been permanently deleted by %2$s" : "%1$sështë fshirë përgjithmon nga %2$s",
+ "You permanently deleted %1$s" : "Ju fshitë përgjithmon %1$s",
"The password of %1$s has expired, renew it now." : "Fjalëkalimi i %1$s skadoi, rinovojeni tani. ",
+ "%1$s has been shared with %2$s" : "%1$sështë ndar me %2$s",
+ "You received a share request for %1$s from %2$s" : "Ju morët një kërkesë për ndarje për %1$snga %2$s",
+ "%s has been shared with a link" : "%sështë ndar me një link",
"Your credential \"%s\" expired, click here to update the credential." : "Kredenciali juaj \"%s\" skadoi, klikoni këtu për të përditësuar kredencialin.",
"Remind me later" : "Kujtomë më vonë",
+ "Ignore" : "Injoro",
+ "%s shared \"%s\" with you. Click here to accept" : "%s ndau\"%s\" me ju. Kliko këtu pë ta pranuar",
+ "%s has declined your share request for \"%s\"." : "%s ka refuzuar të ndaj kërkesën për \"%s\".",
+ "%s has accepted your share request for \"%s\"." : "%ska pranuar kërkesën tuaj për shpërndarjen e \"%s\"",
+ "Passman" : "Passman",
+ "Unable to get version info" : "Nuk ishim në gjëndje të merrnim informcion mbi versionin",
+ "Passman Settings" : "Konfigurimet e Passman",
+ "Github version:" : "Versioni i Github:",
+ "A newer version of Passman is available" : "Një version i ri i Passman është i gatshëm",
+ "Password sharing" : "Ndarja e fjalëkalimeve",
+ "Credential mover" : "Lëvizësi i kredencialeve",
+ "Vault destruction requests" : "Kërkesa për shkatërrimin e kasafortës",
+ "Check for new versions" : "Kontrollo për versione të reja",
+ "Enable HTTPS check" : "Aktivizo kontrollin e HTTPS ",
+ "Disable context menu" : "Ç'aktivizo menun e kontekstit",
+ "Disable JavaScript debugger" : "Çaktivizo Zbuluesin e Gabimeve të JavaScript",
+ "Allow users on this server to share passwords with a link" : "Lejo përdoruesit në këtë server të ndajnë fjalëkalimet me një link",
+ "Allow users on this server to share passwords with other users" : "Lejo përdoruesit në këtë server të ndajn fjalëkalimet me përdoruesit e tjerë",
+ "Move credentials from one account to another" : "Lëvizi kredencialet nga një llogari te tjetra",
+ "Source account" : "Llogaria burim",
+ "Destination account" : "Llogaria destinacion",
+ "Credentials moved!" : "Kredencialet u lëvizën!",
+ "Requests to destroy vault" : "Kërkesa për të shkatërruar kasafortën",
+ "Request ID" : "Kërko ID",
+ "Requested by" : "U kërkua nga",
+ "Reason" : "Arsyeja",
"Connection to server lost" : "Lidhja me serverin u shkëput",
"Problem loading page, reloading in 5 seconds" : "Gabim në ngarkimin e faqes, do të ringarkohet pas 5 sekondash",
"Saving..." : "Po ruhet …",
diff --git a/l10n/sv.js b/l10n/sv.js
index 6795dde1..dc0337d1 100644
--- a/l10n/sv.js
+++ b/l10n/sv.js
@@ -30,8 +30,11 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "Analyserade {{num}} uppgifter, börjar importera",
"Importing" : "Importerar",
"Start import" : "Påbörja importering",
+ "Select CSV file" : "Välj CSV-fil",
"Skip first row" : "Hoppa över första raden",
"You need to assign the label field before you can start the import." : "Du måste fylla i namnfältet innan du kan importera",
+ "Assign the proper fields to each column." : "Ange rätt fält till varje kolumm.",
+ "Go back to importers." : "Gå tillbaka till importering.",
"Revision deleted" : "Granskning raderad",
"Revision restored" : "Granskning återställd",
"Save in passman" : "Spara i passman",
@@ -79,6 +82,7 @@ OC.L10N.register(
"Filename" : "Filnamn",
"Upload date" : "Uppladdningsdatum",
"Size" : "Storlek",
+ "Upload or enter your OTP secret" : "Ladda upp eller ange din OTP-hemlighet",
"Current OTP settings" : "Nuvarande OTP-inställningar",
"Issuer" : "Utfärdare",
"Secret" : "Hemlighet",
@@ -134,7 +138,11 @@ OC.L10N.register(
"Save keys" : "Spara nycklar",
"Generate sharing keys" : "Generera delningsnycklar",
"Generating sharing keys" : "Genererar delningsnycklar",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Lösenordsverktyget kommer att skanna ditt lösenord, räkna ut genomsnittstiden för att knäcka det och lista de som är under tröskeln",
"Minimum password stength" : "Minsta lösenordsstyrka",
+ "Start scan" : "Påbörja skanning",
+ "Result" : "Resultat",
+ "A total of {{scan_result}} weak credentials were found." : "Totalt {{scan_result}} svaga lösenord hittades.",
"Score" : "Poäng",
"Action" : "Action",
"Search users or groups..." : "Sök användare och grupper...",
@@ -219,6 +227,7 @@ OC.L10N.register(
"Accept" : "Acceptera",
"Decline" : "Neka",
"You have {{session_time}} left before logout." : "Du har {{session_time}} kvar innan du loggas ut automatiskt.",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Ditt valv har blivit låst i {{time}} pga {{tries}} misslyckade försök!",
"Last accessed" : "Senast öppnad",
"Never" : "Aldrig",
"No vaults found, why not create one?" : "Inga valv hittades, varför inte skapa ett?",
@@ -230,9 +239,20 @@ OC.L10N.register(
"Go back to vaults" : "Gå tillbaka till valv",
"Please input the password for" : "Vänligen ange lösenordet för",
"Set this vault as default." : "Sätt detta valv som standard.",
+ "Log into this vault automatically." : "Logga in i detta valv automatiskt.",
"Logout of this vault automatically after: " : "Logga ut från denna valv automatiskt efter:",
"Decrypt vault" : "Dekryptera valv",
+ "Seems you lost the vault password and you're unable to login." : "Det verkar som att du har glömt valv-lösenordet och lyckas inte logga in.",
+ "If you want this vault to be removed you can request that here." : "Om du vill att detta valv ska tas bort så kan du skicka en begäran om borttagning här.",
+ "An admin then accepts to the request (or not)" : "En administratör kommer sedan acceptera borttagningen (eller inte)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Efter att en administratör har raderat detta valv så kommer all data och information gå förlorad",
+ "Reason to request deletion (optional):" : "Anledning till begäran om borttagning (valfritt):",
+ "Request vault destruction" : "Begär borttagning av valv",
+ "Yes, request an admin to destroy this vault" : "Ja, begär borttagning av detta valv",
+ "Cancel destruction request" : "Avbryt begäran om borttagning av valv",
+ "Vault destruction requested" : "Ny begäran om borttagning av valv",
"Request removed" : "Förfrågan borttagen",
+ "Destruction request pending" : "Begäran om borttagning av valv väntar på svar",
"Warning! Adding credentials over http can be insecure!" : "Varning! Att lägga till uppgifter över \"http\" kan vara osäkert!",
"Logged in to {{vault_name}}" : "Inloggad på {{vault_name}}",
"Change vault" : "Byt valv",
@@ -272,10 +292,13 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s delade \"%s\" med dig. Klicka här för att acceptera",
"%s has declined your share request for \"%s\"." : "%s har nekat din delningsförfrågan av \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s har accepterad din delningsförfrågan av \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Det gick inte att hitta information om version",
"Passman Settings" : "Passman Inställningar",
"Github version:" : "Github version:",
+ "A newer version of Passman is available" : "Ny nyare version av Passman finns tillgänglig",
"Password sharing" : "Lösenordsdelning",
+ "Credential mover" : "Förflyttning av uppgifter",
"Vault destruction requests" : "Förfrågningar om att radera valv",
"Check for new versions" : "Sök efter ny version",
"Enable HTTPS check" : "Aktivera HTTPS-kontroll",
diff --git a/l10n/sv.json b/l10n/sv.json
index 281fb935..b610f1dd 100644
--- a/l10n/sv.json
+++ b/l10n/sv.json
@@ -28,8 +28,11 @@
"Parsed {{num}} credentials, starting to import" : "Analyserade {{num}} uppgifter, börjar importera",
"Importing" : "Importerar",
"Start import" : "Påbörja importering",
+ "Select CSV file" : "Välj CSV-fil",
"Skip first row" : "Hoppa över första raden",
"You need to assign the label field before you can start the import." : "Du måste fylla i namnfältet innan du kan importera",
+ "Assign the proper fields to each column." : "Ange rätt fält till varje kolumm.",
+ "Go back to importers." : "Gå tillbaka till importering.",
"Revision deleted" : "Granskning raderad",
"Revision restored" : "Granskning återställd",
"Save in passman" : "Spara i passman",
@@ -77,6 +80,7 @@
"Filename" : "Filnamn",
"Upload date" : "Uppladdningsdatum",
"Size" : "Storlek",
+ "Upload or enter your OTP secret" : "Ladda upp eller ange din OTP-hemlighet",
"Current OTP settings" : "Nuvarande OTP-inställningar",
"Issuer" : "Utfärdare",
"Secret" : "Hemlighet",
@@ -132,7 +136,11 @@
"Save keys" : "Spara nycklar",
"Generate sharing keys" : "Generera delningsnycklar",
"Generating sharing keys" : "Genererar delningsnycklar",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Lösenordsverktyget kommer att skanna ditt lösenord, räkna ut genomsnittstiden för att knäcka det och lista de som är under tröskeln",
"Minimum password stength" : "Minsta lösenordsstyrka",
+ "Start scan" : "Påbörja skanning",
+ "Result" : "Resultat",
+ "A total of {{scan_result}} weak credentials were found." : "Totalt {{scan_result}} svaga lösenord hittades.",
"Score" : "Poäng",
"Action" : "Action",
"Search users or groups..." : "Sök användare och grupper...",
@@ -217,6 +225,7 @@
"Accept" : "Acceptera",
"Decline" : "Neka",
"You have {{session_time}} left before logout." : "Du har {{session_time}} kvar innan du loggas ut automatiskt.",
+ "Your vault has been locked for {{time}} because of {{tries}} failed attempts!" : "Ditt valv har blivit låst i {{time}} pga {{tries}} misslyckade försök!",
"Last accessed" : "Senast öppnad",
"Never" : "Aldrig",
"No vaults found, why not create one?" : "Inga valv hittades, varför inte skapa ett?",
@@ -228,9 +237,20 @@
"Go back to vaults" : "Gå tillbaka till valv",
"Please input the password for" : "Vänligen ange lösenordet för",
"Set this vault as default." : "Sätt detta valv som standard.",
+ "Log into this vault automatically." : "Logga in i detta valv automatiskt.",
"Logout of this vault automatically after: " : "Logga ut från denna valv automatiskt efter:",
"Decrypt vault" : "Dekryptera valv",
+ "Seems you lost the vault password and you're unable to login." : "Det verkar som att du har glömt valv-lösenordet och lyckas inte logga in.",
+ "If you want this vault to be removed you can request that here." : "Om du vill att detta valv ska tas bort så kan du skicka en begäran om borttagning här.",
+ "An admin then accepts to the request (or not)" : "En administratör kommer sedan acceptera borttagningen (eller inte)",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Efter att en administratör har raderat detta valv så kommer all data och information gå förlorad",
+ "Reason to request deletion (optional):" : "Anledning till begäran om borttagning (valfritt):",
+ "Request vault destruction" : "Begär borttagning av valv",
+ "Yes, request an admin to destroy this vault" : "Ja, begär borttagning av detta valv",
+ "Cancel destruction request" : "Avbryt begäran om borttagning av valv",
+ "Vault destruction requested" : "Ny begäran om borttagning av valv",
"Request removed" : "Förfrågan borttagen",
+ "Destruction request pending" : "Begäran om borttagning av valv väntar på svar",
"Warning! Adding credentials over http can be insecure!" : "Varning! Att lägga till uppgifter över \"http\" kan vara osäkert!",
"Logged in to {{vault_name}}" : "Inloggad på {{vault_name}}",
"Change vault" : "Byt valv",
@@ -270,10 +290,13 @@
"%s shared \"%s\" with you. Click here to accept" : "%s delade \"%s\" med dig. Klicka här för att acceptera",
"%s has declined your share request for \"%s\"." : "%s har nekat din delningsförfrågan av \"%s\".",
"%s has accepted your share request for \"%s\"." : "%s har accepterad din delningsförfrågan av \"%s\".",
+ "Passman" : "Passman",
"Unable to get version info" : "Det gick inte att hitta information om version",
"Passman Settings" : "Passman Inställningar",
"Github version:" : "Github version:",
+ "A newer version of Passman is available" : "Ny nyare version av Passman finns tillgänglig",
"Password sharing" : "Lösenordsdelning",
+ "Credential mover" : "Förflyttning av uppgifter",
"Vault destruction requests" : "Förfrågningar om att radera valv",
"Check for new versions" : "Sök efter ny version",
"Enable HTTPS check" : "Aktivera HTTPS-kontroll",
diff --git a/l10n/tr.js b/l10n/tr.js
index 978d2ae6..27b8b5b4 100644
--- a/l10n/tr.js
+++ b/l10n/tr.js
@@ -3,7 +3,7 @@ OC.L10N.register(
{
"Passwords" : "Parolalar",
"Generating sharing keys ( %step / 2)" : "Paylaşım anahtarları oluşturuluyor ( %step / 2)",
- "Incorrect vault password!" : "Kasa parolası hatalı!",
+ "Incorrect vault password!" : "Kasa parolası yanlış!",
"Passwords do not match" : "Parola ile onayı aynı değil",
"General" : "Genel",
"Custom Fields" : "Özel Alanlar",
@@ -30,10 +30,14 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "{{num}} kimlik doğrulama bilgisi işlendi. Alma işlemi başlatılıyor",
"Importing" : "Alınıyor",
"Start import" : "Alma işlemini başlat",
+ "Select CSV file" : "CSV dosyasını seçin",
+ "Parsed {{rows}} lines from CSV file" : "CSV dosyasındaki {{rows}} satır işlendi",
"Skip first row" : "İlk satır atlansın",
"You need to assign the label field before you can start the import." : "Alma işlemini başlatmadan önce etiket alanını ilişkilendirmelisiniz.",
+ "First 5 lines of the CSV are shown." : "CSV dosyasının ilk 5 satırı görüntüleniyor.",
"Assign the proper fields to each column." : "Sütunlara aktarılacak alanları eşleştirin.",
"Example imported credential" : "Örnek kimlik doğrulama bilgisi",
+ "Missing an importer? Try it with the generic CSV importer." : "Eksik bir alma uygulaması mı var? Genel CSV alma uygulamasını deneyin.",
"Go back to importers." : "Alma uygulamalarına dön.",
"Revision deleted" : "Sürüm silindi",
"Revision restored" : "Sürüm geri yüklendi",
@@ -138,7 +142,11 @@ OC.L10N.register(
"Save keys" : "Anahtarları kaydet",
"Generate sharing keys" : "Paylaşım anahtarlarını üret",
"Generating sharing keys" : "Paylaşım anahtarları üretiliyor",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Parola aracı parolanızı tarayarak, ortalama kırılma süresini hesaplar. Eşik değerinin altındaysa görüntülenir",
"Minimum password stength" : "Paroladaki en az karakter sayısı",
+ "Start scan" : "Taramayı Başlat",
+ "Result" : "Sonuç",
+ "A total of {{scan_result}} weak credentials were found." : "Toplam {{scan_result}} zayıf parola bulundu.",
"Score" : "Değerlendirme",
"Action" : "İşlem",
"Search users or groups..." : "Kullanıcı ya da grup ara...",
@@ -235,9 +243,13 @@ OC.L10N.register(
"Go back to vaults" : "Kasalara geri dön",
"Please input the password for" : "Lütfen şu kasanın parolasını yazın",
"Set this vault as default." : "Bu kasayı varsayılan yap.",
+ "Log into this vault automatically." : "Bu kasaya otomatik olarak oturum açılsın.",
"Logout of this vault automatically after: " : "Bu kasanın oturumu şu sürede otomatik olarak kapatılsın:",
"Decrypt vault" : "Deponun şifresini çöz",
"Seems you lost the vault password and you're unable to login." : "Depo parolanızı unutmuş ve oturum açamıyor gibi görünüyorsunuz.",
+ "If you want this vault to be removed you can request that here." : "Bu kasanın silinmesini istiyorsanız, buradan silme isteğinde bulunabilirsiniz.",
+ "An admin then accepts to the request (or not)" : "Bir yönetici isteğinizi kabul (ya da red) eder",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Yönetici kasanızı sildiğinde içindeki tüm kimlik doğrulama bilgileri silinir",
"Reason to request deletion (optional):" : "Silme isteği nedeni (isteğe bağlı):",
"Request vault destruction" : "Kasa silme isteği",
"Yes, request an admin to destroy this vault" : "Evet, bir yönetici bu kasayı silsin",
@@ -284,15 +296,18 @@ OC.L10N.register(
"%s shared \"%s\" with you. Click here to accept" : "%s sizinle \"%s\" ögesini paylaştı. Onaylamak için buraya tıklayın",
"%s has declined your share request for \"%s\"." : "%s, \"%s\" ögesini paylaşma isteğinizi reddetti.",
"%s has accepted your share request for \"%s\"." : "%s, \"%s\" ögesini paylaşma isteğinizi onayladı.",
+ "Passman" : "Passman",
"Unable to get version info" : "Sürüm bilgileri alınamadı",
"Passman Settings" : "Passman Ayarları",
"Github version:" : "Github sürümü:",
+ "A newer version of Passman is available" : "Yeni bir Passman sürümü yayınlanmış",
"Password sharing" : "Parola paylaşımı",
"Credential mover" : "Kimlik doğrulama bilgileri aktarıcı",
"Vault destruction requests" : "Kasa silme istekleri",
"Check for new versions" : "Yeni sürümler için tıklayın",
"Enable HTTPS check" : "HTTPS denetimi yapılsın",
"Disable context menu" : "Sağ tık menüsü devre dışı bırakılsın",
+ "Disable JavaScript debugger" : "JavaScript hata ayıklaması devre dışı bırakılsın",
"Allow users on this server to share passwords with a link" : "Bu sunucu üzerindeki kullanıcılar bağlantı ile parola paylaşabilsin",
"Allow users on this server to share passwords with other users" : "Bu sunucu üzerindeki kullanıcılar diğer kullanıcılar ile parola paylaşabilsin",
"Move credentials from one account to another" : "Kimlik doğrulama bilgilerini bir hesaptan diğerine aktar",
diff --git a/l10n/tr.json b/l10n/tr.json
index 35410bef..36f42cb7 100644
--- a/l10n/tr.json
+++ b/l10n/tr.json
@@ -1,7 +1,7 @@
{ "translations": {
"Passwords" : "Parolalar",
"Generating sharing keys ( %step / 2)" : "Paylaşım anahtarları oluşturuluyor ( %step / 2)",
- "Incorrect vault password!" : "Kasa parolası hatalı!",
+ "Incorrect vault password!" : "Kasa parolası yanlış!",
"Passwords do not match" : "Parola ile onayı aynı değil",
"General" : "Genel",
"Custom Fields" : "Özel Alanlar",
@@ -28,10 +28,14 @@
"Parsed {{num}} credentials, starting to import" : "{{num}} kimlik doğrulama bilgisi işlendi. Alma işlemi başlatılıyor",
"Importing" : "Alınıyor",
"Start import" : "Alma işlemini başlat",
+ "Select CSV file" : "CSV dosyasını seçin",
+ "Parsed {{rows}} lines from CSV file" : "CSV dosyasındaki {{rows}} satır işlendi",
"Skip first row" : "İlk satır atlansın",
"You need to assign the label field before you can start the import." : "Alma işlemini başlatmadan önce etiket alanını ilişkilendirmelisiniz.",
+ "First 5 lines of the CSV are shown." : "CSV dosyasının ilk 5 satırı görüntüleniyor.",
"Assign the proper fields to each column." : "Sütunlara aktarılacak alanları eşleştirin.",
"Example imported credential" : "Örnek kimlik doğrulama bilgisi",
+ "Missing an importer? Try it with the generic CSV importer." : "Eksik bir alma uygulaması mı var? Genel CSV alma uygulamasını deneyin.",
"Go back to importers." : "Alma uygulamalarına dön.",
"Revision deleted" : "Sürüm silindi",
"Revision restored" : "Sürüm geri yüklendi",
@@ -136,7 +140,11 @@
"Save keys" : "Anahtarları kaydet",
"Generate sharing keys" : "Paylaşım anahtarlarını üret",
"Generating sharing keys" : "Paylaşım anahtarları üretiliyor",
+ "The password tool will scan your password, calculate the average crack time and list those which are below the threshold" : "Parola aracı parolanızı tarayarak, ortalama kırılma süresini hesaplar. Eşik değerinin altındaysa görüntülenir",
"Minimum password stength" : "Paroladaki en az karakter sayısı",
+ "Start scan" : "Taramayı Başlat",
+ "Result" : "Sonuç",
+ "A total of {{scan_result}} weak credentials were found." : "Toplam {{scan_result}} zayıf parola bulundu.",
"Score" : "Değerlendirme",
"Action" : "İşlem",
"Search users or groups..." : "Kullanıcı ya da grup ara...",
@@ -233,9 +241,13 @@
"Go back to vaults" : "Kasalara geri dön",
"Please input the password for" : "Lütfen şu kasanın parolasını yazın",
"Set this vault as default." : "Bu kasayı varsayılan yap.",
+ "Log into this vault automatically." : "Bu kasaya otomatik olarak oturum açılsın.",
"Logout of this vault automatically after: " : "Bu kasanın oturumu şu sürede otomatik olarak kapatılsın:",
"Decrypt vault" : "Deponun şifresini çöz",
"Seems you lost the vault password and you're unable to login." : "Depo parolanızı unutmuş ve oturum açamıyor gibi görünüyorsunuz.",
+ "If you want this vault to be removed you can request that here." : "Bu kasanın silinmesini istiyorsanız, buradan silme isteğinde bulunabilirsiniz.",
+ "An admin then accepts to the request (or not)" : "Bir yönetici isteğinizi kabul (ya da red) eder",
+ "After an admin destroys this vault, all credentials inside will be lost" : "Yönetici kasanızı sildiğinde içindeki tüm kimlik doğrulama bilgileri silinir",
"Reason to request deletion (optional):" : "Silme isteği nedeni (isteğe bağlı):",
"Request vault destruction" : "Kasa silme isteği",
"Yes, request an admin to destroy this vault" : "Evet, bir yönetici bu kasayı silsin",
@@ -282,15 +294,18 @@
"%s shared \"%s\" with you. Click here to accept" : "%s sizinle \"%s\" ögesini paylaştı. Onaylamak için buraya tıklayın",
"%s has declined your share request for \"%s\"." : "%s, \"%s\" ögesini paylaşma isteğinizi reddetti.",
"%s has accepted your share request for \"%s\"." : "%s, \"%s\" ögesini paylaşma isteğinizi onayladı.",
+ "Passman" : "Passman",
"Unable to get version info" : "Sürüm bilgileri alınamadı",
"Passman Settings" : "Passman Ayarları",
"Github version:" : "Github sürümü:",
+ "A newer version of Passman is available" : "Yeni bir Passman sürümü yayınlanmış",
"Password sharing" : "Parola paylaşımı",
"Credential mover" : "Kimlik doğrulama bilgileri aktarıcı",
"Vault destruction requests" : "Kasa silme istekleri",
"Check for new versions" : "Yeni sürümler için tıklayın",
"Enable HTTPS check" : "HTTPS denetimi yapılsın",
"Disable context menu" : "Sağ tık menüsü devre dışı bırakılsın",
+ "Disable JavaScript debugger" : "JavaScript hata ayıklaması devre dışı bırakılsın",
"Allow users on this server to share passwords with a link" : "Bu sunucu üzerindeki kullanıcılar bağlantı ile parola paylaşabilsin",
"Allow users on this server to share passwords with other users" : "Bu sunucu üzerindeki kullanıcılar diğer kullanıcılar ile parola paylaşabilsin",
"Move credentials from one account to another" : "Kimlik doğrulama bilgilerini bir hesaptan diğerine aktar",
diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js
index 98c68545..4fe663c7 100644
--- a/l10n/zh_CN.js
+++ b/l10n/zh_CN.js
@@ -29,6 +29,8 @@ OC.L10N.register(
"Parsed {{num}} credentials, starting to import" : "解析 {{num}} 个凭据,开始导入",
"Importing" : "正在导入",
"Start import" : "开始导入",
+ "Select CSV file" : "选择 CSV 文件",
+ "Skip first row" : "跳转到第一行",
"Go back to importers." : "返回导入器。",
"Revision deleted" : "修订已删除",
"Revision restored" : "修订已恢复",
@@ -133,6 +135,8 @@ OC.L10N.register(
"Generate sharing keys" : "生成分享密码",
"Generating sharing keys" : "生成分享密码中",
"Minimum password stength" : "最小密码长度",
+ "Start scan" : "开始扫描",
+ "Result" : "结果",
"Score" : "评分",
"Action" : "操作",
"Search users or groups..." : "搜索用户或组...",
@@ -215,8 +219,15 @@ OC.L10N.register(
"You have {{session_time}} left before logout." : "你剩 {{session_time}} 在注销前.",
"Last accessed" : "上次访问",
"Never" : "从不",
+ "Create vault" : "创建保险箱",
"Please input the password for" : "请输入密码为",
+ "Set this vault as default." : "将此保险箱设为默认",
+ "Log into this vault automatically." : "自动登入保险箱",
+ "Logout of this vault automatically after: " : "自动退出保险箱",
+ "Decrypt vault" : "加密保险箱",
"Logged in to {{vault_name}}" : "计入日志到 {{vault_name}}",
+ "Change vault" : "更改保险箱",
+ "Deleted credentials" : "删除凭据",
"Logout" : "注销",
"Donate" : "捐助",
"Loading..." : "加载中",
@@ -239,6 +250,7 @@ OC.L10N.register(
"%s has been shared with a link" : "%s 已被共享通过链接",
"Remind me later" : "以后提醒我 ",
"Ignore" : "忽略",
+ "Passman" : "Passman",
"Unable to get version info" : "无法获取版本信息 ",
"Passman Settings" : "Passman 设置",
"Github version:" : "GitHub的版本: ",
@@ -247,6 +259,7 @@ OC.L10N.register(
"Disable context menu" : "禁用上下文菜单 ",
"Allow users on this server to share passwords with a link" : "允许此服务器上的用户通过链接共享密码 ",
"Allow users on this server to share passwords with other users" : "允许此服务器上的用户与其他用户共享密码 ",
+ "Request ID" : "请求 ID",
"Reason" : "原因",
"Connection to server lost" : "与服务器的连接断开",
"Problem loading page, reloading in 5 seconds" : "加载页面出现问题, 在 5 秒内重新加载",
diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json
index 89f84c56..e6886867 100644
--- a/l10n/zh_CN.json
+++ b/l10n/zh_CN.json
@@ -27,6 +27,8 @@
"Parsed {{num}} credentials, starting to import" : "解析 {{num}} 个凭据,开始导入",
"Importing" : "正在导入",
"Start import" : "开始导入",
+ "Select CSV file" : "选择 CSV 文件",
+ "Skip first row" : "跳转到第一行",
"Go back to importers." : "返回导入器。",
"Revision deleted" : "修订已删除",
"Revision restored" : "修订已恢复",
@@ -131,6 +133,8 @@
"Generate sharing keys" : "生成分享密码",
"Generating sharing keys" : "生成分享密码中",
"Minimum password stength" : "最小密码长度",
+ "Start scan" : "开始扫描",
+ "Result" : "结果",
"Score" : "评分",
"Action" : "操作",
"Search users or groups..." : "搜索用户或组...",
@@ -213,8 +217,15 @@
"You have {{session_time}} left before logout." : "你剩 {{session_time}} 在注销前.",
"Last accessed" : "上次访问",
"Never" : "从不",
+ "Create vault" : "创建保险箱",
"Please input the password for" : "请输入密码为",
+ "Set this vault as default." : "将此保险箱设为默认",
+ "Log into this vault automatically." : "自动登入保险箱",
+ "Logout of this vault automatically after: " : "自动退出保险箱",
+ "Decrypt vault" : "加密保险箱",
"Logged in to {{vault_name}}" : "计入日志到 {{vault_name}}",
+ "Change vault" : "更改保险箱",
+ "Deleted credentials" : "删除凭据",
"Logout" : "注销",
"Donate" : "捐助",
"Loading..." : "加载中",
@@ -237,6 +248,7 @@
"%s has been shared with a link" : "%s 已被共享通过链接",
"Remind me later" : "以后提醒我 ",
"Ignore" : "忽略",
+ "Passman" : "Passman",
"Unable to get version info" : "无法获取版本信息 ",
"Passman Settings" : "Passman 设置",
"Github version:" : "GitHub的版本: ",
@@ -245,6 +257,7 @@
"Disable context menu" : "禁用上下文菜单 ",
"Allow users on this server to share passwords with a link" : "允许此服务器上的用户通过链接共享密码 ",
"Allow users on this server to share passwords with other users" : "允许此服务器上的用户与其他用户共享密码 ",
+ "Request ID" : "请求 ID",
"Reason" : "原因",
"Connection to server lost" : "与服务器的连接断开",
"Problem loading page, reloading in 5 seconds" : "加载页面出现问题, 在 5 秒内重新加载",
diff --git a/templates/views/partials/forms/settings/general_settings.html b/templates/views/partials/forms/settings/general_settings.html
index d5885470..9792e5ec 100644
--- a/templates/views/partials/forms/settings/general_settings.html
+++ b/templates/views/partials/forms/settings/general_settings.html
@@ -12,8 +12,7 @@
<label>{{ 'old.vault.password' | translate}}</label>
<input type="password" ng-model="oldVaultPass">
<label>{{ 'new.vault.password' | translate}}</label>
- <password-gen ng-model="newVaultPass"
- ></password-gen>
+ <input type="password" ng-model="newVaultPass" />
<ng-password-meter password="newVaultPass" score="vault_key_score"></ng-password-meter>
<label>{{ 'new.vault.pw.r' | translate}}</label>
<input type="password" ng-model="newVaultPass2">
diff --git a/templates/views/partials/forms/share_credential/basics.html b/templates/views/partials/forms/share_credential/basics.html
index f3142d25..8774998d 100644
--- a/templates/views/partials/forms/share_credential/basics.html
+++ b/templates/views/partials/forms/share_credential/basics.html
@@ -17,7 +17,7 @@
<td>
<button class="button"
- ng-click="shareWith(inputSharedWith, selectedAccessLevel)">
+ ng-click="shareWith(inputSharedWith)">
+
</button>
</td>