mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
remove old encryption app
This commit is contained in:
parent
0eee3a2618
commit
e7a68d1c21
195 changed files with 0 additions and 16586 deletions
|
|
@ -1,91 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Florin Peter <github@florin-peter.de>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Robin Appelman <icewind@owncloud.com>
|
||||
* @author Sam Tuke <mail@samtuke.com>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
use OCA\Files_Encryption\Helper;
|
||||
|
||||
\OCP\JSON::checkAdminUser();
|
||||
\OCP\JSON::checkAppEnabled('files_encryption');
|
||||
\OCP\JSON::callCheck();
|
||||
|
||||
$l = \OC::$server->getL10N('files_encryption');
|
||||
|
||||
$return = false;
|
||||
$errorMessage = $l->t("Unknown error");
|
||||
|
||||
//check if both passwords are the same
|
||||
if (empty($_POST['recoveryPassword'])) {
|
||||
$errorMessage = $l->t('Missing recovery key password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
if (empty($_POST['confirmPassword'])) {
|
||||
$errorMessage = $l->t('Please repeat the recovery key password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
if ($_POST['recoveryPassword'] !== $_POST['confirmPassword']) {
|
||||
$errorMessage = $l->t('Repeated recovery key password does not match the provided recovery key password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
// Enable recoveryAdmin
|
||||
$recoveryKeyId = \OC::$server->getAppConfig()->getValue('files_encryption', 'recoveryKeyId');
|
||||
|
||||
if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === '1') {
|
||||
|
||||
$return = Helper::adminEnableRecovery($recoveryKeyId, (string)$_POST['recoveryPassword']);
|
||||
|
||||
// Return success or failure
|
||||
if ($return) {
|
||||
$successMessage = $l->t('Recovery key successfully enabled');
|
||||
} else {
|
||||
$errorMessage = $l->t('Could not disable recovery key. Please check your recovery key password!');
|
||||
}
|
||||
|
||||
// Disable recoveryAdmin
|
||||
} elseif (
|
||||
isset($_POST['adminEnableRecovery'])
|
||||
&& '0' === $_POST['adminEnableRecovery']
|
||||
) {
|
||||
$return = Helper::adminDisableRecovery((string)$_POST['recoveryPassword']);
|
||||
|
||||
if ($return) {
|
||||
$successMessage = $l->t('Recovery key successfully disabled');
|
||||
} else {
|
||||
$errorMessage = $l->t('Could not disable recovery key. Please check your recovery key password!');
|
||||
}
|
||||
}
|
||||
|
||||
// Return success or failure
|
||||
if ($return) {
|
||||
\OCP\JSON::success(array('data' => array('message' => $successMessage)));
|
||||
} else {
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
}
|
||||
|
|
@ -1,92 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Christopher Schäpers <kondou@ts.unde.re>
|
||||
* @author Florin Peter <github@florin-peter.de>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Robin Appelman <icewind@owncloud.com>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
\OCP\JSON::checkAdminUser();
|
||||
\OCP\JSON::checkAppEnabled('files_encryption');
|
||||
\OCP\JSON::callCheck();
|
||||
|
||||
$l = \OC::$server->getL10N('core');
|
||||
|
||||
$return = false;
|
||||
|
||||
$oldPassword = (string)$_POST['oldPassword'];
|
||||
$newPassword = (string)$_POST['newPassword'];
|
||||
$confirmPassword = (string)$_POST['confirmPassword'];
|
||||
|
||||
//check if both passwords are the same
|
||||
if (empty($_POST['oldPassword'])) {
|
||||
$errorMessage = $l->t('Please provide the old recovery password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
if (empty($_POST['newPassword'])) {
|
||||
$errorMessage = $l->t('Please provide a new recovery password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
if (empty($_POST['confirmPassword'])) {
|
||||
$errorMessage = $l->t('Please repeat the new recovery password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
if ($_POST['newPassword'] !== $_POST['confirmPassword']) {
|
||||
$errorMessage = $l->t('Repeated recovery key password does not match the provided recovery key password');
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
exit();
|
||||
}
|
||||
|
||||
$view = new \OC\Files\View('/');
|
||||
$util = new \OCA\Files_Encryption\Util(new \OC\Files\View('/'), \OCP\User::getUser());
|
||||
|
||||
$proxyStatus = \OC_FileProxy::$enabled;
|
||||
\OC_FileProxy::$enabled = false;
|
||||
|
||||
$keyId = $util->getRecoveryKeyId();
|
||||
|
||||
$encryptedRecoveryKey = \OCA\Files_Encryption\Keymanager::getPrivateSystemKey($keyId);
|
||||
$decryptedRecoveryKey = $encryptedRecoveryKey ? \OCA\Files_Encryption\Crypt::decryptPrivateKey($encryptedRecoveryKey, $oldPassword) : false;
|
||||
|
||||
if ($decryptedRecoveryKey) {
|
||||
$cipher = \OCA\Files_Encryption\Helper::getCipher();
|
||||
$encryptedKey = \OCA\Files_Encryption\Crypt::symmetricEncryptFileContent($decryptedRecoveryKey, $newPassword, $cipher);
|
||||
if ($encryptedKey) {
|
||||
\OCA\Files_Encryption\Keymanager::setPrivateSystemKey($encryptedKey, $keyId);
|
||||
$return = true;
|
||||
}
|
||||
}
|
||||
|
||||
\OC_FileProxy::$enabled = $proxyStatus;
|
||||
|
||||
// success or failure
|
||||
if ($return) {
|
||||
\OCP\JSON::success(array('data' => array('message' => $l->t('Password successfully changed.'))));
|
||||
} else {
|
||||
\OCP\JSON::error(array('data' => array('message' => $l->t('Could not change the password. Maybe the old password was not correct.'))));
|
||||
}
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Arthur Schiwon <blizzz@owncloud.com>
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
use OCA\Files_Encryption\Util;
|
||||
|
||||
\OCP\JSON::checkAppEnabled('files_encryption');
|
||||
|
||||
$loginname = isset($_POST['user']) ? (string)$_POST['user'] : '';
|
||||
$password = isset($_POST['password']) ? (string)$_POST['password'] : '';
|
||||
|
||||
$migrationStatus = Util::MIGRATION_COMPLETED;
|
||||
|
||||
if ($loginname !== '' && $password !== '') {
|
||||
$username = \OCP\User::checkPassword($loginname, $password);
|
||||
if ($username) {
|
||||
$util = new Util(new \OC\Files\View('/'), $username);
|
||||
$migrationStatus = $util->getMigrationStatus();
|
||||
}
|
||||
}
|
||||
|
||||
\OCP\JSON::success(array('data' => array('migrationStatus' => $migrationStatus)));
|
||||
|
|
@ -1,81 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Christopher Schäpers <kondou@ts.unde.re>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Robin Appelman <icewind@owncloud.com>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
\OCP\JSON::checkLoggedIn();
|
||||
\OCP\JSON::checkAppEnabled('files_encryption');
|
||||
\OCP\JSON::callCheck();
|
||||
|
||||
$l = \OC::$server->getL10N('core');
|
||||
|
||||
$return = false;
|
||||
$errorMessage = $l->t('Could not update the private key password.');
|
||||
|
||||
$oldPassword = (string)$_POST['oldPassword'];
|
||||
$newPassword = (string)$_POST['newPassword'];
|
||||
|
||||
$view = new \OC\Files\View('/');
|
||||
$session = new \OCA\Files_Encryption\Session($view);
|
||||
$user = \OCP\User::getUser();
|
||||
$loginName = \OC::$server->getUserSession()->getLoginName();
|
||||
|
||||
// check new password
|
||||
$passwordCorrect = \OCP\User::checkPassword($loginName, $newPassword);
|
||||
|
||||
if ($passwordCorrect !== false) {
|
||||
|
||||
$proxyStatus = \OC_FileProxy::$enabled;
|
||||
\OC_FileProxy::$enabled = false;
|
||||
|
||||
$encryptedKey = \OCA\Files_Encryption\Keymanager::getPrivateKey($view, $user);
|
||||
$decryptedKey = $encryptedKey ? \OCA\Files_Encryption\Crypt::decryptPrivateKey($encryptedKey, $oldPassword) : false;
|
||||
|
||||
if ($decryptedKey) {
|
||||
$cipher = \OCA\Files_Encryption\Helper::getCipher();
|
||||
$encryptedKey = \OCA\Files_Encryption\Crypt::symmetricEncryptFileContent($decryptedKey, $newPassword, $cipher);
|
||||
if ($encryptedKey) {
|
||||
\OCA\Files_Encryption\Keymanager::setPrivateKey($encryptedKey, $user);
|
||||
$session->setPrivateKey($decryptedKey);
|
||||
$return = true;
|
||||
}
|
||||
} else {
|
||||
$result = false;
|
||||
$errorMessage = $l->t('The old password was not correct, please try again.');
|
||||
}
|
||||
|
||||
\OC_FileProxy::$enabled = $proxyStatus;
|
||||
|
||||
} else {
|
||||
$result = false;
|
||||
$errorMessage = $l->t('The current log-in password was not correct, please try again.');
|
||||
}
|
||||
|
||||
// success or failure
|
||||
if ($return) {
|
||||
$session->setInitialized(\OCA\Files_Encryption\Session::INIT_SUCCESSFUL);
|
||||
\OCP\JSON::success(array('data' => array('message' => $l->t('Private key password successfully updated.'))));
|
||||
} else {
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMessage)));
|
||||
}
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Florin Peter <github@florin-peter.de>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Sam Tuke <mail@samtuke.com>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
\OCP\JSON::checkLoggedIn();
|
||||
\OCP\JSON::checkAppEnabled('files_encryption');
|
||||
\OCP\JSON::callCheck();
|
||||
|
||||
$l = \OC::$server->getL10N('files_encryption');
|
||||
|
||||
if (
|
||||
isset($_POST['userEnableRecovery'])
|
||||
&& (0 == $_POST['userEnableRecovery'] || '1' === $_POST['userEnableRecovery'])
|
||||
) {
|
||||
|
||||
$userId = \OCP\USER::getUser();
|
||||
$view = new \OC\Files\View('/');
|
||||
$util = new \OCA\Files_Encryption\Util($view, $userId);
|
||||
|
||||
// Save recovery preference to DB
|
||||
$return = $util->setRecoveryForUser((string)$_POST['userEnableRecovery']);
|
||||
|
||||
if ($_POST['userEnableRecovery'] === '1') {
|
||||
$util->addRecoveryKeys();
|
||||
} else {
|
||||
$util->removeRecoveryKeys();
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
$return = false;
|
||||
|
||||
}
|
||||
|
||||
// Return success or failure
|
||||
if ($return) {
|
||||
\OCP\JSON::success(array('data' => array('message' => $l->t('File recovery settings updated'))));
|
||||
} else {
|
||||
\OCP\JSON::error(array('data' => array('message' => $l->t('Could not update file recovery'))));
|
||||
}
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Florin Peter <github@florin-peter.de>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Robin Appelman <icewind@owncloud.com>
|
||||
* @author Sam Tuke <mail@samtuke.com>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
\OCP\Util::addscript('files_encryption', 'encryption');
|
||||
\OCP\Util::addscript('files_encryption', 'detect-migration');
|
||||
|
||||
if (!OC_Config::getValue('maintenance', false)) {
|
||||
OC_FileProxy::register(new OCA\Files_Encryption\Proxy());
|
||||
|
||||
// User related hooks
|
||||
OCA\Files_Encryption\Helper::registerUserHooks();
|
||||
|
||||
// Sharing related hooks
|
||||
OCA\Files_Encryption\Helper::registerShareHooks();
|
||||
|
||||
// Filesystem related hooks
|
||||
OCA\Files_Encryption\Helper::registerFilesystemHooks();
|
||||
|
||||
// App manager related hooks
|
||||
OCA\Files_Encryption\Helper::registerAppHooks();
|
||||
|
||||
if(!in_array('crypt', stream_get_wrappers())) {
|
||||
stream_wrapper_register('crypt', 'OCA\Files_Encryption\Stream');
|
||||
}
|
||||
} else {
|
||||
// logout user if we are in maintenance to force re-login
|
||||
OCP\User::logout();
|
||||
}
|
||||
|
||||
\OC::$server->getCommandBus()->requireSync('\OC\Command\FileAccess');
|
||||
|
||||
// Register settings scripts
|
||||
OCP\App::registerAdmin('files_encryption', 'settings-admin');
|
||||
OCP\App::registerPersonal('files_encryption', 'settings-personal');
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<info>
|
||||
<id>files_encryption</id>
|
||||
<name>Server-side Encryption</name>
|
||||
<description>
|
||||
This application encrypts all files accessed by ownCloud at rest, wherever they are stored. As an example, with this application enabled, external cloud based Amazon S3 storage will be encrypted, protecting this data on storage outside of the control of the Admin. When this application is enabled for the first time, all files are encrypted as users log in and are prompted for their password. The recommended recovery key option enables recovery of files in case the key is lost.
|
||||
Note that this app encrypts all files that are touched by ownCloud, so external storage providers and applications such as SharePoint will see new files encrypted when they are accessed. Encryption is based on AES 128 or 256 bit keys. More information is available in the Encryption documentation
|
||||
</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Sam Tuke, Bjoern Schiessle, Florin Peter</author>
|
||||
<requiremin>4</requiremin>
|
||||
<shipped>true</shipped>
|
||||
<documentation>
|
||||
<user>user-encryption</user>
|
||||
<admin>admin-encryption</admin>
|
||||
</documentation>
|
||||
<rememberlogin>false</rememberlogin>
|
||||
<types>
|
||||
<filesystem/>
|
||||
</types>
|
||||
<ocsid>166047</ocsid>
|
||||
<dependencies>
|
||||
<lib>openssl</lib>
|
||||
</dependencies>
|
||||
</info>
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
use OCA\Files_Encryption\Command\MigrateKeys;
|
||||
|
||||
$userManager = OC::$server->getUserManager();
|
||||
$application->add(new MigrateKeys($userManager));
|
||||
|
|
@ -1,39 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Tom Needham <tom@owncloud.com>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
/** @var $this \OCP\Route\IRouter */
|
||||
|
||||
$this->create('files_encryption_ajax_adminrecovery', 'ajax/adminrecovery.php')
|
||||
->actionInclude('files_encryption/ajax/adminrecovery.php');
|
||||
$this->create('files_encryption_ajax_changeRecoveryPassword', 'ajax/changeRecoveryPassword.php')
|
||||
->actionInclude('files_encryption/ajax/changeRecoveryPassword.php');
|
||||
$this->create('files_encryption_ajax_getMigrationStatus', 'ajax/getMigrationStatus.php')
|
||||
->actionInclude('files_encryption/ajax/getMigrationStatus.php');
|
||||
$this->create('files_encryption_ajax_updatePrivateKeyPassword', 'ajax/updatePrivateKeyPassword.php')
|
||||
->actionInclude('files_encryption/ajax/updatePrivateKeyPassword.php');
|
||||
$this->create('files_encryption_ajax_userrecovery', 'ajax/userrecovery.php')
|
||||
->actionInclude('files_encryption/ajax/userrecovery.php');
|
||||
|
||||
// Register with the capabilities API
|
||||
OC_API::register('get', '/cloud/capabilities', array('OCA\Files_Encryption\Capabilities', 'getCapabilities'), 'files_encryption', OC_API::USER_AUTH);
|
||||
|
|
@ -1,77 +0,0 @@
|
|||
Encrypted files
|
||||
---------------
|
||||
|
||||
- Each encrypted file has at least two components: the encrypted data file
|
||||
('catfile'), and it's corresponding key file ('keyfile'). Shared files have an
|
||||
additional key file ('share key'). The catfile contains the encrypted data
|
||||
concatenated with delimiter text, followed by the initialisation vector ('IV'),
|
||||
and padding. e.g.:
|
||||
|
||||
[encrypted data string][delimiter][IV][padding]
|
||||
[anhAAjAmcGXqj1X9g==][00iv00][MSHU5N5gECP7aAg7][xx] (square braces added)
|
||||
|
||||
- Directory structure:
|
||||
- Encrypted user data (catfiles) are stored in the usual /data/user/files dir
|
||||
- Keyfiles are stored in /data/user/files_encryption/keyfiles
|
||||
- Sharekey are stored in /data/user/files_encryption/share-files
|
||||
|
||||
- File extensions:
|
||||
- Catfiles have to keep the file extension of the original file, pre-encryption
|
||||
- Keyfiles use .keyfile
|
||||
- Sharekeys have .shareKey
|
||||
|
||||
Shared files
|
||||
------------
|
||||
|
||||
Shared files have a centrally stored catfile and keyfile, and one sharekey for
|
||||
each user that shares it.
|
||||
|
||||
When sharing is used, a different encryption method is used to encrypt the
|
||||
keyfile (openssl_seal). Although shared files have a keyfile, its contents
|
||||
use a different format therefore.
|
||||
|
||||
Each time a shared file is edited or deleted, all sharekeys for users sharing
|
||||
that file must have their sharekeys changed also. The keyfile and catfile
|
||||
however need only changing in the owners files, as there is only one copy of
|
||||
these.
|
||||
|
||||
Publicly shared files (public links)
|
||||
------------------------------------
|
||||
|
||||
Files shared via public links use a separate system user account called 'ownCloud'. All public files are shared to that user's public key, and the private key is used to access the files when the public link is used in browser.
|
||||
|
||||
This means that files shared via public links are accessible only to users who know the shared URL, or to admins who know the 'ownCloud' user password.
|
||||
|
||||
Lost password recovery
|
||||
----------------------
|
||||
|
||||
In order to enable users to read their encrypted files in the event of a password loss/reset scenario, administrators can choose to enable a 'recoveryAdmin' account. This is a user that all user files will automatically be shared to of the option is enabled. This allows the recoveryAdmin user to generate new keyfiles for the user. By default the UID of the recoveryAdmin is 'recoveryAdmin'.
|
||||
|
||||
OC_FilesystemView
|
||||
-----------------
|
||||
|
||||
files_encryption deals extensively with paths and the filesystem. In order to minimise bugs, it makes calls to filesystem methods in a consistent way: OC_FilesystemView{} objects always use '/' as their root, and specify paths each time particular methods are called. e.g. do this:
|
||||
|
||||
$view->file_exists( 'path/to/file' );
|
||||
|
||||
Not:
|
||||
|
||||
$view->chroot( 'path/to' );
|
||||
$view->file_exists( 'file' );
|
||||
|
||||
Using this convention means that $view objects are more predictable and less likely to break. Problems with paths are the #1 cause of bugs in this app, and consistent $view handling is an important way to prevent them.
|
||||
|
||||
Notes
|
||||
-----
|
||||
|
||||
- The user passphrase is required in order to set up or upgrade the app. New
|
||||
keypair generation, and the re-encryption of legacy encrypted files requires
|
||||
it. Therefore an appinfo/update.php script cannot be used, and upgrade logic
|
||||
is handled in the login hook listener. Therefore each time the user logs in
|
||||
their files are scanned to detect unencrypted and legacy encrypted files, and
|
||||
they are (re)encrypted as necessary. This may present a performance issue; we
|
||||
need to monitor this.
|
||||
- When files are saved to ownCloud via WebDAV, a .part file extension is used so
|
||||
that the file isn't cached before the upload has been completed. .part files
|
||||
are not compatible with files_encrytion's key management system however, so
|
||||
we have to always sanitise such paths manually before using them.
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
use OCA\Files_Encryption\Migration;
|
||||
|
||||
$installedVersion=OCP\Config::getAppValue('files_encryption', 'installed_version');
|
||||
|
||||
// Migration OC7 -> OC8
|
||||
if (version_compare($installedVersion, '0.7', '<')) {
|
||||
$m = new Migration();
|
||||
$m->reorganizeFolderStructure();
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
0.7.1
|
||||
|
|
@ -1,95 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Arthur Schiwon <blizzz@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
namespace OCA\Files_Encryption\Command;
|
||||
|
||||
use OCA\Files_Encryption\Migration;
|
||||
use OCP\IUserBackend;
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class MigrateKeys extends Command {
|
||||
|
||||
/** @var \OC\User\Manager */
|
||||
private $userManager;
|
||||
|
||||
public function __construct(\OC\User\Manager $userManager) {
|
||||
$this->userManager = $userManager;
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
protected function configure() {
|
||||
$this
|
||||
->setName('encryption:migrate-keys')
|
||||
->setDescription('migrate encryption keys')
|
||||
->addArgument(
|
||||
'user_id',
|
||||
InputArgument::OPTIONAL | InputArgument::IS_ARRAY,
|
||||
'will migrate keys of the given user(s)'
|
||||
);
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output) {
|
||||
|
||||
// perform system reorganization
|
||||
$migration = new Migration();
|
||||
$output->writeln("Reorganize system folder structure");
|
||||
$migration->reorganizeSystemFolderStructure();
|
||||
|
||||
$users = $input->getArgument('user_id');
|
||||
if (!empty($users)) {
|
||||
foreach ($users as $user) {
|
||||
if ($this->userManager->userExists($user)) {
|
||||
$output->writeln("Migrating keys <info>$user</info>");
|
||||
$migration->reorganizeFolderStructureForUser($user);
|
||||
} else {
|
||||
$output->writeln("<error>Unknown user $user</error>");
|
||||
}
|
||||
}
|
||||
} else {
|
||||
foreach($this->userManager->getBackends() as $backend) {
|
||||
$name = get_class($backend);
|
||||
|
||||
if ($backend instanceof IUserBackend) {
|
||||
$name = $backend->getBackendName();
|
||||
}
|
||||
|
||||
$output->writeln("Migrating keys for users on backend <info>$name</info>");
|
||||
|
||||
$limit = 500;
|
||||
$offset = 0;
|
||||
do {
|
||||
$users = $backend->getUsers('', $limit, $offset);
|
||||
foreach ($users as $user) {
|
||||
$output->writeln(" <info>$user</info>");
|
||||
$migration->reorganizeFolderStructureForUser($user);
|
||||
}
|
||||
$offset += $limit;
|
||||
} while(count($users) >= $limit);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
/* Copyright (c) 2013, Sam Tuke, <samtuke@owncloud.com>
|
||||
This file is licensed under the Affero General Public License version 3 or later.
|
||||
See the COPYING-README file. */
|
||||
|
||||
#encryptAllError
|
||||
, #encryptAllSuccess
|
||||
, #recoveryEnabledError
|
||||
, #recoveryEnabledSuccess {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -1,50 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
namespace OCA\Files_Encryption\Exception;
|
||||
|
||||
/**
|
||||
* Base class for all encryption exception
|
||||
*
|
||||
* Possible Error Codes:
|
||||
* 10 - generic error
|
||||
* 20 - unexpected end of encryption header
|
||||
* 30 - unexpected blog size
|
||||
* 40 - encryption header to large
|
||||
* 50 - unknown cipher
|
||||
* 60 - encryption failed
|
||||
* 70 - decryption failed
|
||||
* 80 - empty data
|
||||
* 90 - private key missing
|
||||
*/
|
||||
class EncryptionException extends \Exception {
|
||||
const GENERIC = 10;
|
||||
const UNEXPECTED_END_OF_ENCRYPTION_HEADER = 20;
|
||||
const UNEXPECTED_BLOCK_SIZE = 30;
|
||||
const ENCRYPTION_HEADER_TO_LARGE = 40;
|
||||
const UNKNOWN_CIPHER = 50;
|
||||
const ENCRYPTION_FAILED = 60;
|
||||
const DECRYPTION_FAILED = 70;
|
||||
const EMPTY_DATA = 80;
|
||||
const PRIVATE_KEY_MISSING = 90;
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
namespace OCA\Files_Encryption\Exception;
|
||||
|
||||
/**
|
||||
* Throw this encryption if multi key decryption failed
|
||||
*
|
||||
* Possible error codes:
|
||||
* 110 - openssl_open failed
|
||||
*/
|
||||
class MultiKeyDecryptException extends EncryptionException {
|
||||
const OPENSSL_OPEN_FAILED = 110;
|
||||
}
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
namespace OCA\Files_Encryption\Exception;
|
||||
|
||||
/**
|
||||
* Throw this exception if multi key encrytion fails
|
||||
*
|
||||
* Possible error codes:
|
||||
* 110 - openssl_seal failed
|
||||
*/
|
||||
class MultiKeyEncryptException extends EncryptionException {
|
||||
const OPENSSL_SEAL_FAILED = 110;
|
||||
}
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @author Björn Schießle <schiessle@owncloud.com>
|
||||
* @author Joas Schilling <nickvergessen@owncloud.com>
|
||||
* @author Lukas Reschke <lukas@owncloud.com>
|
||||
* @author Morris Jobke <hey@morrisjobke.de>
|
||||
* @author Robin Appelman <icewind@owncloud.com>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
* @author Volkan Gezer <volkangezer@gmail.com>
|
||||
*
|
||||
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
if (!isset($_)) { //also provide standalone error page
|
||||
require_once __DIR__ . '/../../../lib/base.php';
|
||||
require_once __DIR__ . '/../lib/crypt.php';
|
||||
|
||||
OC_JSON::checkAppEnabled('files_encryption');
|
||||
OC_App::loadApp('files_encryption');
|
||||
|
||||
$l = \OC::$server->getL10N('files_encryption');
|
||||
|
||||
if (isset($_GET['errorCode'])) {
|
||||
$errorCode = $_GET['errorCode'];
|
||||
switch ($errorCode) {
|
||||
case \OCA\Files_Encryption\Crypt::ENCRYPTION_NOT_INITIALIZED_ERROR:
|
||||
$errorMsg = $l->t('Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app.');
|
||||
break;
|
||||
case \OCA\Files_Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR:
|
||||
$theme = new OC_Defaults();
|
||||
$errorMsg = $l->t('Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.', array($theme->getName()));
|
||||
break;
|
||||
case \OCA\Files_Encryption\Crypt::ENCRYPTION_NO_SHARE_KEY_FOUND:
|
||||
$errorMsg = $l->t('Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you.');
|
||||
break;
|
||||
default:
|
||||
$errorMsg = $l->t("Unknown error. Please check your system settings or contact your administrator");
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
$errorCode = \OCA\Files_Encryption\Crypt::ENCRYPTION_UNKNOWN_ERROR;
|
||||
$errorMsg = $l->t("Unknown error. Please check your system settings or contact your administrator");
|
||||
}
|
||||
|
||||
if (isset($_GET['p']) && $_GET['p'] === '1') {
|
||||
header('HTTP/1.0 403 ' . $errorMsg);
|
||||
}
|
||||
|
||||
// check if ajax request
|
||||
if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
|
||||
\OCP\JSON::error(array('data' => array('message' => $errorMsg)));
|
||||
} else {
|
||||
header('HTTP/1.0 403 ' . $errorMsg);
|
||||
$tmpl = new OC_Template('files_encryption', 'invalid_private_key', 'guest');
|
||||
$tmpl->assign('message', $errorMsg);
|
||||
$tmpl->assign('errorCode', $errorCode);
|
||||
$tmpl->printPage();
|
||||
}
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xml:space="preserve"
|
||||
height="16px"
|
||||
width="16px"
|
||||
version="1.1"
|
||||
y="0px"
|
||||
x="0px"
|
||||
viewBox="0 0 71 100"
|
||||
id="svg2"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="app.svg"><metadata
|
||||
id="metadata10"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs8" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1014"
|
||||
id="namedview6"
|
||||
showgrid="false"
|
||||
inkscape:zoom="14.75"
|
||||
inkscape:cx="-21.423729"
|
||||
inkscape:cy="8"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="27"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" /><path
|
||||
d="m8 1c-2.2091 0-4 1.7909-4 4v2h-1v7h10v-7h-1v-2c0-2.2091-1.791-4-4-4zm0 2c1.1046 0 2 0.89543 2 2v2h-4v-2c0-1.1046 0.8954-2 2-2z"
|
||||
transform="matrix(6.25,0,0,6.25,-14.5,0)"
|
||||
id="path4"
|
||||
style="fill:#ffffff;fill-opacity:1" /><path
|
||||
style="fill:none"
|
||||
d="m 3.0644068,10.508475 0,-3.4576275 0.4655371,0 0.465537,0 0.049537,-1.2033899 C 4.1094633,4.2818838 4.1578923,4.0112428 4.4962182,3.3259708 4.7075644,2.8978935 4.9002217,2.6327599 5.2605792,2.2740624 6.7855365,0.75613022 8.9920507,0.69157582 10.623172,2.1171729 c 0.384104,0.3357058 0.882069,1.0763131 1.054177,1.5678422 0.147302,0.4206856 0.262873,1.6086448 0.266436,2.7387137 l 0.002,0.6271187 0.508474,0 0.508475,0 0,3.4576275 0,3.457627 -4.9491527,0 -4.9491525,0 0,-3.457627 z M 10.065882,6.3559322 c -0.02012,-0.3822034 -0.04774,-0.7076271 -0.0614,-0.7231639 -0.013653,-0.015537 -0.024824,0.281921 -0.024824,0.661017 l 0,0.6892655 -1.9630041,0 -1.963004,0 -0.023717,-0.4576271 -0.023717,-0.4576271 -0.013279,0.4915254 -0.013279,0.4915255 2.0613978,0 2.0613972,0 -0.03657,-0.6949153 0,0 z M 6.5396275,3.7118644 C 6.648082,3.5720339 6.7197092,3.4576271 6.6987988,3.4576271 c -0.062956,0 -0.5835446,0.6841947 -0.5835446,0.7669359 0,0.042237 0.051116,0.00136 0.1135916,-0.090834 0.062475,-0.092195 0.2023271,-0.2820343 0.3107817,-0.4218648 z M 9.7498983,4.0169492 C 9.6961899,3.9144068 9.5352369,3.723769 9.392225,3.5933098 L 9.1322034,3.356111 9.3784249,3.6272081 c 0.1354218,0.1491033 0.2814105,0.3397411 0.3244192,0.4236394 0.043009,0.083898 0.093162,0.1525423 0.1114515,0.1525423 0.01829,0 -0.010689,-0.083898 -0.064397,-0.1864406 l 0,0 z M 7.3032896,3.1315382 C 7.2704731,3.0987216 6.877102,3.3089557 6.8306315,3.3841466 6.8091904,3.4188389 6.911918,3.3813452 7.0589148,3.300827 7.2059117,3.2203088 7.3158803,3.1441289 7.3032896,3.1315382 l 0,0 z"
|
||||
id="path3007"
|
||||
inkscape:connector-curvature="0"
|
||||
transform="matrix(6.25,0,0,6.25,-14.5,0)" /></svg>
|
||||
|
Before Width: | Height: | Size: 3.3 KiB |
|
|
@ -1,33 +0,0 @@
|
|||
/**
|
||||
* Copyright (c) 2013
|
||||
* Bjoern Schiessle <schiessle@owncloud.com>
|
||||
* This file is licensed under the Affero General Public License version 3 or later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
$('form[name="login"]').on('submit', function() {
|
||||
var user = $('#user').val();
|
||||
var password = $('#password').val();
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: OC.linkTo('files_encryption', 'ajax/getMigrationStatus.php'),
|
||||
dataType: 'json',
|
||||
data: {user: user, password: password},
|
||||
async: false,
|
||||
success: function(response) {
|
||||
if (response.data.migrationStatus === OC.Encryption.MIGRATION_OPEN) {
|
||||
var message = t('files_encryption', 'Initial encryption started... This can take some time. Please wait.');
|
||||
$('#messageText').text(message);
|
||||
$('#message').removeClass('hidden').addClass('update');
|
||||
} else if (response.data.migrationStatus === OC.Encryption.MIGRATION_IN_PROGRESS) {
|
||||
var message = t('files_encryption', 'Initial encryption running... Please try again later.');
|
||||
$('#messageText').text(message);
|
||||
$('#message').removeClass('hidden').addClass('update');
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
/**
|
||||
* Copyright (c) 2014
|
||||
* Bjoern Schiessle <schiessle@owncloud.com>
|
||||
* This file is licensed under the Affero General Public License version 3 or later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @namespace
|
||||
* @memberOf OC
|
||||
*/
|
||||
OC.Encryption={
|
||||
MIGRATION_OPEN:0,
|
||||
MIGRATION_COMPLETED:1,
|
||||
MIGRATION_IN_PROGRESS:-1,
|
||||
};
|
||||
|
|
@ -1,55 +0,0 @@
|
|||
/**
|
||||
* Copyright (c) 2013
|
||||
* Sam Tuke <samtuke@owncloud.com>
|
||||
* Robin Appelman <icewind1991@gmail.com>
|
||||
* Bjoern Schiessle <schiessle@owncloud.com>
|
||||
* This file is licensed under the Affero General Public License version 3 or later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
$( 'input:radio[name="adminEnableRecovery"]' ).change(
|
||||
function() {
|
||||
var recoveryStatus = $( this ).val();
|
||||
var oldStatus = (1+parseInt(recoveryStatus)) % 2;
|
||||
var recoveryPassword = $( '#encryptionRecoveryPassword' ).val();
|
||||
var confirmPassword = $( '#repeatEncryptionRecoveryPassword' ).val();
|
||||
OC.msg.startSaving('#encryptionSetRecoveryKey .msg');
|
||||
$.post(
|
||||
OC.filePath( 'files_encryption', 'ajax', 'adminrecovery.php' )
|
||||
, { adminEnableRecovery: recoveryStatus, recoveryPassword: recoveryPassword, confirmPassword: confirmPassword }
|
||||
, function( result ) {
|
||||
OC.msg.finishedSaving('#encryptionSetRecoveryKey .msg', result);
|
||||
if (result.status === "error") {
|
||||
$('input:radio[name="adminEnableRecovery"][value="'+oldStatus.toString()+'"]').attr("checked", "true");
|
||||
} else {
|
||||
if (recoveryStatus === "0") {
|
||||
$('p[name="changeRecoveryPasswordBlock"]').addClass("hidden");
|
||||
} else {
|
||||
$('input:password[name="changeRecoveryPassword"]').val("");
|
||||
$('p[name="changeRecoveryPasswordBlock"]').removeClass("hidden");
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
|
||||
// change recovery password
|
||||
|
||||
$('button:button[name="submitChangeRecoveryKey"]').click(function() {
|
||||
var oldRecoveryPassword = $('#oldEncryptionRecoveryPassword').val();
|
||||
var newRecoveryPassword = $('#newEncryptionRecoveryPassword').val();
|
||||
var confirmNewPassword = $('#repeatedNewEncryptionRecoveryPassword').val();
|
||||
OC.msg.startSaving('#encryptionChangeRecoveryKey .msg');
|
||||
$.post(
|
||||
OC.filePath( 'files_encryption', 'ajax', 'changeRecoveryPassword.php' )
|
||||
, { oldPassword: oldRecoveryPassword, newPassword: newRecoveryPassword, confirmPassword: confirmNewPassword }
|
||||
, function( data ) {
|
||||
OC.msg.finishedSaving('#encryptionChangeRecoveryKey .msg', data);
|
||||
}
|
||||
);
|
||||
});
|
||||
|
||||
});
|
||||
|
|
@ -1,89 +0,0 @@
|
|||
/**
|
||||
* Copyright (c) 2013, Sam Tuke <samtuke@owncloud.com>
|
||||
* This file is licensed under the Affero General Public License version 3 or later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
function updatePrivateKeyPasswd() {
|
||||
var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val();
|
||||
var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val();
|
||||
OC.msg.startSaving('#encryption .msg');
|
||||
$.post(
|
||||
OC.filePath( 'files_encryption', 'ajax', 'updatePrivateKeyPassword.php' )
|
||||
, { oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword }
|
||||
, function( data ) {
|
||||
if (data.status === "error") {
|
||||
OC.msg.finishedSaving('#encryption .msg', data);
|
||||
} else {
|
||||
OC.msg.finishedSaving('#encryption .msg', data);
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
// Trigger ajax on recoveryAdmin status change
|
||||
$( 'input:radio[name="userEnableRecovery"]' ).change(
|
||||
function() {
|
||||
var recoveryStatus = $( this ).val();
|
||||
OC.msg.startAction('#userEnableRecovery .msg', 'Updating recovery keys. This can take some time...');
|
||||
$.post(
|
||||
OC.filePath( 'files_encryption', 'ajax', 'userrecovery.php' )
|
||||
, { userEnableRecovery: recoveryStatus }
|
||||
, function( data ) {
|
||||
OC.msg.finishedAction('#userEnableRecovery .msg', data);
|
||||
}
|
||||
);
|
||||
// Ensure page is not reloaded on form submit
|
||||
return false;
|
||||
}
|
||||
);
|
||||
|
||||
$("#encryptAll").click(
|
||||
function(){
|
||||
|
||||
// Hide feedback messages in case they're already visible
|
||||
$('#encryptAllSuccess').hide();
|
||||
$('#encryptAllError').hide();
|
||||
|
||||
var userPassword = $( '#userPassword' ).val();
|
||||
var encryptAll = $( '#encryptAll' ).val();
|
||||
|
||||
$.post(
|
||||
OC.filePath( 'files_encryption', 'ajax', 'encryptall.php' )
|
||||
, { encryptAll: encryptAll, userPassword: userPassword }
|
||||
, function( data ) {
|
||||
if ( data.status == "success" ) {
|
||||
$('#encryptAllSuccess').show();
|
||||
} else {
|
||||
$('#encryptAllError').show();
|
||||
}
|
||||
}
|
||||
);
|
||||
// Ensure page is not reloaded on form submit
|
||||
return false;
|
||||
}
|
||||
|
||||
);
|
||||
|
||||
// update private key password
|
||||
|
||||
$('input:password[name="changePrivateKeyPassword"]').keyup(function(event) {
|
||||
var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val();
|
||||
var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val();
|
||||
if (newPrivateKeyPassword !== '' && oldPrivateKeyPassword !== '' ) {
|
||||
$('button:button[name="submitChangePrivateKeyPassword"]').removeAttr("disabled");
|
||||
if(event.which === 13) {
|
||||
updatePrivateKeyPasswd();
|
||||
}
|
||||
} else {
|
||||
$('button:button[name="submitChangePrivateKeyPassword"]').attr("disabled", "true");
|
||||
}
|
||||
});
|
||||
|
||||
$('button:button[name="submitChangePrivateKeyPassword"]').click(function() {
|
||||
updatePrivateKeyPasswd();
|
||||
});
|
||||
|
||||
});
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "خطأ غير معروف. ",
|
||||
"Recovery key successfully enabled" : "تم بنجاح تفعيل مفتاح الاستعادة",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "لا يمكن تعطيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!",
|
||||
"Recovery key successfully disabled" : "تم تعطيل مفتاح الاستعادة بنجاح",
|
||||
"Password successfully changed." : "تم تغيير كلمة المرور بنجاح.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "تعذر تغيير كلمة المرور. من الممكن ان كلمة المرور القديمة غير صحيحة.",
|
||||
"Private key password successfully updated." : "تم تحديث كلمة المرور للمفتاح الخاص بنجاح.",
|
||||
"File recovery settings updated" : "اعدادات ملف الاستعادة تم تحديثه",
|
||||
"Could not update file recovery" : "تعذر تحديث ملف الاستعادة",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "برنامج التشفير لم يتم تهيئتة ! من الممكن ان برنامج التشفير تم اعادة تفعيلة خلال الجلسة. يرجى تسجيل الخروج ومن ثم تسجيل الدخول مجددا لتهيئة برنامج التشفير.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "مفتاحك الخاص غير صالح! ربما تم تغيير كلمة المرور خارج %s (مثل:مجلد شركتك). يمكنك تحديث كلمة المرور في الاعدادات الشخصية لإستعادة الوصول الى ملفاتك المشفرة.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "لا يمكن فك التشفير من هذا الملف, من الممكن ان يكون هذا الملف مُشارك. يرجى سؤال صاحب الملف لإعادة مشاركتة معك.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "خطأ غير معروف, الرجاء التحقق من إعدادات نظامك أو راسل المدير",
|
||||
"Initial encryption started... This can take some time. Please wait." : "بدأ التشفير... من الممكن ان ياخذ بعض الوقت. يرجى الانتظار.",
|
||||
"Initial encryption running... Please try again later." : "جاري تفعيل التشفير المبدئي ، الرجاء المحاولة لاحقا",
|
||||
"Missing requirements." : "متطلبات ناقصة.",
|
||||
"Following users are not set up for encryption:" : "المستخدمين التاليين لم يتم تعيين لهم التشفيير:",
|
||||
"Go directly to your %spersonal settings%s." : " .%spersonal settings%s إنتقل مباشرة إلى ",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "تفعيل استعادة المفتاح (سوف يمكنك من استعادة ملفات المستخدمين في حال فقدان كلمة المرور):",
|
||||
"Recovery key password" : "استعادة كلمة مرور المفتاح",
|
||||
"Repeat Recovery key password" : "كرر كلمة المرور لـ استعادة المفتاح",
|
||||
"Enabled" : "مفعلة",
|
||||
"Disabled" : "معطلة",
|
||||
"Change recovery key password:" : "تعديل كلمة المرور استعادة المفتاح:",
|
||||
"Old Recovery key password" : "كلمة المرور القديمة لـ استعامة المفتاح",
|
||||
"New Recovery key password" : "تعيين كلمة مرور جديدة لـ استعادة المفتاح",
|
||||
"Repeat New Recovery key password" : "كرر كلمة المرور لـ استعادة المفتاح من جديد",
|
||||
"Change Password" : "عدل كلمة السر",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "اذا كنت لاتتذكر كلمة السر تستطيع ان تطلب من المدير ان يستعيد ملفاتك.",
|
||||
"Old log-in password" : "كلمة المرور القديمة الخاصة بالدخول",
|
||||
"Current log-in password" : "كلمة المرور الحالية الخاصة بالدخول",
|
||||
"Update Private Key Password" : "تحديث كلمة المرور لـ المفتاح الخاص",
|
||||
"Enable password recovery:" : "تفعيل استعادة كلمة المرور:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "تفعيل هذا الخيار يمكنك من اعادة الوصول الى ملفاتك المشفرة عند فقدان كلمة المرور"
|
||||
},
|
||||
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "خطأ غير معروف. ",
|
||||
"Recovery key successfully enabled" : "تم بنجاح تفعيل مفتاح الاستعادة",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "لا يمكن تعطيل مفتاح الاستعادة, يرجى التحقق من كلمة مرور مفتاح الاستعادة!",
|
||||
"Recovery key successfully disabled" : "تم تعطيل مفتاح الاستعادة بنجاح",
|
||||
"Password successfully changed." : "تم تغيير كلمة المرور بنجاح.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "تعذر تغيير كلمة المرور. من الممكن ان كلمة المرور القديمة غير صحيحة.",
|
||||
"Private key password successfully updated." : "تم تحديث كلمة المرور للمفتاح الخاص بنجاح.",
|
||||
"File recovery settings updated" : "اعدادات ملف الاستعادة تم تحديثه",
|
||||
"Could not update file recovery" : "تعذر تحديث ملف الاستعادة",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "برنامج التشفير لم يتم تهيئتة ! من الممكن ان برنامج التشفير تم اعادة تفعيلة خلال الجلسة. يرجى تسجيل الخروج ومن ثم تسجيل الدخول مجددا لتهيئة برنامج التشفير.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "مفتاحك الخاص غير صالح! ربما تم تغيير كلمة المرور خارج %s (مثل:مجلد شركتك). يمكنك تحديث كلمة المرور في الاعدادات الشخصية لإستعادة الوصول الى ملفاتك المشفرة.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "لا يمكن فك التشفير من هذا الملف, من الممكن ان يكون هذا الملف مُشارك. يرجى سؤال صاحب الملف لإعادة مشاركتة معك.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "خطأ غير معروف, الرجاء التحقق من إعدادات نظامك أو راسل المدير",
|
||||
"Initial encryption started... This can take some time. Please wait." : "بدأ التشفير... من الممكن ان ياخذ بعض الوقت. يرجى الانتظار.",
|
||||
"Initial encryption running... Please try again later." : "جاري تفعيل التشفير المبدئي ، الرجاء المحاولة لاحقا",
|
||||
"Missing requirements." : "متطلبات ناقصة.",
|
||||
"Following users are not set up for encryption:" : "المستخدمين التاليين لم يتم تعيين لهم التشفيير:",
|
||||
"Go directly to your %spersonal settings%s." : " .%spersonal settings%s إنتقل مباشرة إلى ",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "تفعيل استعادة المفتاح (سوف يمكنك من استعادة ملفات المستخدمين في حال فقدان كلمة المرور):",
|
||||
"Recovery key password" : "استعادة كلمة مرور المفتاح",
|
||||
"Repeat Recovery key password" : "كرر كلمة المرور لـ استعادة المفتاح",
|
||||
"Enabled" : "مفعلة",
|
||||
"Disabled" : "معطلة",
|
||||
"Change recovery key password:" : "تعديل كلمة المرور استعادة المفتاح:",
|
||||
"Old Recovery key password" : "كلمة المرور القديمة لـ استعامة المفتاح",
|
||||
"New Recovery key password" : "تعيين كلمة مرور جديدة لـ استعادة المفتاح",
|
||||
"Repeat New Recovery key password" : "كرر كلمة المرور لـ استعادة المفتاح من جديد",
|
||||
"Change Password" : "عدل كلمة السر",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "اذا كنت لاتتذكر كلمة السر تستطيع ان تطلب من المدير ان يستعيد ملفاتك.",
|
||||
"Old log-in password" : "كلمة المرور القديمة الخاصة بالدخول",
|
||||
"Current log-in password" : "كلمة المرور الحالية الخاصة بالدخول",
|
||||
"Update Private Key Password" : "تحديث كلمة المرور لـ المفتاح الخاص",
|
||||
"Enable password recovery:" : "تفعيل استعادة كلمة المرور:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "تفعيل هذا الخيار يمكنك من اعادة الوصول الى ملفاتك المشفرة عند فقدان كلمة المرور"
|
||||
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
|
||||
}
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Fallu desconocíu",
|
||||
"Recovery key successfully enabled" : "Habilitóse la recuperación de ficheros",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Nun pudo deshabilitase la clave de recuperación. Por favor comprueba la contraseña!",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Password successfully changed." : "Camudóse la contraseña",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Nun pudo camudase la contraseña. Comprueba que la contraseña actual seya correuta.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada anovada correchamente.",
|
||||
"File recovery settings updated" : "Opciones de recuperación de ficheros anovada",
|
||||
"Could not update file recovery" : "Nun pudo anovase la recuperación de ficheros",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡L'aplicación de cifráu nun s'anició! Seique se restableciera mentanto la sesión. Por favor intenta zarrar la sesión y volver a aniciala p'aniciar l'aplicación de cifráu.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡La clave privada nun ye válida! Seique la contraseña se camudase dende fuera de %s (Ex:El to direutoriu corporativu). Pues anovar la contraseña de la clave privada nes tos opciones personales pa recuperar l'accesu a los ficheros.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nun pudo descifrase esti ficheru, dablemente seya un ficheru compartíu. Solicita al propietariu del mesmu que vuelva a compartilu contigo.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Fallu desconocíu. Por favor, comprueba los axustes del sistema o contauta col alministrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Cifráu aniciáu..... Esto pue llevar un tiempu. Por favor espera.",
|
||||
"Initial encryption running... Please try again later." : "Cifráu inicial en cursu... Inténtalo dempués.",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios nun se configuraron pal cifráu:",
|
||||
"Go directly to your %spersonal settings%s." : "Dir direutamente a los tos %saxustes personales%s.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar la clave de recuperación (permite recuperar los ficheros del usuariu en casu de perda de la contraseña);",
|
||||
"Recovery key password" : "Contraseña de clave de recuperación",
|
||||
"Repeat Recovery key password" : "Repeti la contraseña de clave de recuperación",
|
||||
"Enabled" : "Habilitar",
|
||||
"Disabled" : "Deshabilitáu",
|
||||
"Change recovery key password:" : "Camudar la contraseña de la clave de recuperación",
|
||||
"Old Recovery key password" : "Clave de recuperación vieya",
|
||||
"New Recovery key password" : "Clave de recuperación nueva",
|
||||
"Repeat New Recovery key password" : "Repetir la clave de recuperación nueva",
|
||||
"Change Password" : "Camudar contraseña",
|
||||
"Set your old private key password to your current log-in password:" : "Afita la contraseña de clave privada vieya pa la to contraseña d'aniciu de sesión actual:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si nun recuerdes la contraseña vieya, pues pidir a alministrador que te recupere los ficheros.",
|
||||
"Old log-in password" : "Contraseña d'accesu vieya",
|
||||
"Current log-in password" : "Contraseña d'accesu actual",
|
||||
"Update Private Key Password" : "Anovar Contraseña de Clave Privada",
|
||||
"Enable password recovery:" : "Habilitar la recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción va permitite volver a tener accesu a los ficheros cifraos en casu de perda de contraseña"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,39 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Fallu desconocíu",
|
||||
"Recovery key successfully enabled" : "Habilitóse la recuperación de ficheros",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Nun pudo deshabilitase la clave de recuperación. Por favor comprueba la contraseña!",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Password successfully changed." : "Camudóse la contraseña",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Nun pudo camudase la contraseña. Comprueba que la contraseña actual seya correuta.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada anovada correchamente.",
|
||||
"File recovery settings updated" : "Opciones de recuperación de ficheros anovada",
|
||||
"Could not update file recovery" : "Nun pudo anovase la recuperación de ficheros",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡L'aplicación de cifráu nun s'anició! Seique se restableciera mentanto la sesión. Por favor intenta zarrar la sesión y volver a aniciala p'aniciar l'aplicación de cifráu.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡La clave privada nun ye válida! Seique la contraseña se camudase dende fuera de %s (Ex:El to direutoriu corporativu). Pues anovar la contraseña de la clave privada nes tos opciones personales pa recuperar l'accesu a los ficheros.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nun pudo descifrase esti ficheru, dablemente seya un ficheru compartíu. Solicita al propietariu del mesmu que vuelva a compartilu contigo.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Fallu desconocíu. Por favor, comprueba los axustes del sistema o contauta col alministrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Cifráu aniciáu..... Esto pue llevar un tiempu. Por favor espera.",
|
||||
"Initial encryption running... Please try again later." : "Cifráu inicial en cursu... Inténtalo dempués.",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios nun se configuraron pal cifráu:",
|
||||
"Go directly to your %spersonal settings%s." : "Dir direutamente a los tos %saxustes personales%s.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicación Encryption ta habilitada pero les tos claves nun s'aniciaron, por favor zarra sesión y aníciala de nueves",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar la clave de recuperación (permite recuperar los ficheros del usuariu en casu de perda de la contraseña);",
|
||||
"Recovery key password" : "Contraseña de clave de recuperación",
|
||||
"Repeat Recovery key password" : "Repeti la contraseña de clave de recuperación",
|
||||
"Enabled" : "Habilitar",
|
||||
"Disabled" : "Deshabilitáu",
|
||||
"Change recovery key password:" : "Camudar la contraseña de la clave de recuperación",
|
||||
"Old Recovery key password" : "Clave de recuperación vieya",
|
||||
"New Recovery key password" : "Clave de recuperación nueva",
|
||||
"Repeat New Recovery key password" : "Repetir la clave de recuperación nueva",
|
||||
"Change Password" : "Camudar contraseña",
|
||||
"Set your old private key password to your current log-in password:" : "Afita la contraseña de clave privada vieya pa la to contraseña d'aniciu de sesión actual:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si nun recuerdes la contraseña vieya, pues pidir a alministrador que te recupere los ficheros.",
|
||||
"Old log-in password" : "Contraseña d'accesu vieya",
|
||||
"Current log-in password" : "Contraseña d'accesu actual",
|
||||
"Update Private Key Password" : "Anovar Contraseña de Clave Privada",
|
||||
"Enable password recovery:" : "Habilitar la recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción va permitite volver a tener accesu a los ficheros cifraos en casu de perda de contraseña"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Bəlli olmayan səhv baş verdi",
|
||||
"Missing recovery key password" : "Bərpa açarının şifrəsi çatışmır",
|
||||
"Please repeat the recovery key password" : "Xahiş olunur bərpa açarı şifrəsini təkrarlayasınız",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Təkrar daxil edilən bərpa açarı şifrəsi, öncə daxil edilən bərpa açarı ilə üst-üstə düşmür ",
|
||||
"Recovery key successfully enabled" : "Bərpa açarı uğurla aktivləşdi",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Geriqaytarılma açarını sondürmək olmur. Xahiş edirik geriqaytarılma key açarınızı yoxlayın.",
|
||||
"Recovery key successfully disabled" : "Bərpa açarı uğurla söndürüldü",
|
||||
"Please provide the old recovery password" : "Xahiş olunur köhnə bərpa açarını daxil edəsiniz",
|
||||
"Please provide a new recovery password" : "Xahiş olunur yeni bərpa açarı şifrəsini daxil esəsiniz",
|
||||
"Please repeat the new recovery password" : "Xahiş olunur yeni bərpa açarını təkrarlayasınız",
|
||||
"Password successfully changed." : "Şifrə uğurla dəyişdirildi.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Şifrəni dəyişmək olmur, ola bilər ki, köhnə şifrə düzgün olmayıb.",
|
||||
"Could not update the private key password." : "Gizli açarın şifrəsini yeniləmək mümkün olmadı.",
|
||||
"The old password was not correct, please try again." : "Köhnə şifrə düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
|
||||
"The current log-in password was not correct, please try again." : "Hal-hazırki istifadəçi şifrəsi düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
|
||||
"Private key password successfully updated." : "Gizli aşar şifrəsi uğurla yeniləndi.",
|
||||
"File recovery settings updated" : "Fayl bərpa quraşdırmaları yeniləndi",
|
||||
"Could not update file recovery" : "Fayl bərpasını yeniləmək olmur",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Şifrələmə proqramı inisializasiya edilməyib! Ola bilər ki, şifrələnmə proqramı sizin sessiya müddətində yenidən işə salınıb. Xahiş olunur çıxıb yenidən girişə cəhd edəsiniz ki, şifrələnmə proqramı sizin istifadəçı adı üçün təkrar inisializasiya edilsin. ",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Sizin gizli açarınız doğru deyil! Təxmin edilir ki, sizin şifrə %s-dən kənarda dəyişdirilib(misal üçün sizin koorporativ qovluq). Siz öz şifrələnmiş fayllarınıza yetkinizi bərpa etmək üçün, öz şifrənizi şəxsi quraşdırmalarınızda yeniləyə bilərsiniz.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu faylı deşifrə etmək olmur və ola bilər ki, bu paylaşımda olan fayldır. Xahiş olunur faylın sahibinə həmin faylı sizinlə yenidən paylaşım etməsini bildirəsiniz. ",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Tanınmayan səhv. Xahiş olunur sistem quraşdırmalarınızı yoxlayın yada öz inzibatçınızla əlaqə yaradın",
|
||||
"Initial encryption started... This can take some time. Please wait." : "İlkin şifələnmə başlandı... Bu müəyyən vaxt ala bilər. Xahiş olunur gözləyəsiniz.",
|
||||
"Initial encryption running... Please try again later." : "İlkin şifrələnmə işləyir... Xahiş olunur birazdan yenidən müraciət edəsiniz.",
|
||||
"Missing requirements." : "Taləbatlar çatışmır.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Xahiş olunur ki, PHP-in OpenSSL genişlənməsi yüklənib və düzgün konfiqurasiya edilib. İndiki hal üçün şifrələnmə proqramı dayandırılmışdır.",
|
||||
"Following users are not set up for encryption:" : "Göstərilən istifadəçilər şifrələnmə üçün quraşdırılmayıb:",
|
||||
"Go directly to your %spersonal settings%s." : "Birbaşa öz %sşəxsi quraşdırmalarınıza%s gedin.",
|
||||
"Server-side Encryption" : "Server-tərəf şifrələnmə",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Proqram şifrələnməsi işə salınıb ancaq, sizin açarlar inisializasiya edilməyib. Xahiş edilir çıxıb yenidən daxil olasınız",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Bərpa açarını aktivləşdir(şifrə itirilməsi hadısələrində, istifadəçi fayllarının bərpasına izin verir)",
|
||||
"Recovery key password" : "Açar şifrənin bərpa edilməsi",
|
||||
"Repeat Recovery key password" : "Bərpa açarın şifrəsini təkrar edin",
|
||||
"Enabled" : "İşə salınıb",
|
||||
"Disabled" : "Dayandırılıb",
|
||||
"Change recovery key password:" : "Bərpa açarın şifrəsini dəyişdir:",
|
||||
"Old Recovery key password" : "Köhnə bərpa açarı şifrəsi",
|
||||
"New Recovery key password" : "Yeni bərpa açarı şifrəsi",
|
||||
"Repeat New Recovery key password" : "Yeni bərpa açarı şifrəsini təkrar edin",
|
||||
"Change Password" : "Şifrəni dəyişdir",
|
||||
"Your private key password no longer matches your log-in password." : "Sizin gizli açar şifrəsi, artıq giriş adınızla uyğun gəlmir.",
|
||||
"Set your old private key password to your current log-in password:" : "Köhnə açar şifrənizi, sizin hal-hazırki giriş şifrənizə təyin edin: ",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Əgər siz köhnə şifrənizi xatırlamırsınızsa, öz inzibatçınızdan fayllarınızın bərpasını istəyə bilərsiniz.",
|
||||
"Old log-in password" : "Köhnə giriş şifrəsi",
|
||||
"Current log-in password" : "Hal-hazırki giriş şifrəsi",
|
||||
"Update Private Key Password" : "Gizli açar şifrəsini yenilə",
|
||||
"Enable password recovery:" : "Şifrə bərpasını işə sal:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Bu opsiyanın aktiv edilməsi sizə, şifrənin itdiyi hallarda bütün şifrələnmiş fayllarınıza yetkinin yenidən əldə edilməsinə şərait yaradacaq"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Bəlli olmayan səhv baş verdi",
|
||||
"Missing recovery key password" : "Bərpa açarının şifrəsi çatışmır",
|
||||
"Please repeat the recovery key password" : "Xahiş olunur bərpa açarı şifrəsini təkrarlayasınız",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Təkrar daxil edilən bərpa açarı şifrəsi, öncə daxil edilən bərpa açarı ilə üst-üstə düşmür ",
|
||||
"Recovery key successfully enabled" : "Bərpa açarı uğurla aktivləşdi",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Geriqaytarılma açarını sondürmək olmur. Xahiş edirik geriqaytarılma key açarınızı yoxlayın.",
|
||||
"Recovery key successfully disabled" : "Bərpa açarı uğurla söndürüldü",
|
||||
"Please provide the old recovery password" : "Xahiş olunur köhnə bərpa açarını daxil edəsiniz",
|
||||
"Please provide a new recovery password" : "Xahiş olunur yeni bərpa açarı şifrəsini daxil esəsiniz",
|
||||
"Please repeat the new recovery password" : "Xahiş olunur yeni bərpa açarını təkrarlayasınız",
|
||||
"Password successfully changed." : "Şifrə uğurla dəyişdirildi.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Şifrəni dəyişmək olmur, ola bilər ki, köhnə şifrə düzgün olmayıb.",
|
||||
"Could not update the private key password." : "Gizli açarın şifrəsini yeniləmək mümkün olmadı.",
|
||||
"The old password was not correct, please try again." : "Köhnə şifrə düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
|
||||
"The current log-in password was not correct, please try again." : "Hal-hazırki istifadəçi şifrəsi düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.",
|
||||
"Private key password successfully updated." : "Gizli aşar şifrəsi uğurla yeniləndi.",
|
||||
"File recovery settings updated" : "Fayl bərpa quraşdırmaları yeniləndi",
|
||||
"Could not update file recovery" : "Fayl bərpasını yeniləmək olmur",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Şifrələmə proqramı inisializasiya edilməyib! Ola bilər ki, şifrələnmə proqramı sizin sessiya müddətində yenidən işə salınıb. Xahiş olunur çıxıb yenidən girişə cəhd edəsiniz ki, şifrələnmə proqramı sizin istifadəçı adı üçün təkrar inisializasiya edilsin. ",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Sizin gizli açarınız doğru deyil! Təxmin edilir ki, sizin şifrə %s-dən kənarda dəyişdirilib(misal üçün sizin koorporativ qovluq). Siz öz şifrələnmiş fayllarınıza yetkinizi bərpa etmək üçün, öz şifrənizi şəxsi quraşdırmalarınızda yeniləyə bilərsiniz.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu faylı deşifrə etmək olmur və ola bilər ki, bu paylaşımda olan fayldır. Xahiş olunur faylın sahibinə həmin faylı sizinlə yenidən paylaşım etməsini bildirəsiniz. ",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Tanınmayan səhv. Xahiş olunur sistem quraşdırmalarınızı yoxlayın yada öz inzibatçınızla əlaqə yaradın",
|
||||
"Initial encryption started... This can take some time. Please wait." : "İlkin şifələnmə başlandı... Bu müəyyən vaxt ala bilər. Xahiş olunur gözləyəsiniz.",
|
||||
"Initial encryption running... Please try again later." : "İlkin şifrələnmə işləyir... Xahiş olunur birazdan yenidən müraciət edəsiniz.",
|
||||
"Missing requirements." : "Taləbatlar çatışmır.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Xahiş olunur ki, PHP-in OpenSSL genişlənməsi yüklənib və düzgün konfiqurasiya edilib. İndiki hal üçün şifrələnmə proqramı dayandırılmışdır.",
|
||||
"Following users are not set up for encryption:" : "Göstərilən istifadəçilər şifrələnmə üçün quraşdırılmayıb:",
|
||||
"Go directly to your %spersonal settings%s." : "Birbaşa öz %sşəxsi quraşdırmalarınıza%s gedin.",
|
||||
"Server-side Encryption" : "Server-tərəf şifrələnmə",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Proqram şifrələnməsi işə salınıb ancaq, sizin açarlar inisializasiya edilməyib. Xahiş edilir çıxıb yenidən daxil olasınız",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Bərpa açarını aktivləşdir(şifrə itirilməsi hadısələrində, istifadəçi fayllarının bərpasına izin verir)",
|
||||
"Recovery key password" : "Açar şifrənin bərpa edilməsi",
|
||||
"Repeat Recovery key password" : "Bərpa açarın şifrəsini təkrar edin",
|
||||
"Enabled" : "İşə salınıb",
|
||||
"Disabled" : "Dayandırılıb",
|
||||
"Change recovery key password:" : "Bərpa açarın şifrəsini dəyişdir:",
|
||||
"Old Recovery key password" : "Köhnə bərpa açarı şifrəsi",
|
||||
"New Recovery key password" : "Yeni bərpa açarı şifrəsi",
|
||||
"Repeat New Recovery key password" : "Yeni bərpa açarı şifrəsini təkrar edin",
|
||||
"Change Password" : "Şifrəni dəyişdir",
|
||||
"Your private key password no longer matches your log-in password." : "Sizin gizli açar şifrəsi, artıq giriş adınızla uyğun gəlmir.",
|
||||
"Set your old private key password to your current log-in password:" : "Köhnə açar şifrənizi, sizin hal-hazırki giriş şifrənizə təyin edin: ",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Əgər siz köhnə şifrənizi xatırlamırsınızsa, öz inzibatçınızdan fayllarınızın bərpasını istəyə bilərsiniz.",
|
||||
"Old log-in password" : "Köhnə giriş şifrəsi",
|
||||
"Current log-in password" : "Hal-hazırki giriş şifrəsi",
|
||||
"Update Private Key Password" : "Gizli açar şifrəsini yenilə",
|
||||
"Enable password recovery:" : "Şifrə bərpasını işə sal:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Bu opsiyanın aktiv edilməsi sizə, şifrənin itdiyi hallarda bütün şifrələnmiş fayllarınıza yetkinin yenidən əldə edilməsinə şərait yaradacaq"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Непозната грешка.",
|
||||
"Missing recovery key password" : "Липсва парола за възстановяване",
|
||||
"Please repeat the recovery key password" : "Повтори новата парола за възстановяване",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Повторената парола за възстановяване не съвпада със зададената парола за възстановяване",
|
||||
"Recovery key successfully enabled" : "Успешно включване на опцията ключ за възстановяване.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!",
|
||||
"Recovery key successfully disabled" : "Успешно изключване на ключа за възстановяване.",
|
||||
"Please provide the old recovery password" : "Моля, въведи старата парола за възстановяване",
|
||||
"Please provide a new recovery password" : "Моля, задай нова парола за възстановяване",
|
||||
"Please repeat the new recovery password" : "Моля, въведи повторна новата парола за възстановяване",
|
||||
"Password successfully changed." : "Паролата е успешно променена.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Грешка при промяна на паролата. Може би старата ти парола е сгрешена.",
|
||||
"Could not update the private key password." : "Неуспешна промяна на паролата на личния ключ",
|
||||
"The old password was not correct, please try again." : "Старата парола е грешна, опитай отново.",
|
||||
"The current log-in password was not correct, please try again." : "Грешна парола за вписване, опитай отново.",
|
||||
"Private key password successfully updated." : "Успешно променена тайната парола за ключа.",
|
||||
"File recovery settings updated" : "Настройките за възстановяване на файлове са променени.",
|
||||
"Could not update file recovery" : "Неуспешна промяна на настройките за възстановяване на файлове.",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Неуспешна инициализация на криптиращото приложение! Може би криптиращото приложение бе включено по време на твоята сесия. Отпиши се и се впиши обратно за да инциализираш криптиращото приложение.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Твоят таен ключ е невалиден! Вероятно твоята парола беше променена извън %s(пр. твоята корпоративна директория). Можеш да промениш своят таен ключ в Лични настройки, за да възстановиш достъпа до криптираните файлове.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Непозната грешка. Моля, провери системните настройки или се свържи с администратора.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Първоначалното криптиране започна... Това може да отнеме време. Моля изчакай.",
|
||||
"Initial encryption running... Please try again later." : "Тече първоначално криптиране... Моля опитай по-късно.",
|
||||
"Missing requirements." : "Липсва задължителна информация.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Моля уверете се че OpenSSL заедно с PHP разширене са включени и конфигурирани правилно. За сега, криптиращото приложение е изключено.",
|
||||
"Following users are not set up for encryption:" : "Следните потребители не са настроени за криптиране:",
|
||||
"Go directly to your %spersonal settings%s." : "Отиде направо към твоите %sлични настройки%s.",
|
||||
"Server-side Encryption" : "Криптиране от страна на сървъра",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Включи опцията възстановяване на ключ (разрешава да възстанови файловете на потребителите в случай на загубена парола):",
|
||||
"Recovery key password" : "Парола за възстановяане на ключа",
|
||||
"Repeat Recovery key password" : "Повтори паролата за възстановяване на ключа",
|
||||
"Enabled" : "Включено",
|
||||
"Disabled" : "Изключено",
|
||||
"Change recovery key password:" : "Промени паролата за въстановяване на ключа:",
|
||||
"Old Recovery key password" : "Старата парола за въстановяване на ключа",
|
||||
"New Recovery key password" : "Новата парола за възстановяване на ключа",
|
||||
"Repeat New Recovery key password" : "Повтори новата паролза за възстановяване на ключа",
|
||||
"Change Password" : "Промени Паролата",
|
||||
"Your private key password no longer matches your log-in password." : "Личният ти ключ не съвпада с паролата за вписване.",
|
||||
"Set your old private key password to your current log-in password:" : "Промени паролата за тайния ти включ на паролата за вписване:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ако не помниш старата парола помоли администратора да възстанови файловете ти.",
|
||||
"Old log-in password" : "Стара парола за вписване",
|
||||
"Current log-in password" : "Текуща парола за вписване",
|
||||
"Update Private Key Password" : "Промени Тайната Парола за Ключа",
|
||||
"Enable password recovery:" : "Включи опцията възстановяване на паролата:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола."
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Непозната грешка.",
|
||||
"Missing recovery key password" : "Липсва парола за възстановяване",
|
||||
"Please repeat the recovery key password" : "Повтори новата парола за възстановяване",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Повторената парола за възстановяване не съвпада със зададената парола за възстановяване",
|
||||
"Recovery key successfully enabled" : "Успешно включване на опцията ключ за възстановяване.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!",
|
||||
"Recovery key successfully disabled" : "Успешно изключване на ключа за възстановяване.",
|
||||
"Please provide the old recovery password" : "Моля, въведи старата парола за възстановяване",
|
||||
"Please provide a new recovery password" : "Моля, задай нова парола за възстановяване",
|
||||
"Please repeat the new recovery password" : "Моля, въведи повторна новата парола за възстановяване",
|
||||
"Password successfully changed." : "Паролата е успешно променена.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Грешка при промяна на паролата. Може би старата ти парола е сгрешена.",
|
||||
"Could not update the private key password." : "Неуспешна промяна на паролата на личния ключ",
|
||||
"The old password was not correct, please try again." : "Старата парола е грешна, опитай отново.",
|
||||
"The current log-in password was not correct, please try again." : "Грешна парола за вписване, опитай отново.",
|
||||
"Private key password successfully updated." : "Успешно променена тайната парола за ключа.",
|
||||
"File recovery settings updated" : "Настройките за възстановяване на файлове са променени.",
|
||||
"Could not update file recovery" : "Неуспешна промяна на настройките за възстановяване на файлове.",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Неуспешна инициализация на криптиращото приложение! Може би криптиращото приложение бе включено по време на твоята сесия. Отпиши се и се впиши обратно за да инциализираш криптиращото приложение.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Твоят таен ключ е невалиден! Вероятно твоята парола беше променена извън %s(пр. твоята корпоративна директория). Можеш да промениш своят таен ключ в Лични настройки, за да възстановиш достъпа до криптираните файлове.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Неуспешно разшифроване на този файл, вероятно това е споделен файл. Моля, поискай собственика на файла да го сподели повторно с теб.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Непозната грешка. Моля, провери системните настройки или се свържи с администратора.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Първоначалното криптиране започна... Това може да отнеме време. Моля изчакай.",
|
||||
"Initial encryption running... Please try again later." : "Тече първоначално криптиране... Моля опитай по-късно.",
|
||||
"Missing requirements." : "Липсва задължителна информация.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Моля уверете се че OpenSSL заедно с PHP разширене са включени и конфигурирани правилно. За сега, криптиращото приложение е изключено.",
|
||||
"Following users are not set up for encryption:" : "Следните потребители не са настроени за криптиране:",
|
||||
"Go directly to your %spersonal settings%s." : "Отиде направо към твоите %sлични настройки%s.",
|
||||
"Server-side Encryption" : "Криптиране от страна на сървъра",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Програмата за криптиране е включена, но твоите ключове не са зададени, моля отпиши си и се впиши отново.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Включи опцията възстановяване на ключ (разрешава да възстанови файловете на потребителите в случай на загубена парола):",
|
||||
"Recovery key password" : "Парола за възстановяане на ключа",
|
||||
"Repeat Recovery key password" : "Повтори паролата за възстановяване на ключа",
|
||||
"Enabled" : "Включено",
|
||||
"Disabled" : "Изключено",
|
||||
"Change recovery key password:" : "Промени паролата за въстановяване на ключа:",
|
||||
"Old Recovery key password" : "Старата парола за въстановяване на ключа",
|
||||
"New Recovery key password" : "Новата парола за възстановяване на ключа",
|
||||
"Repeat New Recovery key password" : "Повтори новата паролза за възстановяване на ключа",
|
||||
"Change Password" : "Промени Паролата",
|
||||
"Your private key password no longer matches your log-in password." : "Личният ти ключ не съвпада с паролата за вписване.",
|
||||
"Set your old private key password to your current log-in password:" : "Промени паролата за тайния ти включ на паролата за вписване:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ако не помниш старата парола помоли администратора да възстанови файловете ти.",
|
||||
"Old log-in password" : "Стара парола за вписване",
|
||||
"Current log-in password" : "Текуща парола за вписване",
|
||||
"Update Private Key Password" : "Промени Тайната Парола за Ключа",
|
||||
"Enable password recovery:" : "Включи опцията възстановяване на паролата:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола."
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "অজানা জটিলতা",
|
||||
"Recovery key successfully enabled" : "পূনরুদ্ধার চাবি সার্থকভাবে কার্যকর করা হয়েছে",
|
||||
"Recovery key successfully disabled" : "পূনরুদ্ধার চাবি সার্থকভাবে অকার্যকর করা হয়েছে",
|
||||
"Password successfully changed." : "আপনার কূটশব্দটি সার্থকভাবে পরিবর্তন করা হয়েছে ",
|
||||
"Initial encryption started... This can take some time. Please wait." : "প্রাথমিক এনক্রিপসন শুরু হয়েছে.... এটি কিছুটা সময় নিতে পারে। অপেক্ষা করুন।",
|
||||
"Initial encryption running... Please try again later." : "প্রাথমিক এনক্রিপসন চলছে.... দয়া করে পরে আবার চেষ্টা করুন।",
|
||||
"Missing requirements." : "প্রয়োজনানুযায়ী ঘাটতি আছে।",
|
||||
"Following users are not set up for encryption:" : "নিম্নবর্ণিত ব্যবহারকারীগণ এনক্রিপসনের জন্য অধিকারপ্রাপ্ত নন:",
|
||||
"Go directly to your %spersonal settings%s." : "সরাসরি আপনার %spersonal settings%s এ যান।",
|
||||
"Repeat Recovery key password" : "পূণরূদ্ধার কি এর কুটশব্দ পূণরায় দিন",
|
||||
"Enabled" : "কার্যকর",
|
||||
"Disabled" : "অকার্যকর",
|
||||
"Change recovery key password:" : "পূণরূদ্ধার কি এর কুটশব্দ পরিবর্তন করুন:",
|
||||
"Old Recovery key password" : "পূণরূদ্ধার কি এর পুরাতন কুটশব্দ",
|
||||
"New Recovery key password" : "পূণরূদ্ধার কি এর নতুন কুটশব্দ",
|
||||
"Repeat New Recovery key password" : "পূণরূদ্ধার কি এর নতুন কুটশব্দ পূণরায় দিন",
|
||||
"Change Password" : "কূটশব্দ পরিবর্তন করুন"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,20 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "অজানা জটিলতা",
|
||||
"Recovery key successfully enabled" : "পূনরুদ্ধার চাবি সার্থকভাবে কার্যকর করা হয়েছে",
|
||||
"Recovery key successfully disabled" : "পূনরুদ্ধার চাবি সার্থকভাবে অকার্যকর করা হয়েছে",
|
||||
"Password successfully changed." : "আপনার কূটশব্দটি সার্থকভাবে পরিবর্তন করা হয়েছে ",
|
||||
"Initial encryption started... This can take some time. Please wait." : "প্রাথমিক এনক্রিপসন শুরু হয়েছে.... এটি কিছুটা সময় নিতে পারে। অপেক্ষা করুন।",
|
||||
"Initial encryption running... Please try again later." : "প্রাথমিক এনক্রিপসন চলছে.... দয়া করে পরে আবার চেষ্টা করুন।",
|
||||
"Missing requirements." : "প্রয়োজনানুযায়ী ঘাটতি আছে।",
|
||||
"Following users are not set up for encryption:" : "নিম্নবর্ণিত ব্যবহারকারীগণ এনক্রিপসনের জন্য অধিকারপ্রাপ্ত নন:",
|
||||
"Go directly to your %spersonal settings%s." : "সরাসরি আপনার %spersonal settings%s এ যান।",
|
||||
"Repeat Recovery key password" : "পূণরূদ্ধার কি এর কুটশব্দ পূণরায় দিন",
|
||||
"Enabled" : "কার্যকর",
|
||||
"Disabled" : "অকার্যকর",
|
||||
"Change recovery key password:" : "পূণরূদ্ধার কি এর কুটশব্দ পরিবর্তন করুন:",
|
||||
"Old Recovery key password" : "পূণরূদ্ধার কি এর পুরাতন কুটশব্দ",
|
||||
"New Recovery key password" : "পূণরূদ্ধার কি এর নতুন কুটশব্দ",
|
||||
"Repeat New Recovery key password" : "পূণরূদ্ধার কি এর নতুন কুটশব্দ পূণরায় দিন",
|
||||
"Change Password" : "কূটশব্দ পরিবর্তন করুন"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Nepoznata greška",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacija šifriranja je uključena, ali vaši ključevi nisu inicializirani, molim odjavite se i ponovno prijavite",
|
||||
"Enabled" : "Aktivirano",
|
||||
"Disabled" : "Onemogućeno"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Nepoznata greška",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacija šifriranja je uključena, ali vaši ključevi nisu inicializirani, molim odjavite se i ponovno prijavite",
|
||||
"Enabled" : "Aktivirano",
|
||||
"Disabled" : "Onemogućeno"
|
||||
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
|
||||
}
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Error desconegut",
|
||||
"Recovery key successfully enabled" : "La clau de recuperació s'ha activat",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No s'ha pogut desactivar la calu de recuperació. Comproveu la contrasenya de la clau de recuperació!",
|
||||
"Recovery key successfully disabled" : "La clau de recuperació s'ha descativat",
|
||||
"Password successfully changed." : "La contrasenya s'ha canviat.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.",
|
||||
"Private key password successfully updated." : "La contrasenya de la clau privada s'ha actualitzat.",
|
||||
"File recovery settings updated" : "S'han actualitzat els arranjaments de recuperació de fitxers",
|
||||
"Could not update file recovery" : "No s'ha pogut actualitzar la recuperació de fitxers",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "L'aplicació d'encriptació no està inicialitzada! Potser l'aplicació d'encriptació ha estat reiniciada durant la sessió. Intenteu sortir i acreditar-vos de nou per reinicialitzar l'aplicació d'encriptació.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora de %s (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Error desconegut. Comproveu l'arranjament del sistema o aviseu a l'administrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "La encriptació inicial ha començat... Pot trigar una estona, espereu.",
|
||||
"Initial encryption running... Please try again later." : "encriptació inicial en procés... Proveu-ho més tard.",
|
||||
"Missing requirements." : "Manca de requisits.",
|
||||
"Following users are not set up for encryption:" : "Els usuaris següents no estan configurats per a l'encriptació:",
|
||||
"Go directly to your %spersonal settings%s." : "Vés directament a l'%sarranjament personal%s.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):",
|
||||
"Recovery key password" : "Clau de recuperació de la contrasenya",
|
||||
"Repeat Recovery key password" : "Repetiu la clau de recuperació de contrasenya",
|
||||
"Enabled" : "Activat",
|
||||
"Disabled" : "Desactivat",
|
||||
"Change recovery key password:" : "Canvia la clau de recuperació de contrasenya:",
|
||||
"Old Recovery key password" : "Antiga clau de recuperació de contrasenya",
|
||||
"New Recovery key password" : "Nova clau de recuperació de contrasenya",
|
||||
"Repeat New Recovery key password" : "Repetiu la nova clau de recuperació de contrasenya",
|
||||
"Change Password" : "Canvia la contrasenya",
|
||||
"Your private key password no longer matches your log-in password." : "La clau privada ja no es correspon amb la contrasenya d'accés:",
|
||||
"Set your old private key password to your current log-in password:" : "Establiu la vostra antiga clau privada a l'actual contrasenya d'accés:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers.",
|
||||
"Old log-in password" : "Contrasenya anterior d'accés",
|
||||
"Current log-in password" : "Contrasenya d'accés actual",
|
||||
"Update Private Key Password" : "Actualitza la contrasenya de clau privada",
|
||||
"Enable password recovery:" : "Habilita la recuperació de contrasenya:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Error desconegut",
|
||||
"Recovery key successfully enabled" : "La clau de recuperació s'ha activat",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No s'ha pogut desactivar la calu de recuperació. Comproveu la contrasenya de la clau de recuperació!",
|
||||
"Recovery key successfully disabled" : "La clau de recuperació s'ha descativat",
|
||||
"Password successfully changed." : "La contrasenya s'ha canviat.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.",
|
||||
"Private key password successfully updated." : "La contrasenya de la clau privada s'ha actualitzat.",
|
||||
"File recovery settings updated" : "S'han actualitzat els arranjaments de recuperació de fitxers",
|
||||
"Could not update file recovery" : "No s'ha pogut actualitzar la recuperació de fitxers",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "L'aplicació d'encriptació no està inicialitzada! Potser l'aplicació d'encriptació ha estat reiniciada durant la sessió. Intenteu sortir i acreditar-vos de nou per reinicialitzar l'aplicació d'encriptació.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora de %s (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Error desconegut. Comproveu l'arranjament del sistema o aviseu a l'administrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "La encriptació inicial ha començat... Pot trigar una estona, espereu.",
|
||||
"Initial encryption running... Please try again later." : "encriptació inicial en procés... Proveu-ho més tard.",
|
||||
"Missing requirements." : "Manca de requisits.",
|
||||
"Following users are not set up for encryption:" : "Els usuaris següents no estan configurats per a l'encriptació:",
|
||||
"Go directly to your %spersonal settings%s." : "Vés directament a l'%sarranjament personal%s.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Activa la clau de recuperació (permet recuperar fitxers d'usuaris en cas de pèrdua de contrasenya):",
|
||||
"Recovery key password" : "Clau de recuperació de la contrasenya",
|
||||
"Repeat Recovery key password" : "Repetiu la clau de recuperació de contrasenya",
|
||||
"Enabled" : "Activat",
|
||||
"Disabled" : "Desactivat",
|
||||
"Change recovery key password:" : "Canvia la clau de recuperació de contrasenya:",
|
||||
"Old Recovery key password" : "Antiga clau de recuperació de contrasenya",
|
||||
"New Recovery key password" : "Nova clau de recuperació de contrasenya",
|
||||
"Repeat New Recovery key password" : "Repetiu la nova clau de recuperació de contrasenya",
|
||||
"Change Password" : "Canvia la contrasenya",
|
||||
"Your private key password no longer matches your log-in password." : "La clau privada ja no es correspon amb la contrasenya d'accés:",
|
||||
"Set your old private key password to your current log-in password:" : "Establiu la vostra antiga clau privada a l'actual contrasenya d'accés:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no recordeu la contrasenya anterior podeu demanar a l'administrador que recuperi els vostres fitxers.",
|
||||
"Old log-in password" : "Contrasenya anterior d'accés",
|
||||
"Current log-in password" : "Contrasenya d'accés actual",
|
||||
"Update Private Key Password" : "Actualitza la contrasenya de clau privada",
|
||||
"Enable password recovery:" : "Habilita la recuperació de contrasenya:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Neznámá chyba",
|
||||
"Missing recovery key password" : "Chybí heslo klíče pro obnovu",
|
||||
"Please repeat the recovery key password" : "Zopakujte prosím heslo klíče pro obnovu",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Opakované heslo pro obnovu nesouhlasí se zadaným heslem",
|
||||
"Recovery key successfully enabled" : "Záchranný klíč byl úspěšně povolen",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo svého záchranného klíče!",
|
||||
"Recovery key successfully disabled" : "Záchranný klíč byl úspěšně zakázán",
|
||||
"Please provide the old recovery password" : "Zadejte prosím staré heslo pro obnovu",
|
||||
"Please provide a new recovery password" : "Zadejte prosím nové heslo pro obnovu",
|
||||
"Please repeat the new recovery password" : "Zopakujte prosím nové heslo pro obnovu",
|
||||
"Password successfully changed." : "Heslo bylo úspěšně změněno.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.",
|
||||
"Could not update the private key password." : "Nelze aktualizovat heslo soukromého klíče.",
|
||||
"The old password was not correct, please try again." : "Staré heslo nebylo zadáno správně, zkuste to prosím znovu.",
|
||||
"The current log-in password was not correct, please try again." : "Současné přihlašovací heslo nebylo zadáno správně, zkuste to prosím znovu.",
|
||||
"Private key password successfully updated." : "Heslo soukromého klíče úspěšně aktualizováno.",
|
||||
"File recovery settings updated" : "Možnosti záchrany souborů aktualizovány",
|
||||
"Could not update file recovery" : "Nelze nastavit záchranu souborů",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Neznámá chyba. Zkontrolujte nastavení systému nebo kontaktujte vašeho správce.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.",
|
||||
"Initial encryption running... Please try again later." : "Probíhá počáteční šifrování... Zkuste to prosím znovu později.",
|
||||
"Missing requirements." : "Nesplněné závislosti.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Ujistěte se prosím, že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Aplikace pro šifrování byla prozatím vypnuta.",
|
||||
"Following users are not set up for encryption:" : "Následující uživatelé nemají nastavené šifrování:",
|
||||
"Go directly to your %spersonal settings%s." : "Přejít přímo do svého %sosobního nastavení%s.",
|
||||
"Server-side Encryption" : "Šifrování na serveru",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)",
|
||||
"Recovery key password" : "Heslo klíče pro obnovu",
|
||||
"Repeat Recovery key password" : "Zopakujte heslo klíče pro obnovu",
|
||||
"Enabled" : "Povoleno",
|
||||
"Disabled" : "Zakázáno",
|
||||
"Change recovery key password:" : "Změna hesla klíče pro obnovu:",
|
||||
"Old Recovery key password" : "Původní heslo klíče pro obnovu",
|
||||
"New Recovery key password" : "Nové heslo klíče pro obnovu",
|
||||
"Repeat New Recovery key password" : "Zopakujte nové heslo klíče pro obnovu",
|
||||
"Change Password" : "Změnit heslo",
|
||||
"Your private key password no longer matches your log-in password." : "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem.",
|
||||
"Set your old private key password to your current log-in password:" : "Změňte své staré heslo soukromého klíče na stejné, jako je vaše současné přihlašovací heslo:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Pokud si nepamatujete své původní heslo, můžete požádat správce o obnovu vašich souborů.",
|
||||
"Old log-in password" : "Původní přihlašovací heslo",
|
||||
"Current log-in password" : "Aktuální přihlašovací heslo",
|
||||
"Update Private Key Password" : "Změnit heslo soukromého klíče",
|
||||
"Enable password recovery:" : "Povolit obnovu hesla:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo"
|
||||
},
|
||||
"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Neznámá chyba",
|
||||
"Missing recovery key password" : "Chybí heslo klíče pro obnovu",
|
||||
"Please repeat the recovery key password" : "Zopakujte prosím heslo klíče pro obnovu",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Opakované heslo pro obnovu nesouhlasí se zadaným heslem",
|
||||
"Recovery key successfully enabled" : "Záchranný klíč byl úspěšně povolen",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo svého záchranného klíče!",
|
||||
"Recovery key successfully disabled" : "Záchranný klíč byl úspěšně zakázán",
|
||||
"Please provide the old recovery password" : "Zadejte prosím staré heslo pro obnovu",
|
||||
"Please provide a new recovery password" : "Zadejte prosím nové heslo pro obnovu",
|
||||
"Please repeat the new recovery password" : "Zopakujte prosím nové heslo pro obnovu",
|
||||
"Password successfully changed." : "Heslo bylo úspěšně změněno.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.",
|
||||
"Could not update the private key password." : "Nelze aktualizovat heslo soukromého klíče.",
|
||||
"The old password was not correct, please try again." : "Staré heslo nebylo zadáno správně, zkuste to prosím znovu.",
|
||||
"The current log-in password was not correct, please try again." : "Současné přihlašovací heslo nebylo zadáno správně, zkuste to prosím znovu.",
|
||||
"Private key password successfully updated." : "Heslo soukromého klíče úspěšně aktualizováno.",
|
||||
"File recovery settings updated" : "Možnosti záchrany souborů aktualizovány",
|
||||
"Could not update file recovery" : "Nelze nastavit záchranu souborů",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Aplikace pro šifrování není inicializována! Je možné, že aplikace byla znovu aktivována během vašeho přihlášení. Zkuste se prosím odhlásit a znovu přihlásit pro provedení inicializace šifrovací aplikace.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno vně systému %s (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Neznámá chyba. Zkontrolujte nastavení systému nebo kontaktujte vašeho správce.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Počáteční šifrování zahájeno... Toto může chvíli trvat. Počkejte prosím.",
|
||||
"Initial encryption running... Please try again later." : "Probíhá počáteční šifrování... Zkuste to prosím znovu později.",
|
||||
"Missing requirements." : "Nesplněné závislosti.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Ujistěte se prosím, že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Aplikace pro šifrování byla prozatím vypnuta.",
|
||||
"Following users are not set up for encryption:" : "Následující uživatelé nemají nastavené šifrování:",
|
||||
"Go directly to your %spersonal settings%s." : "Přejít přímo do svého %sosobního nastavení%s.",
|
||||
"Server-side Encryption" : "Šifrování na serveru",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)",
|
||||
"Recovery key password" : "Heslo klíče pro obnovu",
|
||||
"Repeat Recovery key password" : "Zopakujte heslo klíče pro obnovu",
|
||||
"Enabled" : "Povoleno",
|
||||
"Disabled" : "Zakázáno",
|
||||
"Change recovery key password:" : "Změna hesla klíče pro obnovu:",
|
||||
"Old Recovery key password" : "Původní heslo klíče pro obnovu",
|
||||
"New Recovery key password" : "Nové heslo klíče pro obnovu",
|
||||
"Repeat New Recovery key password" : "Zopakujte nové heslo klíče pro obnovu",
|
||||
"Change Password" : "Změnit heslo",
|
||||
"Your private key password no longer matches your log-in password." : "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem.",
|
||||
"Set your old private key password to your current log-in password:" : "Změňte své staré heslo soukromého klíče na stejné, jako je vaše současné přihlašovací heslo:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Pokud si nepamatujete své původní heslo, můžete požádat správce o obnovu vašich souborů.",
|
||||
"Old log-in password" : "Původní přihlašovací heslo",
|
||||
"Current log-in password" : "Aktuální přihlašovací heslo",
|
||||
"Update Private Key Password" : "Změnit heslo soukromého klíče",
|
||||
"Enable password recovery:" : "Povolit obnovu hesla:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo"
|
||||
},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Encryption" : "Amgryptiad"
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{ "translations": {
|
||||
"Encryption" : "Amgryptiad"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Ukendt fejl",
|
||||
"Missing recovery key password" : "Der mangler kodeord for gendannelsesnøgle",
|
||||
"Please repeat the recovery key password" : "Gentag venligst kodeordet for gendannelsesnøglen",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Det gentagne kodeord for gendannelsesnøglen stemmer ikke med det angivne kodeord for gendannelsesnøglen",
|
||||
"Recovery key successfully enabled" : "Gendannelsesnøgle aktiveret med succes",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
|
||||
"Recovery key successfully disabled" : "Gendannelsesnøgle deaktiveret succesfuldt",
|
||||
"Please provide the old recovery password" : "Angiv venligst det gamle kodeord for gendannelsesnøglen",
|
||||
"Please provide a new recovery password" : "Angiv venligst et nyt kodeord til gendannelse",
|
||||
"Please repeat the new recovery password" : "Gentag venligst det nye kodeord til gendannelse",
|
||||
"Password successfully changed." : "Kodeordet blev ændret succesfuldt",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.",
|
||||
"Could not update the private key password." : "Kunne ikke opdatere kodeordet til den private nøgle.",
|
||||
"The old password was not correct, please try again." : "Det gamle kodeord var ikke korrekt, prøv venligst igen.",
|
||||
"The current log-in password was not correct, please try again." : "Det nuværende kodeord til log-in var ikke korrekt, prøv venligst igen.",
|
||||
"Private key password successfully updated." : "Privat nøgle kodeord succesfuldt opdateret.",
|
||||
"File recovery settings updated" : "Filgendannelsesindstillinger opdateret",
|
||||
"Could not update file recovery" : "Kunne ikke opdatere filgendannelse",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Ukendt fejl. Venligst tjek dine systemindstillinger eller kontakt din systemadministrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Førstegangskrypteringen er påbegyndt... Dette kan tage nogen tid. Vent venligst.",
|
||||
"Initial encryption running... Please try again later." : "Kryptering foretages... Prøv venligst igen senere.",
|
||||
"Missing requirements." : "Manglende betingelser.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Sørg for at OpenSSL, sammen med PHP-udvidelsen, er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.",
|
||||
"Following users are not set up for encryption:" : "Følgende brugere er ikke sat op til kryptering:",
|
||||
"Go directly to your %spersonal settings%s." : "Gå direkte til dine %spersonlige indstillinger%s.",
|
||||
"Server-side Encryption" : "Kryptering på serverdelen",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet er aktiveret, men din nøgler er ikke igangsat. Log venligst ud og ind igen.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):",
|
||||
"Recovery key password" : "Gendannelsesnøgle kodeord",
|
||||
"Repeat Recovery key password" : "Gentag gendannelse af nøglekoden",
|
||||
"Enabled" : "Aktiveret",
|
||||
"Disabled" : "Deaktiveret",
|
||||
"Change recovery key password:" : "Skift gendannelsesnøgle kodeord:",
|
||||
"Old Recovery key password" : "Gammel Gendannelsesnøgle kodeord",
|
||||
"New Recovery key password" : "Ny Gendannelsesnøgle kodeord",
|
||||
"Repeat New Recovery key password" : "Gentag det nye gendannaleses nøglekodeord",
|
||||
"Change Password" : "Skift Kodeord",
|
||||
"Your private key password no longer matches your log-in password." : "Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord.",
|
||||
"Set your old private key password to your current log-in password:" : "Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. ",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.",
|
||||
"Old log-in password" : "Gammelt login kodeord",
|
||||
"Current log-in password" : "Nuvrende login kodeord",
|
||||
"Update Private Key Password" : "Opdater Privat Nøgle Kodeord",
|
||||
"Enable password recovery:" : "Aktiver kodeord gendannelse:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Ukendt fejl",
|
||||
"Missing recovery key password" : "Der mangler kodeord for gendannelsesnøgle",
|
||||
"Please repeat the recovery key password" : "Gentag venligst kodeordet for gendannelsesnøglen",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Det gentagne kodeord for gendannelsesnøglen stemmer ikke med det angivne kodeord for gendannelsesnøglen",
|
||||
"Recovery key successfully enabled" : "Gendannelsesnøgle aktiveret med succes",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!",
|
||||
"Recovery key successfully disabled" : "Gendannelsesnøgle deaktiveret succesfuldt",
|
||||
"Please provide the old recovery password" : "Angiv venligst det gamle kodeord for gendannelsesnøglen",
|
||||
"Please provide a new recovery password" : "Angiv venligst et nyt kodeord til gendannelse",
|
||||
"Please repeat the new recovery password" : "Gentag venligst det nye kodeord til gendannelse",
|
||||
"Password successfully changed." : "Kodeordet blev ændret succesfuldt",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.",
|
||||
"Could not update the private key password." : "Kunne ikke opdatere kodeordet til den private nøgle.",
|
||||
"The old password was not correct, please try again." : "Det gamle kodeord var ikke korrekt, prøv venligst igen.",
|
||||
"The current log-in password was not correct, please try again." : "Det nuværende kodeord til log-in var ikke korrekt, prøv venligst igen.",
|
||||
"Private key password successfully updated." : "Privat nøgle kodeord succesfuldt opdateret.",
|
||||
"File recovery settings updated" : "Filgendannelsesindstillinger opdateret",
|
||||
"Could not update file recovery" : "Kunne ikke opdatere filgendannelse",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Krypteringsprogrammet er ikke igangsat. Det kan skyldes at krypteringsprogrammet er blevet genaktiveret under din session. Prøv at logge ud og ind igen for at aktivere krypteringsprogrammet. ",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Din private nøgle er ikke gyldig. Sandsynligvis er dit kodeord blevet ændret uden for %s (f.eks dit firmas adressebog). Du kan opdatere din private nøglekode i dine personlige indstillinger for at genskabe adgang til dine krypterede filer.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Ukendt fejl. Venligst tjek dine systemindstillinger eller kontakt din systemadministrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Førstegangskrypteringen er påbegyndt... Dette kan tage nogen tid. Vent venligst.",
|
||||
"Initial encryption running... Please try again later." : "Kryptering foretages... Prøv venligst igen senere.",
|
||||
"Missing requirements." : "Manglende betingelser.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Sørg for at OpenSSL, sammen med PHP-udvidelsen, er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.",
|
||||
"Following users are not set up for encryption:" : "Følgende brugere er ikke sat op til kryptering:",
|
||||
"Go directly to your %spersonal settings%s." : "Gå direkte til dine %spersonlige indstillinger%s.",
|
||||
"Server-side Encryption" : "Kryptering på serverdelen",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet er aktiveret, men din nøgler er ikke igangsat. Log venligst ud og ind igen.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):",
|
||||
"Recovery key password" : "Gendannelsesnøgle kodeord",
|
||||
"Repeat Recovery key password" : "Gentag gendannelse af nøglekoden",
|
||||
"Enabled" : "Aktiveret",
|
||||
"Disabled" : "Deaktiveret",
|
||||
"Change recovery key password:" : "Skift gendannelsesnøgle kodeord:",
|
||||
"Old Recovery key password" : "Gammel Gendannelsesnøgle kodeord",
|
||||
"New Recovery key password" : "Ny Gendannelsesnøgle kodeord",
|
||||
"Repeat New Recovery key password" : "Gentag det nye gendannaleses nøglekodeord",
|
||||
"Change Password" : "Skift Kodeord",
|
||||
"Your private key password no longer matches your log-in password." : "Dit private nøglekodeord stemmer ikke længere overens med dit login-kodeord.",
|
||||
"Set your old private key password to your current log-in password:" : "Sæt dit gamle, private nøglekodeord til at være dit nuværende login-kodeord. ",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.",
|
||||
"Old log-in password" : "Gammelt login kodeord",
|
||||
"Current log-in password" : "Nuvrende login kodeord",
|
||||
"Update Private Key Password" : "Opdater Privat Nøgle Kodeord",
|
||||
"Enable password recovery:" : "Aktiver kodeord gendannelse:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"Missing recovery key password" : "Schlüsselpasswort zur Wiederherstellung fehlt",
|
||||
"Please repeat the recovery key password" : "Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
|
||||
"Recovery key successfully enabled" : "Wiederherstellungsschlüssel wurde erfolgreich aktiviert",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
|
||||
"Recovery key successfully disabled" : "Wiederherstellungsschlüssel deaktiviert.",
|
||||
"Please provide the old recovery password" : "Bitte das alte Passwort zur Wiederherstellung eingeben",
|
||||
"Please provide a new recovery password" : "Bitte das alte Passwort zur Wiederherstellung eingeben",
|
||||
"Please repeat the new recovery password" : "Bitte das neue Passwort zur Wiederherstellung wiederholen",
|
||||
"Password successfully changed." : "Dein Passwort wurde geändert.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.",
|
||||
"Could not update the private key password." : "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
|
||||
"The old password was not correct, please try again." : "Das alte Passwort war nicht korrekt, bitte versuche es noch einmal.",
|
||||
"The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuche es noch einmal.",
|
||||
"Private key password successfully updated." : "Passwort des privaten Schlüssels erfolgreich aktualisiert",
|
||||
"File recovery settings updated" : "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert",
|
||||
"Could not update file recovery" : "Dateiwiederherstellung konnte nicht aktualisiert werden",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Dein Passwort geändert (z.B. in Deinem gemeinsamen Verzeichnis). Du kannst das Passwort Deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Deine Dateien zu gelangen.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Dateibesitzer, ob er die Datei nochmals mit Dir teilt.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Unbekannter Fehler. Bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Initialverschlüsselung gestartet… Dies kann einige Zeit dauern. Bitte warten.",
|
||||
"Initial encryption running... Please try again later." : "Anfangsverschlüsselung läuft … Bitte versuche es später wieder.",
|
||||
"Missing requirements." : "Fehlende Vorraussetzungen",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Bitte stelle sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
|
||||
"Following users are not set up for encryption:" : "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
|
||||
"Go directly to your %spersonal settings%s." : "Direkt zu Deinen %spersonal settings%s wechseln.",
|
||||
"Server-side Encryption" : "Serverseitige Verschlüsselung",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melde Dich nochmals ab und wieder an.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):",
|
||||
"Recovery key password" : "Wiederherstellungsschlüssel-Passwort",
|
||||
"Repeat Recovery key password" : "Schlüssel-Passwort zur Wiederherstellung wiederholen",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Disabled" : "Deaktiviert",
|
||||
"Change recovery key password:" : "Wiederherstellungsschlüssel-Passwort ändern:",
|
||||
"Old Recovery key password" : "Altes Wiederherstellungsschlüssel-Passwort",
|
||||
"New Recovery key password" : "Neues Wiederherstellungsschlüssel-Passwort",
|
||||
"Repeat New Recovery key password" : "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen",
|
||||
"Change Password" : "Passwort ändern",
|
||||
"Your private key password no longer matches your log-in password." : "Dein Passwort für Deinen privaten Schlüssel stimmt nicht mehr mit Deinem Loginpasswort überein.",
|
||||
"Set your old private key password to your current log-in password:" : "Dein altes Passwort für Deinen privaten Schlüssel auf Dein aktuelles Anmeldepasswort einstellen:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Wenn Du Dein altes Passwort vergessen hast, könntest Du Deinen Administrator bitten, Deine Daten wiederherzustellen.",
|
||||
"Old log-in password" : "Altes Login Passwort",
|
||||
"Current log-in password" : "Aktuelles Passwort",
|
||||
"Update Private Key Password" : "Passwort für den privaten Schlüssel aktualisieren",
|
||||
"Enable password recovery:" : "Passwortwiederherstellung aktivieren:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"Missing recovery key password" : "Schlüsselpasswort zur Wiederherstellung fehlt",
|
||||
"Please repeat the recovery key password" : "Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
|
||||
"Recovery key successfully enabled" : "Wiederherstellungsschlüssel wurde erfolgreich aktiviert",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Überprüfe Dein Wiederherstellungspasswort!",
|
||||
"Recovery key successfully disabled" : "Wiederherstellungsschlüssel deaktiviert.",
|
||||
"Please provide the old recovery password" : "Bitte das alte Passwort zur Wiederherstellung eingeben",
|
||||
"Please provide a new recovery password" : "Bitte das alte Passwort zur Wiederherstellung eingeben",
|
||||
"Please repeat the new recovery password" : "Bitte das neue Passwort zur Wiederherstellung wiederholen",
|
||||
"Password successfully changed." : "Dein Passwort wurde geändert.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.",
|
||||
"Could not update the private key password." : "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
|
||||
"The old password was not correct, please try again." : "Das alte Passwort war nicht korrekt, bitte versuche es noch einmal.",
|
||||
"The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuche es noch einmal.",
|
||||
"Private key password successfully updated." : "Passwort des privaten Schlüssels erfolgreich aktualisiert",
|
||||
"File recovery settings updated" : "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert",
|
||||
"Could not update file recovery" : "Dateiwiederherstellung konnte nicht aktualisiert werden",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuche Dich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Dein Passwort geändert (z.B. in Deinem gemeinsamen Verzeichnis). Du kannst das Passwort Deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Deine Dateien zu gelangen.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte frage den Dateibesitzer, ob er die Datei nochmals mit Dir teilt.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Unbekannter Fehler. Bitte prüfe Deine Systemeinstellungen oder kontaktiere Deinen Administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Initialverschlüsselung gestartet… Dies kann einige Zeit dauern. Bitte warten.",
|
||||
"Initial encryption running... Please try again later." : "Anfangsverschlüsselung läuft … Bitte versuche es später wieder.",
|
||||
"Missing requirements." : "Fehlende Vorraussetzungen",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Bitte stelle sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
|
||||
"Following users are not set up for encryption:" : "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
|
||||
"Go directly to your %spersonal settings%s." : "Direkt zu Deinen %spersonal settings%s wechseln.",
|
||||
"Server-side Encryption" : "Serverseitige Verschlüsselung",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melde Dich nochmals ab und wieder an.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):",
|
||||
"Recovery key password" : "Wiederherstellungsschlüssel-Passwort",
|
||||
"Repeat Recovery key password" : "Schlüssel-Passwort zur Wiederherstellung wiederholen",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Disabled" : "Deaktiviert",
|
||||
"Change recovery key password:" : "Wiederherstellungsschlüssel-Passwort ändern:",
|
||||
"Old Recovery key password" : "Altes Wiederherstellungsschlüssel-Passwort",
|
||||
"New Recovery key password" : "Neues Wiederherstellungsschlüssel-Passwort",
|
||||
"Repeat New Recovery key password" : "Neues Schlüssel-Passwort zur Wiederherstellung wiederholen",
|
||||
"Change Password" : "Passwort ändern",
|
||||
"Your private key password no longer matches your log-in password." : "Dein Passwort für Deinen privaten Schlüssel stimmt nicht mehr mit Deinem Loginpasswort überein.",
|
||||
"Set your old private key password to your current log-in password:" : "Dein altes Passwort für Deinen privaten Schlüssel auf Dein aktuelles Anmeldepasswort einstellen:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Wenn Du Dein altes Passwort vergessen hast, könntest Du Deinen Administrator bitten, Deine Daten wiederherzustellen.",
|
||||
"Old log-in password" : "Altes Login Passwort",
|
||||
"Current log-in password" : "Aktuelles Passwort",
|
||||
"Update Private Key Password" : "Passwort für den privaten Schlüssel aktualisieren",
|
||||
"Enable password recovery:" : "Passwortwiederherstellung aktivieren:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Wenn Du diese Option aktivierst, kannst Du Deine verschlüsselten Dateien wiederherstellen, falls Du Dein Passwort vergisst"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"Recovery key successfully enabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
|
||||
"Recovery key successfully disabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
|
||||
"Password successfully changed." : "Das Passwort wurde erfolgreich geändert.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
|
||||
"Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
|
||||
"Could not update the private key password. Maybe the old password was not correct." : "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.",
|
||||
"File recovery settings updated" : "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
|
||||
"Could not update file recovery" : "Die Dateiwiederherstellung konnte nicht aktualisiert werden.",
|
||||
"Missing requirements." : "Fehlende Voraussetzungen",
|
||||
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.",
|
||||
"Following users are not set up for encryption:" : "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
|
||||
"Encryption" : "Verschlüsselung",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).",
|
||||
"Recovery key password" : "Wiederherstellungschlüsselpasswort",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Disabled" : "Deaktiviert",
|
||||
"Change recovery key password:" : "Wiederherstellungsschlüsselpasswort ändern",
|
||||
"Old Recovery key password" : "Altes Wiederherstellungsschlüsselpasswort",
|
||||
"New Recovery key password" : "Neues Wiederherstellungsschlüsselpasswort ",
|
||||
"Change Password" : "Passwort ändern",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.",
|
||||
"Old log-in password" : "Altes Login-Passwort",
|
||||
"Current log-in password" : "Momentanes Login-Passwort",
|
||||
"Update Private Key Password" : "Das Passwort des privaten Schlüssels aktualisieren",
|
||||
"Enable password recovery:" : "Die Passwort-Wiederherstellung aktivieren:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben."
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"Recovery key successfully enabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
|
||||
"Recovery key successfully disabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
|
||||
"Password successfully changed." : "Das Passwort wurde erfolgreich geändert.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
|
||||
"Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
|
||||
"Could not update the private key password. Maybe the old password was not correct." : "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.",
|
||||
"File recovery settings updated" : "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
|
||||
"Could not update file recovery" : "Die Dateiwiederherstellung konnte nicht aktualisiert werden.",
|
||||
"Missing requirements." : "Fehlende Voraussetzungen",
|
||||
"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.",
|
||||
"Following users are not set up for encryption:" : "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:",
|
||||
"Encryption" : "Verschlüsselung",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).",
|
||||
"Recovery key password" : "Wiederherstellungschlüsselpasswort",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Disabled" : "Deaktiviert",
|
||||
"Change recovery key password:" : "Wiederherstellungsschlüsselpasswort ändern",
|
||||
"Old Recovery key password" : "Altes Wiederherstellungsschlüsselpasswort",
|
||||
"New Recovery key password" : "Neues Wiederherstellungsschlüsselpasswort ",
|
||||
"Change Password" : "Passwort ändern",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.",
|
||||
"Old log-in password" : "Altes Login-Passwort",
|
||||
"Current log-in password" : "Momentanes Login-Passwort",
|
||||
"Update Private Key Password" : "Das Passwort des privaten Schlüssels aktualisieren",
|
||||
"Enable password recovery:" : "Die Passwort-Wiederherstellung aktivieren:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben."
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"Missing recovery key password" : "Schlüsselpasswort zur Wiederherstellung fehlt",
|
||||
"Please repeat the recovery key password" : "Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
|
||||
"Recovery key successfully enabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
|
||||
"Recovery key successfully disabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
|
||||
"Please provide the old recovery password" : "Bitte das alte Passwort zur Wiederherstellung eingeben",
|
||||
"Please provide a new recovery password" : "Bitte das neue Passwort zur Wiederherstellung eingeben",
|
||||
"Please repeat the new recovery password" : "Bitte das neue Passwort zur Wiederherstellung wiederholen",
|
||||
"Password successfully changed." : "Das Passwort wurde erfolgreich geändert.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
|
||||
"Could not update the private key password." : "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
|
||||
"The old password was not correct, please try again." : "Das alte Passwort war nicht korrekt, bitte versuchen Sie es noch einmal.",
|
||||
"The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuchen Sie es noch einmal.",
|
||||
"Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
|
||||
"File recovery settings updated" : "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
|
||||
"Could not update file recovery" : "Die Dateiwiederherstellung konnte nicht aktualisiert werden.",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Dateibesitzer, dass er die Datei nochmals mit Ihnen teilt.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Unbekannter Fehler. Bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Anfangsverschlüsselung gestartet … Dieses kann einige Zeit dauern. Bitte warten.",
|
||||
"Initial encryption running... Please try again later." : "Anfangsverschlüsselung läuft … Bitte versuchen Sie es später wieder.",
|
||||
"Missing requirements." : "Fehlende Voraussetzungen",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Bitte stellen Sie sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
|
||||
"Following users are not set up for encryption:" : "Für folgende Benutzer ist keine Verschlüsselung eingerichtet:",
|
||||
"Go directly to your %spersonal settings%s." : "Wechseln Sie direkt zu Ihren %spersonal settings%s.",
|
||||
"Server-side Encryption" : "Serverseitige Verschlüsselung",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte nochmals ab- und wieder anmelden.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht):",
|
||||
"Recovery key password" : "Wiederherstellungschlüsselpasswort",
|
||||
"Repeat Recovery key password" : "Schlüsselpasswort zur Wiederherstellung wiederholen",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Disabled" : "Deaktiviert",
|
||||
"Change recovery key password:" : "Wiederherstellungsschlüsselpasswort ändern",
|
||||
"Old Recovery key password" : "Altes Wiederherstellungsschlüsselpasswort",
|
||||
"New Recovery key password" : "Neues Wiederherstellungsschlüsselpasswort ",
|
||||
"Repeat New Recovery key password" : "Neues Schlüsselpasswort zur Wiederherstellung wiederholen",
|
||||
"Change Password" : "Passwort ändern",
|
||||
"Your private key password no longer matches your log-in password." : "Das Privatschlüsselpasswort stimmt nicht länger mit dem Anmeldepasswort überein.",
|
||||
"Set your old private key password to your current log-in password:" : "Ihr altes Privatschlüsselpasswort auf Ihr aktuelles Anmeldepasswort stellen:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.",
|
||||
"Old log-in password" : "Altes Anmeldepasswort",
|
||||
"Current log-in password" : "Aktuelles Anmeldepasswort",
|
||||
"Update Private Key Password" : "Das Passwort des privaten Schlüssels aktualisieren",
|
||||
"Enable password recovery:" : "Die Passwort-Wiederherstellung aktivieren:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben."
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Unbekannter Fehler",
|
||||
"Missing recovery key password" : "Schlüsselpasswort zur Wiederherstellung fehlt",
|
||||
"Please repeat the recovery key password" : "Schlüsselpasswort zur Wiederherstellung bitte wiederholen",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Das wiederholte Schlüsselpasswort zur Wiederherstellung stimmt nicht mit dem geforderten Schlüsselpasswort zur Wiederherstellung überein",
|
||||
"Recovery key successfully enabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!",
|
||||
"Recovery key successfully disabled" : "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.",
|
||||
"Please provide the old recovery password" : "Bitte das alte Passwort zur Wiederherstellung eingeben",
|
||||
"Please provide a new recovery password" : "Bitte das neue Passwort zur Wiederherstellung eingeben",
|
||||
"Please repeat the new recovery password" : "Bitte das neue Passwort zur Wiederherstellung wiederholen",
|
||||
"Password successfully changed." : "Das Passwort wurde erfolgreich geändert.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.",
|
||||
"Could not update the private key password." : "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden.",
|
||||
"The old password was not correct, please try again." : "Das alte Passwort war nicht korrekt, bitte versuchen Sie es noch einmal.",
|
||||
"The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuchen Sie es noch einmal.",
|
||||
"Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.",
|
||||
"File recovery settings updated" : "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.",
|
||||
"Could not update file recovery" : "Die Dateiwiederherstellung konnte nicht aktualisiert werden.",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Verschlüsselung-App ist nicht initialisiert! Vielleicht wurde die Verschlüsselung-App in der aktuellen Sitzung reaktiviert. Bitte versuchen Sie sich ab- und wieder anzumelden, um die Verschlüsselung-App zu initialisieren.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde außerhalb von %s Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Die Datei kann nicht entschlüsselt werden, da die Datei möglicherweise eine geteilte Datei ist. Bitte fragen Sie den Dateibesitzer, dass er die Datei nochmals mit Ihnen teilt.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Unbekannter Fehler. Bitte prüfen Sie die Systemeinstellungen oder kontaktieren Sie Ihren Administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Anfangsverschlüsselung gestartet … Dieses kann einige Zeit dauern. Bitte warten.",
|
||||
"Initial encryption running... Please try again later." : "Anfangsverschlüsselung läuft … Bitte versuchen Sie es später wieder.",
|
||||
"Missing requirements." : "Fehlende Voraussetzungen",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Bitte stellen Sie sicher, dass OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung ist vorerst deaktiviert.",
|
||||
"Following users are not set up for encryption:" : "Für folgende Benutzer ist keine Verschlüsselung eingerichtet:",
|
||||
"Go directly to your %spersonal settings%s." : "Wechseln Sie direkt zu Ihren %spersonal settings%s.",
|
||||
"Server-side Encryption" : "Serverseitige Verschlüsselung",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte nochmals ab- und wieder anmelden.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht):",
|
||||
"Recovery key password" : "Wiederherstellungschlüsselpasswort",
|
||||
"Repeat Recovery key password" : "Schlüsselpasswort zur Wiederherstellung wiederholen",
|
||||
"Enabled" : "Aktiviert",
|
||||
"Disabled" : "Deaktiviert",
|
||||
"Change recovery key password:" : "Wiederherstellungsschlüsselpasswort ändern",
|
||||
"Old Recovery key password" : "Altes Wiederherstellungsschlüsselpasswort",
|
||||
"New Recovery key password" : "Neues Wiederherstellungsschlüsselpasswort ",
|
||||
"Repeat New Recovery key password" : "Neues Schlüsselpasswort zur Wiederherstellung wiederholen",
|
||||
"Change Password" : "Passwort ändern",
|
||||
"Your private key password no longer matches your log-in password." : "Das Privatschlüsselpasswort stimmt nicht länger mit dem Anmeldepasswort überein.",
|
||||
"Set your old private key password to your current log-in password:" : "Ihr altes Privatschlüsselpasswort auf Ihr aktuelles Anmeldepasswort stellen:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.",
|
||||
"Old log-in password" : "Altes Anmeldepasswort",
|
||||
"Current log-in password" : "Aktuelles Anmeldepasswort",
|
||||
"Update Private Key Password" : "Das Passwort des privaten Schlüssels aktualisieren",
|
||||
"Enable password recovery:" : "Die Passwort-Wiederherstellung aktivieren:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben."
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Άγνωστο σφάλμα",
|
||||
"Missing recovery key password" : "Λείπει το κλειδί επαναφοράς κωδικού",
|
||||
"Please repeat the recovery key password" : "Παρακαλώ επαναλάβετε το κλειδί επαναφοράς κωδικού",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Η επανάληψη του κλειδιού επαναφοράς κωδικού δεν ταιριάζει με το δοσμένο κλειδί επαναφοράς κωδικού",
|
||||
"Recovery key successfully enabled" : "Επιτυχής ενεργοποίηση κλειδιού ανάκτησης",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Αποτυχία απενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!",
|
||||
"Recovery key successfully disabled" : "Επιτυχής απενεργοποίηση κλειδιού ανάκτησης",
|
||||
"Please provide the old recovery password" : "Παρακαλώ παρέχετε τον παλιό κωδικό επαναφοράς",
|
||||
"Please provide a new recovery password" : "Παρακαλώ παρέχετε ένα νέο κωδικό επαναφοράς",
|
||||
"Please repeat the new recovery password" : "Παρακαλώ επαναλάβετε το νέο κωδικό επαναφοράς",
|
||||
"Password successfully changed." : "Ο κωδικός αλλάχτηκε επιτυχώς.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.",
|
||||
"Could not update the private key password." : "Αποτυχία ενημέρωσης του προσωπικού κλειδιού πρόσβασης",
|
||||
"The old password was not correct, please try again." : "Το παλαιό συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
|
||||
"The current log-in password was not correct, please try again." : "Το τρέχον συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
|
||||
"Private key password successfully updated." : "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς",
|
||||
"File recovery settings updated" : "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν",
|
||||
"Could not update file recovery" : "Αποτυχία ενημέρωσης ανάκτησης αρχείων",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Άγνωστο σφάλμα. Παρακαλώ ελέγξτε τις ρυθμίσεις του συστήματό σας ή επικοινωνήστε με τον διαχειριστή συστημάτων σας",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.",
|
||||
"Initial encryption running... Please try again later." : "Εκτέλεση αρχικής κρυπτογράφησης... Παρακαλώ προσπαθήστε αργότερα.",
|
||||
"Missing requirements." : "Προαπαιτούμενα που απουσιάζουν.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Παρακαλώ επιβεβαιώστε ότι η OpenSSL μαζί με την επέκταση PHP έχουν ενεργοποιηθεί και ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.",
|
||||
"Following users are not set up for encryption:" : "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:",
|
||||
"Go directly to your %spersonal settings%s." : "Πηγαίνετε κατ'ευθείαν στις %sπροσωπικές ρυθμίσεις%s σας.",
|
||||
"Server-side Encryption" : "Κρυπτογράφηση από τον Διακομιστή",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):",
|
||||
"Recovery key password" : "Επαναφορά κωδικού κλειδιού",
|
||||
"Repeat Recovery key password" : "Επαναλάβετε το κλειδί επαναφοράς κωδικού",
|
||||
"Enabled" : "Ενεργοποιημένο",
|
||||
"Disabled" : "Απενεργοποιημένο",
|
||||
"Change recovery key password:" : "Αλλαγή κλειδιού επαναφοράς κωδικού:",
|
||||
"Old Recovery key password" : "Παλιό κλειδί επαναφοράς κωδικού",
|
||||
"New Recovery key password" : "Νέο κλειδί επαναφοράς κωδικού",
|
||||
"Repeat New Recovery key password" : "Επαναλάβετε νέο κλειδί επαναφοράς κωδικού",
|
||||
"Change Password" : "Αλλαγή Κωδικού Πρόσβασης",
|
||||
"Your private key password no longer matches your log-in password." : "Ο κωδικός του ιδιωτικού κλειδιού σας δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας.",
|
||||
"Set your old private key password to your current log-in password:" : "Ορίστε τον παλιό σας κωδικό ιδιωτικού κλειδιού στον τρέχοντα κωδικό σύνδεσης.",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.",
|
||||
"Old log-in password" : "Παλαιό συνθηματικό εισόδου",
|
||||
"Current log-in password" : "Τρέχον συνθηματικό πρόσβασης",
|
||||
"Update Private Key Password" : "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης",
|
||||
"Enable password recovery:" : "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Άγνωστο σφάλμα",
|
||||
"Missing recovery key password" : "Λείπει το κλειδί επαναφοράς κωδικού",
|
||||
"Please repeat the recovery key password" : "Παρακαλώ επαναλάβετε το κλειδί επαναφοράς κωδικού",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Η επανάληψη του κλειδιού επαναφοράς κωδικού δεν ταιριάζει με το δοσμένο κλειδί επαναφοράς κωδικού",
|
||||
"Recovery key successfully enabled" : "Επιτυχής ενεργοποίηση κλειδιού ανάκτησης",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Αποτυχία απενεργοποίησης κλειδιού ανάκτησης. Παρακαλώ ελέγξτε τον κωδικό του κλειδιού ανάκτησής σας!",
|
||||
"Recovery key successfully disabled" : "Επιτυχής απενεργοποίηση κλειδιού ανάκτησης",
|
||||
"Please provide the old recovery password" : "Παρακαλώ παρέχετε τον παλιό κωδικό επαναφοράς",
|
||||
"Please provide a new recovery password" : "Παρακαλώ παρέχετε ένα νέο κωδικό επαναφοράς",
|
||||
"Please repeat the new recovery password" : "Παρακαλώ επαναλάβετε το νέο κωδικό επαναφοράς",
|
||||
"Password successfully changed." : "Ο κωδικός αλλάχτηκε επιτυχώς.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.",
|
||||
"Could not update the private key password." : "Αποτυχία ενημέρωσης του προσωπικού κλειδιού πρόσβασης",
|
||||
"The old password was not correct, please try again." : "Το παλαιό συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
|
||||
"The current log-in password was not correct, please try again." : "Το τρέχον συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.",
|
||||
"Private key password successfully updated." : "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς",
|
||||
"File recovery settings updated" : "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν",
|
||||
"Could not update file recovery" : "Αποτυχία ενημέρωσης ανάκτησης αρχείων",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Η εφαρμογή κρυπτογράφησης δεν έχει εκκινήσει! Ίσως η εφαρμογή κρυπτογράφησης επανενεργοποιήθηκε κατά τη διάρκεια της τρέχουσας σύνδεσής σας. Παρακαλώ προσπαθήστε να αποσυνδεθείτε και να ξανασυνδεθείτε για να εκκινήσετε την εφαρμογή κρυπτογράφησης.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Το προσωπικό σας κλειδί δεν είναι έγκυρο! Πιθανόν ο κωδικός σας να άλλαξε έξω από το %s (π.χ. τη λίστα διευθύνσεων της εταιρείας σας). Μπορείτε να ενημερώσετε το προσωπικό σας κλειδί επαναφοράς κωδικού στις προσωπικές σας ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Άγνωστο σφάλμα. Παρακαλώ ελέγξτε τις ρυθμίσεις του συστήματό σας ή επικοινωνήστε με τον διαχειριστή συστημάτων σας",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Η αρχική κρυπτογράφηση άρχισε... Αυτό μπορεί να πάρει κάποια ώρα. Παρακαλώ περιμένετε.",
|
||||
"Initial encryption running... Please try again later." : "Εκτέλεση αρχικής κρυπτογράφησης... Παρακαλώ προσπαθήστε αργότερα.",
|
||||
"Missing requirements." : "Προαπαιτούμενα που απουσιάζουν.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Παρακαλώ επιβεβαιώστε ότι η OpenSSL μαζί με την επέκταση PHP έχουν ενεργοποιηθεί και ρυθμιστεί σωστά. Προς το παρόν, η εφαρμογή κρυπτογράφησης είναι απενεργοποιημένη.",
|
||||
"Following users are not set up for encryption:" : "Οι κάτωθι χρήστες δεν έχουν ρυθμιστεί για κρυπογράφηση:",
|
||||
"Go directly to your %spersonal settings%s." : "Πηγαίνετε κατ'ευθείαν στις %sπροσωπικές ρυθμίσεις%s σας.",
|
||||
"Server-side Encryption" : "Κρυπτογράφηση από τον Διακομιστή",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Ενεργοποίηση κλειδιού ανάκτησης (επιτρέψτε την ανάκτηση αρχείων χρηστών σε περίπτωση απώλειας κωδικού):",
|
||||
"Recovery key password" : "Επαναφορά κωδικού κλειδιού",
|
||||
"Repeat Recovery key password" : "Επαναλάβετε το κλειδί επαναφοράς κωδικού",
|
||||
"Enabled" : "Ενεργοποιημένο",
|
||||
"Disabled" : "Απενεργοποιημένο",
|
||||
"Change recovery key password:" : "Αλλαγή κλειδιού επαναφοράς κωδικού:",
|
||||
"Old Recovery key password" : "Παλιό κλειδί επαναφοράς κωδικού",
|
||||
"New Recovery key password" : "Νέο κλειδί επαναφοράς κωδικού",
|
||||
"Repeat New Recovery key password" : "Επαναλάβετε νέο κλειδί επαναφοράς κωδικού",
|
||||
"Change Password" : "Αλλαγή Κωδικού Πρόσβασης",
|
||||
"Your private key password no longer matches your log-in password." : "Ο κωδικός του ιδιωτικού κλειδιού σας δεν ταιριάζει πλέον με τον κωδικό σύνδεσής σας.",
|
||||
"Set your old private key password to your current log-in password:" : "Ορίστε τον παλιό σας κωδικό ιδιωτικού κλειδιού στον τρέχοντα κωδικό σύνδεσης.",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Εάν δεν θυμάστε τον παλιό σας κωδικό μπορείτε να ζητήσετε από τον διαχειριστή σας να επανακτήσει τα αρχεία σας.",
|
||||
"Old log-in password" : "Παλαιό συνθηματικό εισόδου",
|
||||
"Current log-in password" : "Τρέχον συνθηματικό πρόσβασης",
|
||||
"Update Private Key Password" : "Ενημέρωση Προσωπικού Κλειδού Πρόσβασης",
|
||||
"Enable password recovery:" : "Ενεργοποιήστε την ανάκτηση κωδικού πρόσβασης",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Unknown error",
|
||||
"Missing recovery key password" : "Missing recovery key password",
|
||||
"Please repeat the recovery key password" : "Please repeat the recovery key password",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Repeated recovery key password does not match the provided recovery key password",
|
||||
"Recovery key successfully enabled" : "Recovery key enabled successfully",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Could not disable recovery key. Please check your recovery key password!",
|
||||
"Recovery key successfully disabled" : "Recovery key disabled successfully",
|
||||
"Please provide the old recovery password" : "Please provide the old recovery password",
|
||||
"Please provide a new recovery password" : "Please provide a new recovery password",
|
||||
"Please repeat the new recovery password" : "Please repeat the new recovery password",
|
||||
"Password successfully changed." : "Password changed successfully.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Could not change the password. Maybe the old password was incorrect.",
|
||||
"Could not update the private key password." : "Could not update the private key password.",
|
||||
"The old password was not correct, please try again." : "The old password was not correct, please try again.",
|
||||
"The current log-in password was not correct, please try again." : "The current log-in password was not correct, please try again.",
|
||||
"Private key password successfully updated." : "Private key password updated successfully.",
|
||||
"File recovery settings updated" : "File recovery settings updated",
|
||||
"Could not update file recovery" : "Could not update file recovery",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Unknown error. Please check your system settings or contact your administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Initial encryption started... This can take some time. Please wait.",
|
||||
"Initial encryption running... Please try again later." : "Initial encryption running... Please try again later.",
|
||||
"Missing requirements." : "Missing requirements.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Please make sure that OpenSSL together with the PHP extension is enabled and properly configured. For now, the encryption app has been disabled.",
|
||||
"Following users are not set up for encryption:" : "Following users are not set up for encryption:",
|
||||
"Go directly to your %spersonal settings%s." : "Go directly to your %spersonal settings%s.",
|
||||
"Server-side Encryption" : "Server-side Encryption",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Encryption App is enabled but your keys are not initialised, please log-out and log-in again",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Enable recovery key (allow to recover users files in case of password loss):",
|
||||
"Recovery key password" : "Recovery key password",
|
||||
"Repeat Recovery key password" : "Repeat recovery key password",
|
||||
"Enabled" : "Enabled",
|
||||
"Disabled" : "Disabled",
|
||||
"Change recovery key password:" : "Change recovery key password:",
|
||||
"Old Recovery key password" : "Old recovery key password",
|
||||
"New Recovery key password" : "New recovery key password",
|
||||
"Repeat New Recovery key password" : "Repeat new recovery key password",
|
||||
"Change Password" : "Change Password",
|
||||
"Your private key password no longer matches your log-in password." : "Your private key password no longer matches your log-in password.",
|
||||
"Set your old private key password to your current log-in password:" : "Set your old private key password to your current log-in password:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : " If you don't remember your old password you can ask your administrator to recover your files.",
|
||||
"Old log-in password" : "Old login password",
|
||||
"Current log-in password" : "Current login password",
|
||||
"Update Private Key Password" : "Update Private Key Password",
|
||||
"Enable password recovery:" : "Enable password recovery:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Unknown error",
|
||||
"Missing recovery key password" : "Missing recovery key password",
|
||||
"Please repeat the recovery key password" : "Please repeat the recovery key password",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Repeated recovery key password does not match the provided recovery key password",
|
||||
"Recovery key successfully enabled" : "Recovery key enabled successfully",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Could not disable recovery key. Please check your recovery key password!",
|
||||
"Recovery key successfully disabled" : "Recovery key disabled successfully",
|
||||
"Please provide the old recovery password" : "Please provide the old recovery password",
|
||||
"Please provide a new recovery password" : "Please provide a new recovery password",
|
||||
"Please repeat the new recovery password" : "Please repeat the new recovery password",
|
||||
"Password successfully changed." : "Password changed successfully.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Could not change the password. Maybe the old password was incorrect.",
|
||||
"Could not update the private key password." : "Could not update the private key password.",
|
||||
"The old password was not correct, please try again." : "The old password was not correct, please try again.",
|
||||
"The current log-in password was not correct, please try again." : "The current log-in password was not correct, please try again.",
|
||||
"Private key password successfully updated." : "Private key password updated successfully.",
|
||||
"File recovery settings updated" : "File recovery settings updated",
|
||||
"Could not update file recovery" : "Could not update file recovery",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Encryption app not initialised! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialise the encryption app.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Unknown error. Please check your system settings or contact your administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Initial encryption started... This can take some time. Please wait.",
|
||||
"Initial encryption running... Please try again later." : "Initial encryption running... Please try again later.",
|
||||
"Missing requirements." : "Missing requirements.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Please make sure that OpenSSL together with the PHP extension is enabled and properly configured. For now, the encryption app has been disabled.",
|
||||
"Following users are not set up for encryption:" : "Following users are not set up for encryption:",
|
||||
"Go directly to your %spersonal settings%s." : "Go directly to your %spersonal settings%s.",
|
||||
"Server-side Encryption" : "Server-side Encryption",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Encryption App is enabled but your keys are not initialised, please log-out and log-in again",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Enable recovery key (allow to recover users files in case of password loss):",
|
||||
"Recovery key password" : "Recovery key password",
|
||||
"Repeat Recovery key password" : "Repeat recovery key password",
|
||||
"Enabled" : "Enabled",
|
||||
"Disabled" : "Disabled",
|
||||
"Change recovery key password:" : "Change recovery key password:",
|
||||
"Old Recovery key password" : "Old recovery key password",
|
||||
"New Recovery key password" : "New recovery key password",
|
||||
"Repeat New Recovery key password" : "Repeat new recovery key password",
|
||||
"Change Password" : "Change Password",
|
||||
"Your private key password no longer matches your log-in password." : "Your private key password no longer matches your log-in password.",
|
||||
"Set your old private key password to your current log-in password:" : "Set your old private key password to your current log-in password:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : " If you don't remember your old password you can ask your administrator to recover your files.",
|
||||
"Old log-in password" : "Old login password",
|
||||
"Current log-in password" : "Current login password",
|
||||
"Update Private Key Password" : "Update Private Key Password",
|
||||
"Enable password recovery:" : "Enable password recovery:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Nekonata eraro",
|
||||
"Password successfully changed." : "La pasvorto sukcese ŝanĝiĝis.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.",
|
||||
"Private key password successfully updated." : "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.",
|
||||
"Missing requirements." : "Mankas neproj.",
|
||||
"Enabled" : "Kapabligita",
|
||||
"Disabled" : "Malkapabligita",
|
||||
"Change Password" : "Ŝarĝi pasvorton",
|
||||
"Old log-in password" : "Malnova ensaluta pasvorto",
|
||||
"Current log-in password" : "Nuna ensaluta pasvorto",
|
||||
"Update Private Key Password" : "Ĝisdatigi la pasvorton de la malpublika klavo",
|
||||
"Enable password recovery:" : "Kapabligi restaŭron de pasvorto:"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Nekonata eraro",
|
||||
"Password successfully changed." : "La pasvorto sukcese ŝanĝiĝis.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.",
|
||||
"Private key password successfully updated." : "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.",
|
||||
"Missing requirements." : "Mankas neproj.",
|
||||
"Enabled" : "Kapabligita",
|
||||
"Disabled" : "Malkapabligita",
|
||||
"Change Password" : "Ŝarĝi pasvorton",
|
||||
"Old log-in password" : "Malnova ensaluta pasvorto",
|
||||
"Current log-in password" : "Nuna ensaluta pasvorto",
|
||||
"Update Private Key Password" : "Ĝisdatigi la pasvorton de la malpublika klavo",
|
||||
"Enable password recovery:" : "Kapabligi restaŭron de pasvorto:"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Error desconocido",
|
||||
"Missing recovery key password" : "Falta contraseña de recuperación.",
|
||||
"Please repeat the recovery key password" : "Por favor, repita la contraseña de recuperación",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "La contraseña de recuperación reintroducida no coincide con la contraseña de recuperación proporcionada.",
|
||||
"Recovery key successfully enabled" : "Se ha habilitado la recuperación de archivos",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No se pudo deshabilitar la clave de recuperación. Por favor, ¡compruebe su contraseña!",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Please provide the old recovery password" : "Por favor, ingrese su antigua contraseña de recuperación",
|
||||
"Please provide a new recovery password" : "Por favor, ingrese una nueva contraseña de recuperación",
|
||||
"Please repeat the new recovery password" : "Por favor, repita su nueva contraseña de recuperación",
|
||||
"Password successfully changed." : "Su contraseña ha sido cambiada",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
|
||||
"Could not update the private key password." : "No se pudo actualizar la contraseña de la clave privada.",
|
||||
"The old password was not correct, please try again." : "La antigua contraseña no es correcta, por favor intente de nuevo.",
|
||||
"The current log-in password was not correct, please try again." : "La contraseña de inicio de sesión actual no es correcto, por favor intente de nuevo.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.",
|
||||
"File recovery settings updated" : "Opciones de recuperación de archivos actualizada",
|
||||
"Could not update file recovery" : "No se pudo actualizar la recuperación de archivos",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡La aplicación de cifrado no ha sido inicializada! Quizá se restableció durante su sesión. Por favor intente cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera de %s (Ej: su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Error desconocido. Revise la configuración de su sistema o contacte con su administrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Ha comenzado el cifrado inicial... Esto puede tardar un rato. Por favor, espere.",
|
||||
"Initial encryption running... Please try again later." : "Cifrado inicial en curso... Inténtelo más tarde.",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Asegúrese de que OpenSSL y la extensión de PHP estén habilitados y configurados correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios no han sido configurados para el cifrado:",
|
||||
"Go directly to your %spersonal settings%s." : "Ir directamente a %sOpciones%s.",
|
||||
"Server-side Encryption" : "Cifrado en el servidor",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);",
|
||||
"Recovery key password" : "Contraseña de clave de recuperación",
|
||||
"Repeat Recovery key password" : "Repite la contraseña de clave de recuperación",
|
||||
"Enabled" : "Habilitar",
|
||||
"Disabled" : "Deshabilitado",
|
||||
"Change recovery key password:" : "Cambiar la contraseña de la clave de recuperación",
|
||||
"Old Recovery key password" : "Antigua clave de recuperación",
|
||||
"New Recovery key password" : "Nueva clave de recuperación",
|
||||
"Repeat New Recovery key password" : "Repetir la nueva clave de recuperación",
|
||||
"Change Password" : "Cambiar contraseña",
|
||||
"Your private key password no longer matches your log-in password." : "Su contraseña de clave privada ya no coincide con su contraseña de acceso.",
|
||||
"Set your old private key password to your current log-in password:" : "Establezca la contraseña de clave privada antigua para su contraseña de inicio de sesión actual:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.",
|
||||
"Old log-in password" : "Contraseña de acceso antigua",
|
||||
"Current log-in password" : "Contraseña de acceso actual",
|
||||
"Update Private Key Password" : "Actualizar contraseña de clave privada",
|
||||
"Enable password recovery:" : "Habilitar la recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Error desconocido",
|
||||
"Missing recovery key password" : "Falta contraseña de recuperación.",
|
||||
"Please repeat the recovery key password" : "Por favor, repita la contraseña de recuperación",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "La contraseña de recuperación reintroducida no coincide con la contraseña de recuperación proporcionada.",
|
||||
"Recovery key successfully enabled" : "Se ha habilitado la recuperación de archivos",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No se pudo deshabilitar la clave de recuperación. Por favor, ¡compruebe su contraseña!",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Please provide the old recovery password" : "Por favor, ingrese su antigua contraseña de recuperación",
|
||||
"Please provide a new recovery password" : "Por favor, ingrese una nueva contraseña de recuperación",
|
||||
"Please repeat the new recovery password" : "Por favor, repita su nueva contraseña de recuperación",
|
||||
"Password successfully changed." : "Su contraseña ha sido cambiada",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
|
||||
"Could not update the private key password." : "No se pudo actualizar la contraseña de la clave privada.",
|
||||
"The old password was not correct, please try again." : "La antigua contraseña no es correcta, por favor intente de nuevo.",
|
||||
"The current log-in password was not correct, please try again." : "La contraseña de inicio de sesión actual no es correcto, por favor intente de nuevo.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.",
|
||||
"File recovery settings updated" : "Opciones de recuperación de archivos actualizada",
|
||||
"Could not update file recovery" : "No se pudo actualizar la recuperación de archivos",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡La aplicación de cifrado no ha sido inicializada! Quizá se restableció durante su sesión. Por favor intente cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera de %s (Ej: su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Error desconocido. Revise la configuración de su sistema o contacte con su administrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Ha comenzado el cifrado inicial... Esto puede tardar un rato. Por favor, espere.",
|
||||
"Initial encryption running... Please try again later." : "Cifrado inicial en curso... Inténtelo más tarde.",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Asegúrese de que OpenSSL y la extensión de PHP estén habilitados y configurados correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios no han sido configurados para el cifrado:",
|
||||
"Go directly to your %spersonal settings%s." : "Ir directamente a %sOpciones%s.",
|
||||
"Server-side Encryption" : "Cifrado en el servidor",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar la clave de recuperación (permite recuperar los ficheros del usuario en caso de pérdida de la contraseña);",
|
||||
"Recovery key password" : "Contraseña de clave de recuperación",
|
||||
"Repeat Recovery key password" : "Repite la contraseña de clave de recuperación",
|
||||
"Enabled" : "Habilitar",
|
||||
"Disabled" : "Deshabilitado",
|
||||
"Change recovery key password:" : "Cambiar la contraseña de la clave de recuperación",
|
||||
"Old Recovery key password" : "Antigua clave de recuperación",
|
||||
"New Recovery key password" : "Nueva clave de recuperación",
|
||||
"Repeat New Recovery key password" : "Repetir la nueva clave de recuperación",
|
||||
"Change Password" : "Cambiar contraseña",
|
||||
"Your private key password no longer matches your log-in password." : "Su contraseña de clave privada ya no coincide con su contraseña de acceso.",
|
||||
"Set your old private key password to your current log-in password:" : "Establezca la contraseña de clave privada antigua para su contraseña de inicio de sesión actual:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus ficheros.",
|
||||
"Old log-in password" : "Contraseña de acceso antigua",
|
||||
"Current log-in password" : "Contraseña de acceso actual",
|
||||
"Update Private Key Password" : "Actualizar contraseña de clave privada",
|
||||
"Enable password recovery:" : "Habilitar la recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus ficheros cifrados en caso de pérdida de contraseña"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Error desconocido",
|
||||
"Recovery key successfully enabled" : "Se habilitó la recuperación de archivos",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No fue posible deshabilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Password successfully changed." : "Tu contraseña fue cambiada",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.",
|
||||
"File recovery settings updated" : "Las opciones de recuperación de archivos fueron actualizadas",
|
||||
"Could not update file recovery" : "No fue posible actualizar la recuperación de archivos",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡La aplicación de encriptación no está inicializada! Es probable que la aplicación fue re-habilitada durante tu sesión. Intenta salir y iniciar sesión para volverla a iniciar.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡Tu llave privada no es válida! Aparenta que tu clave fue cambiada fuera de %s (de tus directorios). Puedes actualizar la contraseña de tu clave privadaen las configuraciones personales para recobrar el acceso a tus archivos encriptados.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede descibrar este archivo, probablemente sea un archivo compartido. Por favor pídele al dueño que recomparta el archivo contigo.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor espere.",
|
||||
"Initial encryption running... Please try again later." : "Encriptación inicial corriendo... Por favor intente mas tarde. ",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios no fueron configurados para encriptar:",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):",
|
||||
"Recovery key password" : "Contraseña de recuperación de clave",
|
||||
"Repeat Recovery key password" : "Repetir la contraseña de la clave de recuperación",
|
||||
"Enabled" : "Habilitado",
|
||||
"Disabled" : "Deshabilitado",
|
||||
"Change recovery key password:" : "Cambiar contraseña para recuperar la clave:",
|
||||
"Old Recovery key password" : "Contraseña antigua de recuperación de clave",
|
||||
"New Recovery key password" : "Nueva contraseña de recuperación de clave",
|
||||
"Repeat New Recovery key password" : "Repetir Nueva contraseña para la clave de recuperación",
|
||||
"Change Password" : "Cambiar contraseña",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos",
|
||||
"Old log-in password" : "Contraseña anterior",
|
||||
"Current log-in password" : "Contraseña actual",
|
||||
"Update Private Key Password" : "Actualizar contraseña de la clave privada",
|
||||
"Enable password recovery:" : "Habilitar recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Error desconocido",
|
||||
"Recovery key successfully enabled" : "Se habilitó la recuperación de archivos",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No fue posible deshabilitar la clave de recuperación. Por favor, comprobá tu contraseña.",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Password successfully changed." : "Tu contraseña fue cambiada",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.",
|
||||
"File recovery settings updated" : "Las opciones de recuperación de archivos fueron actualizadas",
|
||||
"Could not update file recovery" : "No fue posible actualizar la recuperación de archivos",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡La aplicación de encriptación no está inicializada! Es probable que la aplicación fue re-habilitada durante tu sesión. Intenta salir y iniciar sesión para volverla a iniciar.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡Tu llave privada no es válida! Aparenta que tu clave fue cambiada fuera de %s (de tus directorios). Puedes actualizar la contraseña de tu clave privadaen las configuraciones personales para recobrar el acceso a tus archivos encriptados.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede descibrar este archivo, probablemente sea un archivo compartido. Por favor pídele al dueño que recomparta el archivo contigo.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor espere.",
|
||||
"Initial encryption running... Please try again later." : "Encriptación inicial corriendo... Por favor intente mas tarde. ",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios no fueron configurados para encriptar:",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):",
|
||||
"Recovery key password" : "Contraseña de recuperación de clave",
|
||||
"Repeat Recovery key password" : "Repetir la contraseña de la clave de recuperación",
|
||||
"Enabled" : "Habilitado",
|
||||
"Disabled" : "Deshabilitado",
|
||||
"Change recovery key password:" : "Cambiar contraseña para recuperar la clave:",
|
||||
"Old Recovery key password" : "Contraseña antigua de recuperación de clave",
|
||||
"New Recovery key password" : "Nueva contraseña de recuperación de clave",
|
||||
"Repeat New Recovery key password" : "Repetir Nueva contraseña para la clave de recuperación",
|
||||
"Change Password" : "Cambiar contraseña",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos",
|
||||
"Old log-in password" : "Contraseña anterior",
|
||||
"Current log-in password" : "Contraseña actual",
|
||||
"Update Private Key Password" : "Actualizar contraseña de la clave privada",
|
||||
"Enable password recovery:" : "Habilitar recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Error desconocido"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Error desconocido"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Error desconocido",
|
||||
"Recovery key successfully enabled" : "Se ha habilitado la recuperación de archivos",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Password successfully changed." : "Su contraseña ha sido cambiada",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.",
|
||||
"File recovery settings updated" : "Opciones de recuperación de archivos actualizada",
|
||||
"Could not update file recovery" : "No se pudo actualizar la recuperación de archivos",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios no han sido configurados para el cifrado:",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);",
|
||||
"Recovery key password" : "Contraseña de clave de recuperación",
|
||||
"Repeat Recovery key password" : "Repite la contraseña de clave de recuperación",
|
||||
"Enabled" : "Habilitar",
|
||||
"Disabled" : "Deshabilitado",
|
||||
"Change recovery key password:" : "Cambiar la contraseña de la clave de recuperación",
|
||||
"Old Recovery key password" : "Antigua clave de recuperación",
|
||||
"New Recovery key password" : "Nueva clave de recuperación",
|
||||
"Repeat New Recovery key password" : "Repetir la nueva clave de recuperación",
|
||||
"Change Password" : "Cambiar contraseña",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos.",
|
||||
"Old log-in password" : "Contraseña de acceso antigua",
|
||||
"Current log-in password" : "Contraseña de acceso actual",
|
||||
"Update Private Key Password" : "Actualizar Contraseña de Clave Privada",
|
||||
"Enable password recovery:" : "Habilitar la recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Error desconocido",
|
||||
"Recovery key successfully enabled" : "Se ha habilitado la recuperación de archivos",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "No se pudo deshabilitar la clave de recuperación. Por favor compruebe su contraseña!",
|
||||
"Recovery key successfully disabled" : "Clave de recuperación deshabilitada",
|
||||
"Password successfully changed." : "Su contraseña ha sido cambiada",
|
||||
"Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.",
|
||||
"Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.",
|
||||
"File recovery settings updated" : "Opciones de recuperación de archivos actualizada",
|
||||
"Could not update file recovery" : "No se pudo actualizar la recuperación de archivos",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "¡La aplicación de cifrado no ha sido inicializada! Quizá fue restablecida durante tu sesión. Por favor intenta cerrar la sesión y volver a iniciarla para inicializar la aplicación de cifrado.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. de %s (Ej:Su directorio corporativo). Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus archivos.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Encriptación iniciada... Esto puede tomar un tiempo. Por favor espere.",
|
||||
"Missing requirements." : "Requisitos incompletos.",
|
||||
"Following users are not set up for encryption:" : "Los siguientes usuarios no han sido configurados para el cifrado:",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Habilitar la clave de recuperación (permite recuperar los archivos del usuario en caso de pérdida de la contraseña);",
|
||||
"Recovery key password" : "Contraseña de clave de recuperación",
|
||||
"Repeat Recovery key password" : "Repite la contraseña de clave de recuperación",
|
||||
"Enabled" : "Habilitar",
|
||||
"Disabled" : "Deshabilitado",
|
||||
"Change recovery key password:" : "Cambiar la contraseña de la clave de recuperación",
|
||||
"Old Recovery key password" : "Antigua clave de recuperación",
|
||||
"New Recovery key password" : "Nueva clave de recuperación",
|
||||
"Repeat New Recovery key password" : "Repetir la nueva clave de recuperación",
|
||||
"Change Password" : "Cambiar contraseña",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si no recuerda su antigua contraseña puede pedir a su administrador que le recupere sus archivos.",
|
||||
"Old log-in password" : "Contraseña de acceso antigua",
|
||||
"Current log-in password" : "Contraseña de acceso actual",
|
||||
"Update Private Key Password" : "Actualizar Contraseña de Clave Privada",
|
||||
"Enable password recovery:" : "Habilitar la recuperación de contraseña:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Tundmatu viga",
|
||||
"Missing recovery key password" : "Muuda taastevõtme parool",
|
||||
"Please repeat the recovery key password" : "Palun korda uut taastevõtme parooli",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Lahtritesse sisestatud taastevõtme paroolid ei kattu",
|
||||
"Recovery key successfully enabled" : "Taastevõtme lubamine õnnestus",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Ei suuda keelata taastevõtit. Palun kontrolli oma taastevõtme parooli!",
|
||||
"Recovery key successfully disabled" : "Taastevõtme keelamine õnnestus",
|
||||
"Please provide the old recovery password" : "Palun sisesta vana taastevõtme parool",
|
||||
"Please provide a new recovery password" : "Palun sisesta uus taastevõtme parool",
|
||||
"Please repeat the new recovery password" : "Palun korda uut taastevõtme parooli",
|
||||
"Password successfully changed." : "Parool edukalt vahetatud.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.",
|
||||
"Could not update the private key password." : "Ei suutnud uuendada privaatse võtme parooli.",
|
||||
"The old password was not correct, please try again." : "Vana parool polnud õige, palun proovi uuesti.",
|
||||
"The current log-in password was not correct, please try again." : "Praeguse sisselogimise parool polnud õige, palun proovi uuesti.",
|
||||
"Private key password successfully updated." : "Privaatse võtme parool edukalt uuendatud.",
|
||||
"File recovery settings updated" : "Faili taaste seaded uuendatud",
|
||||
"Could not update file recovery" : "Ei suuda uuendada taastefaili",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Sinu provaatne võti pole kehtiv! Tõenäoliselt mudueti parooli väljaspool kausta %s (nt. sinu ettevõtte kaust). Sa saad uuendada oma privaatse võtme parooli oma isiklikes seadetes, et taastada ligipääs sinu krüpteeritud failidele.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Tundmatu viga. Palun võta ühendust oma administraatoriga.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota.",
|
||||
"Initial encryption running... Please try again later." : "Toimub esmane krüpteerimine... Palun proovi hiljem uuesti.",
|
||||
"Missing requirements." : "Nõutavad on puudu.",
|
||||
"Following users are not set up for encryption:" : "Järgmised kasutajad pole seadistatud krüpteeringuks:",
|
||||
"Go directly to your %spersonal settings%s." : "Liigi otse oma %s isiklike seadete %s juurde.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Luba taastevõti (võimalda kasutaja failide taastamine parooli kaotuse puhul):",
|
||||
"Recovery key password" : "Taastevõtme parool",
|
||||
"Repeat Recovery key password" : "Korda taastevõtme parooli",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Disabled" : "Väljalülitatud",
|
||||
"Change recovery key password:" : "Muuda taastevõtme parooli:",
|
||||
"Old Recovery key password" : "Vana taastevõtme parool",
|
||||
"New Recovery key password" : "Uus taastevõtme parool",
|
||||
"Repeat New Recovery key password" : "Korda uut taastevõtme parooli",
|
||||
"Change Password" : "Muuda parooli",
|
||||
"Your private key password no longer matches your log-in password." : "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga.",
|
||||
"Set your old private key password to your current log-in password:" : "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.",
|
||||
"Old log-in password" : "Vana sisselogimise parool",
|
||||
"Current log-in password" : "Praegune sisselogimise parool",
|
||||
"Update Private Key Password" : "Uuenda privaatse võtme parooli",
|
||||
"Enable password recovery:" : "Luba parooli taaste:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Tundmatu viga",
|
||||
"Missing recovery key password" : "Muuda taastevõtme parool",
|
||||
"Please repeat the recovery key password" : "Palun korda uut taastevõtme parooli",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Lahtritesse sisestatud taastevõtme paroolid ei kattu",
|
||||
"Recovery key successfully enabled" : "Taastevõtme lubamine õnnestus",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Ei suuda keelata taastevõtit. Palun kontrolli oma taastevõtme parooli!",
|
||||
"Recovery key successfully disabled" : "Taastevõtme keelamine õnnestus",
|
||||
"Please provide the old recovery password" : "Palun sisesta vana taastevõtme parool",
|
||||
"Please provide a new recovery password" : "Palun sisesta uus taastevõtme parool",
|
||||
"Please repeat the new recovery password" : "Palun korda uut taastevõtme parooli",
|
||||
"Password successfully changed." : "Parool edukalt vahetatud.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.",
|
||||
"Could not update the private key password." : "Ei suutnud uuendada privaatse võtme parooli.",
|
||||
"The old password was not correct, please try again." : "Vana parool polnud õige, palun proovi uuesti.",
|
||||
"The current log-in password was not correct, please try again." : "Praeguse sisselogimise parool polnud õige, palun proovi uuesti.",
|
||||
"Private key password successfully updated." : "Privaatse võtme parool edukalt uuendatud.",
|
||||
"File recovery settings updated" : "Faili taaste seaded uuendatud",
|
||||
"Could not update file recovery" : "Ei suuda uuendada taastefaili",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Krüpteerimise rakend pole käivitatud. Võib-olla krüpteerimise rakend taaskäivitati sinu sessiooni kestel. Palun proovi logida välja ning uuesti sisse käivitamaks krüpteerimise rakendit.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Sinu provaatne võti pole kehtiv! Tõenäoliselt mudueti parooli väljaspool kausta %s (nt. sinu ettevõtte kaust). Sa saad uuendada oma privaatse võtme parooli oma isiklikes seadetes, et taastada ligipääs sinu krüpteeritud failidele.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Sa ei saa seda faili dekrüpteerida, see on tõenäoliselt jagatud fail. Palun lase omanikul seda faili sinuga uuesti jagada.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Tundmatu viga. Palun võta ühendust oma administraatoriga.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Algne krüpteerimine käivitati... See võib võtta natuke aega. Palun oota.",
|
||||
"Initial encryption running... Please try again later." : "Toimub esmane krüpteerimine... Palun proovi hiljem uuesti.",
|
||||
"Missing requirements." : "Nõutavad on puudu.",
|
||||
"Following users are not set up for encryption:" : "Järgmised kasutajad pole seadistatud krüpteeringuks:",
|
||||
"Go directly to your %spersonal settings%s." : "Liigi otse oma %s isiklike seadete %s juurde.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Luba taastevõti (võimalda kasutaja failide taastamine parooli kaotuse puhul):",
|
||||
"Recovery key password" : "Taastevõtme parool",
|
||||
"Repeat Recovery key password" : "Korda taastevõtme parooli",
|
||||
"Enabled" : "Sisse lülitatud",
|
||||
"Disabled" : "Väljalülitatud",
|
||||
"Change recovery key password:" : "Muuda taastevõtme parooli:",
|
||||
"Old Recovery key password" : "Vana taastevõtme parool",
|
||||
"New Recovery key password" : "Uus taastevõtme parool",
|
||||
"Repeat New Recovery key password" : "Korda uut taastevõtme parooli",
|
||||
"Change Password" : "Muuda parooli",
|
||||
"Your private key password no longer matches your log-in password." : "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga.",
|
||||
"Set your old private key password to your current log-in password:" : "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.",
|
||||
"Old log-in password" : "Vana sisselogimise parool",
|
||||
"Current log-in password" : "Praegune sisselogimise parool",
|
||||
"Update Private Key Password" : "Uuenda privaatse võtme parooli",
|
||||
"Enable password recovery:" : "Luba parooli taaste:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Errore ezezaguna",
|
||||
"Missing recovery key password" : "Berreskurapen gakoaren pasahitza falta da",
|
||||
"Please repeat the recovery key password" : "Mesedez errepikatu berreskuratze gakoaren pasahitza",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Errepikatutako berreskuratze gakoaren pasahitza ez dator bat berreskuratze gakoaren pasahitzarekin",
|
||||
"Recovery key successfully enabled" : "Berreskuratze gakoa behar bezala gaitua",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Ezin da berreskuratze gako desgaitu. Egiaztatu berreskuratze gako pasahitza!",
|
||||
"Recovery key successfully disabled" : "Berreskuratze gakoa behar bezala desgaitu da",
|
||||
"Please provide the old recovery password" : "Mesedez sartu berreskuratze pasahitz zaharra",
|
||||
"Please provide a new recovery password" : "Mesedez sartu berreskuratze pasahitz berria",
|
||||
"Please repeat the new recovery password" : "Mesedez errepikatu berreskuratze pasahitz berria",
|
||||
"Password successfully changed." : "Pasahitza behar bezala aldatu da.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da.",
|
||||
"Could not update the private key password." : "Ezin izan da gako pribatu pasahitza eguneratu. ",
|
||||
"The old password was not correct, please try again." : "Pasahitz zaharra ez da egokia. Mesedez, saiatu berriro.",
|
||||
"The current log-in password was not correct, please try again." : "Oraingo pasahitza ez da egokia. Mesedez, saiatu berriro.",
|
||||
"Private key password successfully updated." : "Gako pasahitz pribatu behar bezala eguneratu da.",
|
||||
"File recovery settings updated" : "Fitxategi berreskuratze ezarpenak eguneratuak",
|
||||
"Could not update file recovery" : "Ezin da fitxategi berreskuratzea eguneratu",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Enkriptazio aplikazioa ez dago hasieratuta! Agian aplikazioa birgaitu egin da zure saioa bitartean. Mesdez atear eta sartu berriz enkriptazio aplikazioa hasierarazteko.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza %s-tik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Errore ezezaguna. Mesedez, egiaztatu zure sistemaren ezarpenak edo jarri zure administrariarekin kontaktuan.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron.",
|
||||
"Initial encryption running... Please try again later." : "Hasierako enkriptaketa abian... mesedez, saiatu beranduago.",
|
||||
"Missing requirements." : "Eskakizun batzuk ez dira betetzen.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Mesedez ziurtatu OpenSSL eta PHP hedapena instaltuta eta ongi konfiguratuta daudela. Oraingoz enkriptazio aplikazioa desgaitua izan da.",
|
||||
"Following users are not set up for encryption:" : "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:",
|
||||
"Go directly to your %spersonal settings%s." : "Joan zuzenean zure %sezarpen pertsonaletara%s.",
|
||||
"Server-side Encryption" : "Zerbitzari aldeko enkriptazioa",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):",
|
||||
"Recovery key password" : "Berreskuratze gako pasahitza",
|
||||
"Repeat Recovery key password" : "Errepikatu berreskuratze gakoaren pasahitza",
|
||||
"Enabled" : "Gaitua",
|
||||
"Disabled" : "Ez-gaitua",
|
||||
"Change recovery key password:" : "Aldatu berreskuratze gako pasahitza:",
|
||||
"Old Recovery key password" : "Berreskuratze gako pasahitz zaharra",
|
||||
"New Recovery key password" : "Berreskuratze gako pasahitz berria",
|
||||
"Repeat New Recovery key password" : "Errepikatu berreskuratze gako berriaren pasahitza",
|
||||
"Change Password" : "Aldatu Pasahitza",
|
||||
"Your private key password no longer matches your log-in password." : "Zure gako pasahitza pribatua ez da dagoeneko bat etortzen zure sartzeko pasahitzarekin.",
|
||||
"Set your old private key password to your current log-in password:" : "Ezarri zure gako pasahitz zaharra orain duzun sartzeko pasahitzan:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ez baduzu zure pasahitz zaharra gogoratzen eskatu zure administratzaileari zure fitxategiak berreskuratzeko.",
|
||||
"Old log-in password" : "Sartzeko pasahitz zaharra",
|
||||
"Current log-in password" : "Sartzeko oraingo pasahitza",
|
||||
"Update Private Key Password" : "Eguneratu gako pasahitza pribatua",
|
||||
"Enable password recovery:" : "Gaitu pasahitzaren berreskuratzea:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Errore ezezaguna",
|
||||
"Missing recovery key password" : "Berreskurapen gakoaren pasahitza falta da",
|
||||
"Please repeat the recovery key password" : "Mesedez errepikatu berreskuratze gakoaren pasahitza",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Errepikatutako berreskuratze gakoaren pasahitza ez dator bat berreskuratze gakoaren pasahitzarekin",
|
||||
"Recovery key successfully enabled" : "Berreskuratze gakoa behar bezala gaitua",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Ezin da berreskuratze gako desgaitu. Egiaztatu berreskuratze gako pasahitza!",
|
||||
"Recovery key successfully disabled" : "Berreskuratze gakoa behar bezala desgaitu da",
|
||||
"Please provide the old recovery password" : "Mesedez sartu berreskuratze pasahitz zaharra",
|
||||
"Please provide a new recovery password" : "Mesedez sartu berreskuratze pasahitz berria",
|
||||
"Please repeat the new recovery password" : "Mesedez errepikatu berreskuratze pasahitz berria",
|
||||
"Password successfully changed." : "Pasahitza behar bezala aldatu da.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da.",
|
||||
"Could not update the private key password." : "Ezin izan da gako pribatu pasahitza eguneratu. ",
|
||||
"The old password was not correct, please try again." : "Pasahitz zaharra ez da egokia. Mesedez, saiatu berriro.",
|
||||
"The current log-in password was not correct, please try again." : "Oraingo pasahitza ez da egokia. Mesedez, saiatu berriro.",
|
||||
"Private key password successfully updated." : "Gako pasahitz pribatu behar bezala eguneratu da.",
|
||||
"File recovery settings updated" : "Fitxategi berreskuratze ezarpenak eguneratuak",
|
||||
"Could not update file recovery" : "Ezin da fitxategi berreskuratzea eguneratu",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Enkriptazio aplikazioa ez dago hasieratuta! Agian aplikazioa birgaitu egin da zure saioa bitartean. Mesdez atear eta sartu berriz enkriptazio aplikazioa hasierarazteko.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza %s-tik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Errore ezezaguna. Mesedez, egiaztatu zure sistemaren ezarpenak edo jarri zure administrariarekin kontaktuan.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Hasierako enkriptazioa hasi da... Honek denbora har dezake. Mesedez itxaron.",
|
||||
"Initial encryption running... Please try again later." : "Hasierako enkriptaketa abian... mesedez, saiatu beranduago.",
|
||||
"Missing requirements." : "Eskakizun batzuk ez dira betetzen.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Mesedez ziurtatu OpenSSL eta PHP hedapena instaltuta eta ongi konfiguratuta daudela. Oraingoz enkriptazio aplikazioa desgaitua izan da.",
|
||||
"Following users are not set up for encryption:" : "Hurrengo erabiltzaileak ez daude enktriptatzeko konfiguratutak:",
|
||||
"Go directly to your %spersonal settings%s." : "Joan zuzenean zure %sezarpen pertsonaletara%s.",
|
||||
"Server-side Encryption" : "Zerbitzari aldeko enkriptazioa",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):",
|
||||
"Recovery key password" : "Berreskuratze gako pasahitza",
|
||||
"Repeat Recovery key password" : "Errepikatu berreskuratze gakoaren pasahitza",
|
||||
"Enabled" : "Gaitua",
|
||||
"Disabled" : "Ez-gaitua",
|
||||
"Change recovery key password:" : "Aldatu berreskuratze gako pasahitza:",
|
||||
"Old Recovery key password" : "Berreskuratze gako pasahitz zaharra",
|
||||
"New Recovery key password" : "Berreskuratze gako pasahitz berria",
|
||||
"Repeat New Recovery key password" : "Errepikatu berreskuratze gako berriaren pasahitza",
|
||||
"Change Password" : "Aldatu Pasahitza",
|
||||
"Your private key password no longer matches your log-in password." : "Zure gako pasahitza pribatua ez da dagoeneko bat etortzen zure sartzeko pasahitzarekin.",
|
||||
"Set your old private key password to your current log-in password:" : "Ezarri zure gako pasahitz zaharra orain duzun sartzeko pasahitzan:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ez baduzu zure pasahitz zaharra gogoratzen eskatu zure administratzaileari zure fitxategiak berreskuratzeko.",
|
||||
"Old log-in password" : "Sartzeko pasahitz zaharra",
|
||||
"Current log-in password" : "Sartzeko oraingo pasahitza",
|
||||
"Update Private Key Password" : "Eguneratu gako pasahitza pribatua",
|
||||
"Enable password recovery:" : "Gaitu pasahitzaren berreskuratzea:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "خطای نامشخص",
|
||||
"Recovery key successfully enabled" : "کلید بازیابی با موفقیت فعال شده است.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!",
|
||||
"Recovery key successfully disabled" : "کلید بازیابی با موفقیت غیر فعال شده است.",
|
||||
"Password successfully changed." : "رمزعبور با موفقیت تغییر یافت.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد.",
|
||||
"Private key password successfully updated." : "رمزعبور کلید خصوصی با موفقیت به روز شد.",
|
||||
"File recovery settings updated" : "تنظیمات بازیابی فایل به روز شده است.",
|
||||
"Could not update file recovery" : "به روز رسانی بازیابی فایل را نمی تواند انجام دهد.",
|
||||
"Missing requirements." : "نیازمندی های گمشده",
|
||||
"Following users are not set up for encryption:" : "کاربران زیر برای رمزنگاری تنظیم نشده اند",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):",
|
||||
"Recovery key password" : "رمزعبور کلید بازیابی",
|
||||
"Enabled" : "فعال شده",
|
||||
"Disabled" : "غیرفعال شده",
|
||||
"Change recovery key password:" : "تغییر رمزعبور کلید بازیابی:",
|
||||
"Old Recovery key password" : "رمزعبور قدیمی کلید بازیابی ",
|
||||
"New Recovery key password" : "رمزعبور جدید کلید بازیابی",
|
||||
"Change Password" : "تغییر رمزعبور",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.",
|
||||
"Old log-in password" : "رمزعبور قدیمی",
|
||||
"Current log-in password" : "رمزعبور فعلی",
|
||||
"Update Private Key Password" : "به روز رسانی رمزعبور کلید خصوصی",
|
||||
"Enable password recovery:" : "فعال سازی بازیابی رمزعبور:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید."
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "خطای نامشخص",
|
||||
"Recovery key successfully enabled" : "کلید بازیابی با موفقیت فعال شده است.",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!",
|
||||
"Recovery key successfully disabled" : "کلید بازیابی با موفقیت غیر فعال شده است.",
|
||||
"Password successfully changed." : "رمزعبور با موفقیت تغییر یافت.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد.",
|
||||
"Private key password successfully updated." : "رمزعبور کلید خصوصی با موفقیت به روز شد.",
|
||||
"File recovery settings updated" : "تنظیمات بازیابی فایل به روز شده است.",
|
||||
"Could not update file recovery" : "به روز رسانی بازیابی فایل را نمی تواند انجام دهد.",
|
||||
"Missing requirements." : "نیازمندی های گمشده",
|
||||
"Following users are not set up for encryption:" : "کاربران زیر برای رمزنگاری تنظیم نشده اند",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):",
|
||||
"Recovery key password" : "رمزعبور کلید بازیابی",
|
||||
"Enabled" : "فعال شده",
|
||||
"Disabled" : "غیرفعال شده",
|
||||
"Change recovery key password:" : "تغییر رمزعبور کلید بازیابی:",
|
||||
"Old Recovery key password" : "رمزعبور قدیمی کلید بازیابی ",
|
||||
"New Recovery key password" : "رمزعبور جدید کلید بازیابی",
|
||||
"Change Password" : "تغییر رمزعبور",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.",
|
||||
"Old log-in password" : "رمزعبور قدیمی",
|
||||
"Current log-in password" : "رمزعبور فعلی",
|
||||
"Update Private Key Password" : "به روز رسانی رمزعبور کلید خصوصی",
|
||||
"Enable password recovery:" : "فعال سازی بازیابی رمزعبور:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید."
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Tuntematon virhe",
|
||||
"Missing recovery key password" : "Palautusavaimen salasana puuttuu",
|
||||
"Please repeat the recovery key password" : "Toista palautusavaimen salasana",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Toistamiseen annettu palautusavaimen salasana ei täsmää annettua palautusavaimen salasanaa",
|
||||
"Recovery key successfully enabled" : "Palautusavain kytketty päälle onnistuneesti",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Palautusavaimen poistaminen käytöstä ei onnistunut. Tarkista palautusavaimesi salasana!",
|
||||
"Recovery key successfully disabled" : "Palautusavain poistettu onnistuneesti käytöstä",
|
||||
"Please provide the old recovery password" : "Anna vanha palautussalasana",
|
||||
"Please provide a new recovery password" : "Anna uusi palautussalasana",
|
||||
"Please repeat the new recovery password" : "Toista uusi palautussalasana",
|
||||
"Password successfully changed." : "Salasana vaihdettiin onnistuneesti.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.",
|
||||
"Could not update the private key password." : "Yksityisen avaimen salasanaa ei voitu päivittää.",
|
||||
"The old password was not correct, please try again." : "Vanha salasana oli väärin, yritä uudelleen.",
|
||||
"The current log-in password was not correct, please try again." : "Nykyinen kirjautumissalasana ei ollut oikein, yritä uudelleen.",
|
||||
"Private key password successfully updated." : "Yksityisen avaimen salasana päivitetty onnistuneesti.",
|
||||
"File recovery settings updated" : "Tiedostopalautuksen asetukset päivitetty",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Salaussovellusta ei ole käynnissä! Kenties salaussovellus otettiin uudelleen käyttöön nykyisen istuntosi aikana. Kirjaudu ulos ja takaisin sisään saadaksesi salaussovelluksen käyttöön.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Tuntematon virhe. Tarkista järjestelmän asetukset tai ole yhteydessä ylläpitäjään.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Ensimmäinen salauskerta käynnistetty... Tämä saattaa kestää hetken.",
|
||||
"Initial encryption running... Please try again later." : "Ensimmäinen salauskerta on meneillään... Yritä myöhemmin uudelleen.",
|
||||
"Missing requirements." : "Puuttuvat vaatimukset.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Varmista, että OpenSSL ja PHP-laajennus ovat käytössä ja niiden asetukset ovat oikein. Salaussovellus on poistettu toistaiseksi käytöstä.",
|
||||
"Following users are not set up for encryption:" : "Seuraavat käyttäjät eivät ole määrittäneet salausta:",
|
||||
"Go directly to your %spersonal settings%s." : "Siirry suoraan %shenkilökohtaisiin asetuksiisi%s.",
|
||||
"Server-side Encryption" : "Palvelinpuolen salaus",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Käytä palautusavainta (salli käyttäjien tiedostojen palauttaminen, jos heidän salasana unohtuu):",
|
||||
"Recovery key password" : "Palautusavaimen salasana",
|
||||
"Repeat Recovery key password" : "Toista palautusavaimen salasana",
|
||||
"Enabled" : "Käytössä",
|
||||
"Disabled" : "Ei käytössä",
|
||||
"Change recovery key password:" : "Vaihda palautusavaimen salasana:",
|
||||
"Old Recovery key password" : "Vanha palautusavaimen salasana",
|
||||
"New Recovery key password" : "Uusi palautusavaimen salasana",
|
||||
"Repeat New Recovery key password" : "Toista uusi palautusavaimen salasana",
|
||||
"Change Password" : "Vaihda salasana",
|
||||
"Your private key password no longer matches your log-in password." : "Salaisen avaimesi salasana ei enää vastaa kirjautumissalasanaasi.",
|
||||
"Set your old private key password to your current log-in password:" : "Aseta yksityisen avaimen vanha salasana vastaamaan nykyistä kirjautumissalasanaasi:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Jos et muista vanhaa salasanaasi, voit pyytää ylläpitäjää palauttamaan tiedostosi.",
|
||||
"Old log-in password" : "Vanha kirjautumissalasana",
|
||||
"Current log-in password" : "Nykyinen kirjautumissalasana",
|
||||
"Update Private Key Password" : "Päivitä yksityisen avaimen salasana",
|
||||
"Enable password recovery:" : "Ota salasanan palautus käyttöön:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,49 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Tuntematon virhe",
|
||||
"Missing recovery key password" : "Palautusavaimen salasana puuttuu",
|
||||
"Please repeat the recovery key password" : "Toista palautusavaimen salasana",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Toistamiseen annettu palautusavaimen salasana ei täsmää annettua palautusavaimen salasanaa",
|
||||
"Recovery key successfully enabled" : "Palautusavain kytketty päälle onnistuneesti",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Palautusavaimen poistaminen käytöstä ei onnistunut. Tarkista palautusavaimesi salasana!",
|
||||
"Recovery key successfully disabled" : "Palautusavain poistettu onnistuneesti käytöstä",
|
||||
"Please provide the old recovery password" : "Anna vanha palautussalasana",
|
||||
"Please provide a new recovery password" : "Anna uusi palautussalasana",
|
||||
"Please repeat the new recovery password" : "Toista uusi palautussalasana",
|
||||
"Password successfully changed." : "Salasana vaihdettiin onnistuneesti.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.",
|
||||
"Could not update the private key password." : "Yksityisen avaimen salasanaa ei voitu päivittää.",
|
||||
"The old password was not correct, please try again." : "Vanha salasana oli väärin, yritä uudelleen.",
|
||||
"The current log-in password was not correct, please try again." : "Nykyinen kirjautumissalasana ei ollut oikein, yritä uudelleen.",
|
||||
"Private key password successfully updated." : "Yksityisen avaimen salasana päivitetty onnistuneesti.",
|
||||
"File recovery settings updated" : "Tiedostopalautuksen asetukset päivitetty",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Salaussovellusta ei ole käynnissä! Kenties salaussovellus otettiin uudelleen käyttöön nykyisen istuntosi aikana. Kirjaudu ulos ja takaisin sisään saadaksesi salaussovelluksen käyttöön.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Tuntematon virhe. Tarkista järjestelmän asetukset tai ole yhteydessä ylläpitäjään.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Ensimmäinen salauskerta käynnistetty... Tämä saattaa kestää hetken.",
|
||||
"Initial encryption running... Please try again later." : "Ensimmäinen salauskerta on meneillään... Yritä myöhemmin uudelleen.",
|
||||
"Missing requirements." : "Puuttuvat vaatimukset.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Varmista, että OpenSSL ja PHP-laajennus ovat käytössä ja niiden asetukset ovat oikein. Salaussovellus on poistettu toistaiseksi käytöstä.",
|
||||
"Following users are not set up for encryption:" : "Seuraavat käyttäjät eivät ole määrittäneet salausta:",
|
||||
"Go directly to your %spersonal settings%s." : "Siirry suoraan %shenkilökohtaisiin asetuksiisi%s.",
|
||||
"Server-side Encryption" : "Palvelinpuolen salaus",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Käytä palautusavainta (salli käyttäjien tiedostojen palauttaminen, jos heidän salasana unohtuu):",
|
||||
"Recovery key password" : "Palautusavaimen salasana",
|
||||
"Repeat Recovery key password" : "Toista palautusavaimen salasana",
|
||||
"Enabled" : "Käytössä",
|
||||
"Disabled" : "Ei käytössä",
|
||||
"Change recovery key password:" : "Vaihda palautusavaimen salasana:",
|
||||
"Old Recovery key password" : "Vanha palautusavaimen salasana",
|
||||
"New Recovery key password" : "Uusi palautusavaimen salasana",
|
||||
"Repeat New Recovery key password" : "Toista uusi palautusavaimen salasana",
|
||||
"Change Password" : "Vaihda salasana",
|
||||
"Your private key password no longer matches your log-in password." : "Salaisen avaimesi salasana ei enää vastaa kirjautumissalasanaasi.",
|
||||
"Set your old private key password to your current log-in password:" : "Aseta yksityisen avaimen vanha salasana vastaamaan nykyistä kirjautumissalasanaasi:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Jos et muista vanhaa salasanaasi, voit pyytää ylläpitäjää palauttamaan tiedostosi.",
|
||||
"Old log-in password" : "Vanha kirjautumissalasana",
|
||||
"Current log-in password" : "Nykyinen kirjautumissalasana",
|
||||
"Update Private Key Password" : "Päivitä yksityisen avaimen salasana",
|
||||
"Enable password recovery:" : "Ota salasanan palautus käyttöön:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Erreur Inconnue ",
|
||||
"Missing recovery key password" : "Mot de passe de la clef de récupération manquant",
|
||||
"Please repeat the recovery key password" : "Répétez le mot de passe de la clef de récupération",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Le mot de passe de la clef de récupération et sa répétition ne sont pas identiques.",
|
||||
"Recovery key successfully enabled" : "Clef de récupération activée avec succès",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Impossible de désactiver la clef de récupération. Veuillez vérifier le mot de passe de votre clef de récupération !",
|
||||
"Recovery key successfully disabled" : "Clef de récupération désactivée avec succès",
|
||||
"Please provide the old recovery password" : "Veuillez entrer l'ancien mot de passe de récupération",
|
||||
"Please provide a new recovery password" : "Veuillez entrer un nouveau mot de passe de récupération",
|
||||
"Please repeat the new recovery password" : "Veuillez répéter le nouveau mot de passe de récupération",
|
||||
"Password successfully changed." : "Mot de passe changé avec succès.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Erreur lors du changement de mot de passe. L'ancien mot de passe est peut-être incorrect.",
|
||||
"Could not update the private key password." : "Impossible de mettre à jour le mot de passe de la clef privée.",
|
||||
"The old password was not correct, please try again." : "L'ancien mot de passe est incorrect. Veuillez réessayer.",
|
||||
"The current log-in password was not correct, please try again." : "Le mot de passe actuel n'est pas correct, veuillez réessayer.",
|
||||
"Private key password successfully updated." : "Mot de passe de la clef privée mis à jour avec succès.",
|
||||
"File recovery settings updated" : "Paramètres de récupération de fichiers mis à jour",
|
||||
"Could not update file recovery" : "Impossible de mettre à jour les fichiers de récupération",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Votre clef privée n'est pas valide ! Votre mot de passe a probablement été modifié hors de %s (ex. votre annuaire d'entreprise). Vous pouvez mettre à jour le mot de passe de votre clef privée dans les paramètres personnels pour pouvoir récupérer l'accès à vos fichiers chiffrés.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter un administrateur.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.",
|
||||
"Initial encryption running... Please try again later." : "Chiffrement initial en cours... Veuillez ré-essayer ultérieurement.",
|
||||
"Missing requirements." : "Dépendances manquantes.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Merci de vous assurer que OpenSSL et son extension PHP sont activés et configurés correctement. Pour l'instant, l'application de chiffrement a été désactivée.",
|
||||
"Following users are not set up for encryption:" : "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :",
|
||||
"Go directly to your %spersonal settings%s." : "Aller à %svos paramètres personnels%s.",
|
||||
"Server-side Encryption" : "Chiffrement côté serveur",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).",
|
||||
"Recovery key password" : "Mot de passe de la clef de récupération",
|
||||
"Repeat Recovery key password" : "Répétez le mot de passe de la clef de récupération",
|
||||
"Enabled" : "Activé",
|
||||
"Disabled" : "Désactivé",
|
||||
"Change recovery key password:" : "Modifier le mot de passe de la clef de récupération :",
|
||||
"Old Recovery key password" : "Ancien mot de passe de la clef de récupération",
|
||||
"New Recovery key password" : "Nouveau mot de passe de la clef de récupération",
|
||||
"Repeat New Recovery key password" : "Répétez le nouveau mot de passe de la clef de récupération",
|
||||
"Change Password" : "Changer de mot de passe",
|
||||
"Your private key password no longer matches your log-in password." : "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion.",
|
||||
"Set your old private key password to your current log-in password:" : "Faites de votre mot de passe de connexion le mot de passe de votre clef privée :",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers.",
|
||||
"Old log-in password" : "Ancien mot de passe de connexion",
|
||||
"Current log-in password" : "Actuel mot de passe de connexion",
|
||||
"Update Private Key Password" : "Mettre à jour le mot de passe de votre clef privée",
|
||||
"Enable password recovery:" : "Activer la récupération du mot de passe :",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Erreur Inconnue ",
|
||||
"Missing recovery key password" : "Mot de passe de la clef de récupération manquant",
|
||||
"Please repeat the recovery key password" : "Répétez le mot de passe de la clef de récupération",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Le mot de passe de la clef de récupération et sa répétition ne sont pas identiques.",
|
||||
"Recovery key successfully enabled" : "Clef de récupération activée avec succès",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Impossible de désactiver la clef de récupération. Veuillez vérifier le mot de passe de votre clef de récupération !",
|
||||
"Recovery key successfully disabled" : "Clef de récupération désactivée avec succès",
|
||||
"Please provide the old recovery password" : "Veuillez entrer l'ancien mot de passe de récupération",
|
||||
"Please provide a new recovery password" : "Veuillez entrer un nouveau mot de passe de récupération",
|
||||
"Please repeat the new recovery password" : "Veuillez répéter le nouveau mot de passe de récupération",
|
||||
"Password successfully changed." : "Mot de passe changé avec succès.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Erreur lors du changement de mot de passe. L'ancien mot de passe est peut-être incorrect.",
|
||||
"Could not update the private key password." : "Impossible de mettre à jour le mot de passe de la clef privée.",
|
||||
"The old password was not correct, please try again." : "L'ancien mot de passe est incorrect. Veuillez réessayer.",
|
||||
"The current log-in password was not correct, please try again." : "Le mot de passe actuel n'est pas correct, veuillez réessayer.",
|
||||
"Private key password successfully updated." : "Mot de passe de la clef privée mis à jour avec succès.",
|
||||
"File recovery settings updated" : "Paramètres de récupération de fichiers mis à jour",
|
||||
"Could not update file recovery" : "Impossible de mettre à jour les fichiers de récupération",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "L'application de chiffrement n'est pas initialisée ! Peut-être que cette application a été réactivée pendant votre session. Veuillez essayer de vous déconnecter et ensuite de vous reconnecter pour initialiser l'application de chiffrement.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Votre clef privée n'est pas valide ! Votre mot de passe a probablement été modifié hors de %s (ex. votre annuaire d'entreprise). Vous pouvez mettre à jour le mot de passe de votre clef privée dans les paramètres personnels pour pouvoir récupérer l'accès à vos fichiers chiffrés.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Erreur inconnue. Veuillez vérifier vos paramètres système ou contacter un administrateur.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Chiffrement initial démarré... Cela peut prendre un certain temps. Veuillez patienter.",
|
||||
"Initial encryption running... Please try again later." : "Chiffrement initial en cours... Veuillez ré-essayer ultérieurement.",
|
||||
"Missing requirements." : "Dépendances manquantes.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Merci de vous assurer que OpenSSL et son extension PHP sont activés et configurés correctement. Pour l'instant, l'application de chiffrement a été désactivée.",
|
||||
"Following users are not set up for encryption:" : "Les utilisateurs suivants ne sont pas configurés pour le chiffrement :",
|
||||
"Go directly to your %spersonal settings%s." : "Aller à %svos paramètres personnels%s.",
|
||||
"Server-side Encryption" : "Chiffrement côté serveur",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Activer la clef de récupération (permet de récupérer les fichiers des utilisateurs en cas de perte de mot de passe).",
|
||||
"Recovery key password" : "Mot de passe de la clef de récupération",
|
||||
"Repeat Recovery key password" : "Répétez le mot de passe de la clef de récupération",
|
||||
"Enabled" : "Activé",
|
||||
"Disabled" : "Désactivé",
|
||||
"Change recovery key password:" : "Modifier le mot de passe de la clef de récupération :",
|
||||
"Old Recovery key password" : "Ancien mot de passe de la clef de récupération",
|
||||
"New Recovery key password" : "Nouveau mot de passe de la clef de récupération",
|
||||
"Repeat New Recovery key password" : "Répétez le nouveau mot de passe de la clef de récupération",
|
||||
"Change Password" : "Changer de mot de passe",
|
||||
"Your private key password no longer matches your log-in password." : "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion.",
|
||||
"Set your old private key password to your current log-in password:" : "Faites de votre mot de passe de connexion le mot de passe de votre clef privée :",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers.",
|
||||
"Old log-in password" : "Ancien mot de passe de connexion",
|
||||
"Current log-in password" : "Actuel mot de passe de connexion",
|
||||
"Update Private Key Password" : "Mettre à jour le mot de passe de votre clef privée",
|
||||
"Enable password recovery:" : "Activer la récupération du mot de passe :",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Produciuse un erro descoñecido",
|
||||
"Missing recovery key password" : "Falta a chave de recuperación",
|
||||
"Please repeat the recovery key password" : "Repita a chave de recuperación",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "A repetición da chave de recuperación non coincide coa chave de recuperación estabelecida",
|
||||
"Recovery key successfully enabled" : "Activada satisfactoriamente a chave de recuperación",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Non foi posíbel desactivar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!",
|
||||
"Recovery key successfully disabled" : "Desactivada satisfactoriamente a chave de recuperación",
|
||||
"Please provide the old recovery password" : "Introduza a chave de recuperación antiga",
|
||||
"Please provide a new recovery password" : "Introduza a nova chave de recuperación",
|
||||
"Please repeat the new recovery password" : "Repita a nova chave de recuperación",
|
||||
"Password successfully changed." : "O contrasinal foi cambiado satisfactoriamente",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.",
|
||||
"Could not update the private key password." : "Non foi posíbel actualizar o contrasinal da chave privada.",
|
||||
"The old password was not correct, please try again." : "O contrasinal antigo non é correcto, ténteo de novo.",
|
||||
"The current log-in password was not correct, please try again." : "O actual contrasinal de acceso non é correcto, ténteo de novo.",
|
||||
"Private key password successfully updated." : "A chave privada foi actualizada correctamente.",
|
||||
"File recovery settings updated" : "Actualizouse o ficheiro de axustes de recuperación",
|
||||
"Could not update file recovery" : "Non foi posíbel actualizar o ficheiro de recuperación",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Non se iniciou a aplicación de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala para que tamén se inicie a aplicación de cifrado.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior do %s (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pídalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Produciuse un erro descoñecido. Comprobe os axustes do sistema ou contacte co administrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Comezou o cifrado inicial... Isto pode levar bastante tempo. Agarde.",
|
||||
"Initial encryption running... Please try again later." : "O cifrado inicial está en execución... Tenteo máis tarde.",
|
||||
"Missing requirements." : "Non se cumpren os requisitos.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Asegúrese de que está instalado o OpenSSL xunto coa extensión PHP e que estean activados e configurados correctamente. Polo de agora foi desactivada a aplicación de cifrado.",
|
||||
"Following users are not set up for encryption:" : "Os seguintes usuarios non teñen configuración para o cifrado:",
|
||||
"Go directly to your %spersonal settings%s." : "Vaia directamente aos seus %saxustes persoais%s.",
|
||||
"Server-side Encryption" : "Cifrado na parte do servidor",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "A aplicación de cifrado está activada, mais as chaves non foron preparadas, saia da sesión e volva a acceder de novo",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):",
|
||||
"Recovery key password" : "Contrasinal da chave de recuperación",
|
||||
"Repeat Recovery key password" : "Repita o contrasinal da chave de recuperación",
|
||||
"Enabled" : "Activado",
|
||||
"Disabled" : "Desactivado",
|
||||
"Change recovery key password:" : "Cambiar o contrasinal da chave de la recuperación:",
|
||||
"Old Recovery key password" : "Antigo contrasinal da chave de recuperación",
|
||||
"New Recovery key password" : "Novo contrasinal da chave de recuperación",
|
||||
"Repeat New Recovery key password" : "Repita o novo contrasinal da chave de recuperación",
|
||||
"Change Password" : "Cambiar o contrasinal",
|
||||
"Your private key password no longer matches your log-in password." : "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.",
|
||||
"Set your old private key password to your current log-in password:" : "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros.",
|
||||
"Old log-in password" : "Contrasinal antigo de acceso",
|
||||
"Current log-in password" : "Contrasinal actual de acceso",
|
||||
"Update Private Key Password" : "Actualizar o contrasinal da chave privada",
|
||||
"Enable password recovery:" : "Activar o contrasinal de recuperación:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Produciuse un erro descoñecido",
|
||||
"Missing recovery key password" : "Falta a chave de recuperación",
|
||||
"Please repeat the recovery key password" : "Repita a chave de recuperación",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "A repetición da chave de recuperación non coincide coa chave de recuperación estabelecida",
|
||||
"Recovery key successfully enabled" : "Activada satisfactoriamente a chave de recuperación",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Non foi posíbel desactivar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!",
|
||||
"Recovery key successfully disabled" : "Desactivada satisfactoriamente a chave de recuperación",
|
||||
"Please provide the old recovery password" : "Introduza a chave de recuperación antiga",
|
||||
"Please provide a new recovery password" : "Introduza a nova chave de recuperación",
|
||||
"Please repeat the new recovery password" : "Repita a nova chave de recuperación",
|
||||
"Password successfully changed." : "O contrasinal foi cambiado satisfactoriamente",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Non foi posíbel cambiar o contrasinal. Probabelmente o contrasinal antigo non é o correcto.",
|
||||
"Could not update the private key password." : "Non foi posíbel actualizar o contrasinal da chave privada.",
|
||||
"The old password was not correct, please try again." : "O contrasinal antigo non é correcto, ténteo de novo.",
|
||||
"The current log-in password was not correct, please try again." : "O actual contrasinal de acceso non é correcto, ténteo de novo.",
|
||||
"Private key password successfully updated." : "A chave privada foi actualizada correctamente.",
|
||||
"File recovery settings updated" : "Actualizouse o ficheiro de axustes de recuperación",
|
||||
"Could not update file recovery" : "Non foi posíbel actualizar o ficheiro de recuperación",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Non se iniciou a aplicación de cifrado! Quizais volva a activarse durante a sesión. Tente pechar a sesión e volver iniciala para que tamén se inicie a aplicación de cifrado.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior do %s (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Non foi posíbel descifrar o ficheiro, probabelmente tratase dun ficheiro compartido. Pídalle ao propietario do ficheiro que volva compartir o ficheiro con vostede.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Produciuse un erro descoñecido. Comprobe os axustes do sistema ou contacte co administrador",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Comezou o cifrado inicial... Isto pode levar bastante tempo. Agarde.",
|
||||
"Initial encryption running... Please try again later." : "O cifrado inicial está en execución... Tenteo máis tarde.",
|
||||
"Missing requirements." : "Non se cumpren os requisitos.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Asegúrese de que está instalado o OpenSSL xunto coa extensión PHP e que estean activados e configurados correctamente. Polo de agora foi desactivada a aplicación de cifrado.",
|
||||
"Following users are not set up for encryption:" : "Os seguintes usuarios non teñen configuración para o cifrado:",
|
||||
"Go directly to your %spersonal settings%s." : "Vaia directamente aos seus %saxustes persoais%s.",
|
||||
"Server-side Encryption" : "Cifrado na parte do servidor",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "A aplicación de cifrado está activada, mais as chaves non foron preparadas, saia da sesión e volva a acceder de novo",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Activar a chave de recuperación (permitirá recuperar os ficheiros dos usuarios no caso de perda do contrasinal):",
|
||||
"Recovery key password" : "Contrasinal da chave de recuperación",
|
||||
"Repeat Recovery key password" : "Repita o contrasinal da chave de recuperación",
|
||||
"Enabled" : "Activado",
|
||||
"Disabled" : "Desactivado",
|
||||
"Change recovery key password:" : "Cambiar o contrasinal da chave de la recuperación:",
|
||||
"Old Recovery key password" : "Antigo contrasinal da chave de recuperación",
|
||||
"New Recovery key password" : "Novo contrasinal da chave de recuperación",
|
||||
"Repeat New Recovery key password" : "Repita o novo contrasinal da chave de recuperación",
|
||||
"Change Password" : "Cambiar o contrasinal",
|
||||
"Your private key password no longer matches your log-in password." : "O seu contrasinal da chave privada non coincide co seu contrasinal de acceso.",
|
||||
"Set your old private key password to your current log-in password:" : "Estabeleza o seu contrasinal antigo da chave de recuperación ao seu contrasinal de acceso actual:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Se non lembra o seu antigo contrasinal pode pedírllelo ao seu administrador para recuperar os seus ficheiros.",
|
||||
"Old log-in password" : "Contrasinal antigo de acceso",
|
||||
"Current log-in password" : "Contrasinal actual de acceso",
|
||||
"Update Private Key Password" : "Actualizar o contrasinal da chave privada",
|
||||
"Enable password recovery:" : "Activar o contrasinal de recuperación:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ao activar esta opción permitiráselle volver a obter acceso aos ficheiros cifrados no caso de perda do contrasinal"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "שגיאה בלתי ידועה"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "שגיאה בלתי ידועה"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Nepoznata pogreška",
|
||||
"Recovery key successfully enabled" : "Ključ za oporavak uspješno aktiviran",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Ključ za oporavak nije moguće deaktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
|
||||
"Recovery key successfully disabled" : "Ključ za ooravak uspješno deaktiviran",
|
||||
"Password successfully changed." : "Lozinka uspješno promijenjena.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Lozinku nije moguće promijeniti. Možda je stara lozinka bila neispravna.",
|
||||
"Private key password successfully updated." : "Lozinka privatnog ključa uspješno ažurirana.",
|
||||
"File recovery settings updated" : "Ažurirane postavke za oporavak datoteke",
|
||||
"Could not update file recovery" : "Oporavak datoteke nije moguće ažurirati",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Aplikacija šifriranja nije inicijalizirana! Možda je aplikacija šifriranja bila reaktivirana tijekom vaše sesije.Da biste inicijalizirali aplikaciju šifriranja, molimo, pokušajte se odjaviti i ponovno prijaviti.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Vaš privatni ključ nije ispravan! Vjerojatno je vaša lozinka promijenjena izvan %s(npr. vašega korporativnog direktorija). Lozinku svoga privatnog ključa možete ažuriratiu svojim osobnim postavkama da biste obnovili pristup svojim šifriranim datotekama.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ovu datoteku nije moguće dešifrirati, vjerojatno je riječ o zajedničkoj datoteci. Molimopitajte vlasnika datoteke da je ponovo podijeli s vama.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Pogreška nepoznata. Molimo provjerite svoje sistemske postavke ili kontaktirajte svog administratora.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Počelo inicijalno šifriranje... To može potrajati neko vrijeme. Molimo, pričekajte.",
|
||||
"Initial encryption running... Please try again later." : "Inicijalno šifriranje u tijeku... Molimo, pokušajte ponovno kasnije.",
|
||||
"Missing requirements." : "Nedostaju preduvjeti.",
|
||||
"Following users are not set up for encryption:" : "Sljedeći korisnici nisu određeni za šifriranje:",
|
||||
"Go directly to your %spersonal settings%s." : "Idite izravno na svoje %sosobne postavke%s.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacija šifriranja je aktivirana ali vaši ključevi nisu inicijalizirani, molimo odjavite se iponovno prijavite.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktivirajte ključ za oporavak (u slučaju gubitka lozinke dozvolite oporavak korisničkih datoteka):",
|
||||
"Recovery key password" : "Lozinka ključa za oporavak",
|
||||
"Repeat Recovery key password" : "Ponovite lozinku ključa za oporavak",
|
||||
"Enabled" : "Aktivirano",
|
||||
"Disabled" : "Onemogućeno",
|
||||
"Change recovery key password:" : "Promijenite lozinku ključa za oporavak",
|
||||
"Old Recovery key password" : "Stara lozinka ključa za oporavak",
|
||||
"New Recovery key password" : "Nova lozinka ključa za oporavak",
|
||||
"Repeat New Recovery key password" : "Ponovite novu lozinku ključa za oporavak",
|
||||
"Change Password" : "Promijenite lozinku",
|
||||
"Your private key password no longer matches your log-in password." : "Lozinka vašeg privatnog ključa više se ne slaže s vašom lozinkom za prijavu.",
|
||||
"Set your old private key password to your current log-in password:" : "Postavite svoju staru lozinku privatnog ključa u svoju postojeću lozinku za prijavu.",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ako se ne sjećate svoje stare lozinke, možete zamoliti administratora da oporavi vaše datoteke.",
|
||||
"Old log-in password" : "Stara lozinka za prijavu",
|
||||
"Current log-in password" : "Aktualna lozinka za prijavu",
|
||||
"Update Private Key Password" : "Ažurirajte lozinku privatnog ključa",
|
||||
"Enable password recovery:" : "Omogućite oporavak lozinke:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "U slučaju gubitka lozinke, aktiviranje ove opcije ponovno će vam pribaviti pristup vašim šifriranim datotekama"
|
||||
},
|
||||
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Nepoznata pogreška",
|
||||
"Recovery key successfully enabled" : "Ključ za oporavak uspješno aktiviran",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Ključ za oporavak nije moguće deaktivirati. Molimo provjerite svoju lozinku ključa za oporavak!",
|
||||
"Recovery key successfully disabled" : "Ključ za ooravak uspješno deaktiviran",
|
||||
"Password successfully changed." : "Lozinka uspješno promijenjena.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Lozinku nije moguće promijeniti. Možda je stara lozinka bila neispravna.",
|
||||
"Private key password successfully updated." : "Lozinka privatnog ključa uspješno ažurirana.",
|
||||
"File recovery settings updated" : "Ažurirane postavke za oporavak datoteke",
|
||||
"Could not update file recovery" : "Oporavak datoteke nije moguće ažurirati",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Aplikacija šifriranja nije inicijalizirana! Možda je aplikacija šifriranja bila reaktivirana tijekom vaše sesije.Da biste inicijalizirali aplikaciju šifriranja, molimo, pokušajte se odjaviti i ponovno prijaviti.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Vaš privatni ključ nije ispravan! Vjerojatno je vaša lozinka promijenjena izvan %s(npr. vašega korporativnog direktorija). Lozinku svoga privatnog ključa možete ažuriratiu svojim osobnim postavkama da biste obnovili pristup svojim šifriranim datotekama.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ovu datoteku nije moguće dešifrirati, vjerojatno je riječ o zajedničkoj datoteci. Molimopitajte vlasnika datoteke da je ponovo podijeli s vama.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Pogreška nepoznata. Molimo provjerite svoje sistemske postavke ili kontaktirajte svog administratora.",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Počelo inicijalno šifriranje... To može potrajati neko vrijeme. Molimo, pričekajte.",
|
||||
"Initial encryption running... Please try again later." : "Inicijalno šifriranje u tijeku... Molimo, pokušajte ponovno kasnije.",
|
||||
"Missing requirements." : "Nedostaju preduvjeti.",
|
||||
"Following users are not set up for encryption:" : "Sljedeći korisnici nisu određeni za šifriranje:",
|
||||
"Go directly to your %spersonal settings%s." : "Idite izravno na svoje %sosobne postavke%s.",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacija šifriranja je aktivirana ali vaši ključevi nisu inicijalizirani, molimo odjavite se iponovno prijavite.",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktivirajte ključ za oporavak (u slučaju gubitka lozinke dozvolite oporavak korisničkih datoteka):",
|
||||
"Recovery key password" : "Lozinka ključa za oporavak",
|
||||
"Repeat Recovery key password" : "Ponovite lozinku ključa za oporavak",
|
||||
"Enabled" : "Aktivirano",
|
||||
"Disabled" : "Onemogućeno",
|
||||
"Change recovery key password:" : "Promijenite lozinku ključa za oporavak",
|
||||
"Old Recovery key password" : "Stara lozinka ključa za oporavak",
|
||||
"New Recovery key password" : "Nova lozinka ključa za oporavak",
|
||||
"Repeat New Recovery key password" : "Ponovite novu lozinku ključa za oporavak",
|
||||
"Change Password" : "Promijenite lozinku",
|
||||
"Your private key password no longer matches your log-in password." : "Lozinka vašeg privatnog ključa više se ne slaže s vašom lozinkom za prijavu.",
|
||||
"Set your old private key password to your current log-in password:" : "Postavite svoju staru lozinku privatnog ključa u svoju postojeću lozinku za prijavu.",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ako se ne sjećate svoje stare lozinke, možete zamoliti administratora da oporavi vaše datoteke.",
|
||||
"Old log-in password" : "Stara lozinka za prijavu",
|
||||
"Current log-in password" : "Aktualna lozinka za prijavu",
|
||||
"Update Private Key Password" : "Ažurirajte lozinku privatnog ključa",
|
||||
"Enable password recovery:" : "Omogućite oporavak lozinke:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "U slučaju gubitka lozinke, aktiviranje ove opcije ponovno će vam pribaviti pristup vašim šifriranim datotekama"
|
||||
},"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"
|
||||
}
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Ismeretlen hiba",
|
||||
"Recovery key successfully enabled" : "A helyreállítási kulcs sikeresen bekapcsolva",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
|
||||
"Recovery key successfully disabled" : "A helyreállítási kulcs sikeresen kikapcsolva",
|
||||
"Password successfully changed." : "A jelszót sikeresen megváltoztattuk.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.",
|
||||
"Private key password successfully updated." : "A személyes kulcsának jelszava frissítésre került.",
|
||||
"File recovery settings updated" : "A fájlhelyreállítási beállítások frissültek",
|
||||
"Could not update file recovery" : "A fájlhelyreállítás nem frissíthető",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!",
|
||||
"Initial encryption started... This can take some time. Please wait." : "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.",
|
||||
"Initial encryption running... Please try again later." : "Kezedeti titkosítás fut... Próbálja később.",
|
||||
"Missing requirements." : "Hiányzó követelmények.",
|
||||
"Following users are not set up for encryption:" : "A következő felhasználók nem állították be a titkosítást:",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):",
|
||||
"Recovery key password" : "A helyreállítási kulcs jelszava",
|
||||
"Repeat Recovery key password" : "Ismételje meg a helyreállítási kulcs jelszavát",
|
||||
"Enabled" : "Bekapcsolva",
|
||||
"Disabled" : "Kikapcsolva",
|
||||
"Change recovery key password:" : "A helyreállítási kulcs jelszavának módosítása:",
|
||||
"Old Recovery key password" : "Régi Helyreállítási Kulcs Jelszava",
|
||||
"New Recovery key password" : "Új Helyreállítási kulcs jelszava",
|
||||
"Repeat New Recovery key password" : "Ismételje meg az új helyreállítási kulcs jelszavát",
|
||||
"Change Password" : "Jelszó megváltoztatása",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.",
|
||||
"Old log-in password" : "Régi bejelentkezési jelszó",
|
||||
"Current log-in password" : "Jelenlegi bejelentkezési jelszó",
|
||||
"Update Private Key Password" : "A személyest kulcs jelszó frissítése",
|
||||
"Enable password recovery:" : "Jelszó-visszaállítás bekapcsolása",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Ismeretlen hiba",
|
||||
"Recovery key successfully enabled" : "A helyreállítási kulcs sikeresen bekapcsolva",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "A helyreállítási kulcsot nem lehetett kikapcsolni. Ellenőrizze a helyreállítási kulcsa jelszavát!",
|
||||
"Recovery key successfully disabled" : "A helyreállítási kulcs sikeresen kikapcsolva",
|
||||
"Password successfully changed." : "A jelszót sikeresen megváltoztattuk.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "A jelszót nem lehet megváltoztatni! Lehet, hogy hibás volt a régi jelszó.",
|
||||
"Private key password successfully updated." : "A személyes kulcsának jelszava frissítésre került.",
|
||||
"File recovery settings updated" : "A fájlhelyreállítási beállítások frissültek",
|
||||
"Could not update file recovery" : "A fájlhelyreállítás nem frissíthető",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "A titkosítási modul nincs elindítva! Talán a munkafolyamat közben került engedélyezésre. Kérjük jelentkezzen ki majd ismét jelentkezzen be, hogy a titkosítási modul megfelelően elinduljon!",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Az állományok titkosításához használt titkos kulcsa érvénytelen. Valószínűleg a %s rendszeren kívül változtatta meg a jelszavát (pl. a munkahelyi címtárban). A személyes beállításoknál frissítheti a titkos kulcsát, hogy ismét elérhesse a titkosított állományait.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Az állományt nem sikerült dekódolni, valószínűleg ez egy megosztott fájl. Kérje meg az állomány tulajdonosát, hogy újra ossza meg Önnel ezt az állományt!",
|
||||
"Initial encryption started... This can take some time. Please wait." : "A titkosítási folyamat megkezdődött... Ez hosszabb ideig is eltarthat. Kérem várjon.",
|
||||
"Initial encryption running... Please try again later." : "Kezedeti titkosítás fut... Próbálja később.",
|
||||
"Missing requirements." : "Hiányzó követelmények.",
|
||||
"Following users are not set up for encryption:" : "A következő felhasználók nem állították be a titkosítást:",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "A helyreállítási kulcs beállítása (lehetővé teszi a felhasználók állományainak visszaállítását, ha elfelejtik a jelszavukat):",
|
||||
"Recovery key password" : "A helyreállítási kulcs jelszava",
|
||||
"Repeat Recovery key password" : "Ismételje meg a helyreállítási kulcs jelszavát",
|
||||
"Enabled" : "Bekapcsolva",
|
||||
"Disabled" : "Kikapcsolva",
|
||||
"Change recovery key password:" : "A helyreállítási kulcs jelszavának módosítása:",
|
||||
"Old Recovery key password" : "Régi Helyreállítási Kulcs Jelszava",
|
||||
"New Recovery key password" : "Új Helyreállítási kulcs jelszava",
|
||||
"Repeat New Recovery key password" : "Ismételje meg az új helyreállítási kulcs jelszavát",
|
||||
"Change Password" : "Jelszó megváltoztatása",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Ha nem emlékszik a régi jelszavára akkor megkérheti a rendszergazdát, hogy állítsa vissza az állományait.",
|
||||
"Old log-in password" : "Régi bejelentkezési jelszó",
|
||||
"Current log-in password" : "Jelenlegi bejelentkezési jelszó",
|
||||
"Update Private Key Password" : "A személyest kulcs jelszó frissítése",
|
||||
"Enable password recovery:" : "Jelszó-visszaállítás bekapcsolása",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ez az opció lehetővé teszi, hogy a titkosított állományok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Error Incognite"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Error Incognite"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Kesalahan tidak diketahui",
|
||||
"Missing recovery key password" : "Sandi kunci pemuliahan hilang",
|
||||
"Please repeat the recovery key password" : "Silakan ulangi sandi kunci pemulihan",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Sandi kunci pemulihan yang diulangi tidak cocok dengan sandi kunci pemulihan yang diberikan",
|
||||
"Recovery key successfully enabled" : "Kunci pemulihan berhasil diaktifkan",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
|
||||
"Recovery key successfully disabled" : "Kunci pemulihan berhasil dinonaktifkan",
|
||||
"Please provide the old recovery password" : "Mohon berikan sandi pemulihan lama",
|
||||
"Please provide a new recovery password" : "Mohon berikan sandi pemulihan baru",
|
||||
"Please repeat the new recovery password" : "Silakan ulangi sandi pemulihan baru",
|
||||
"Password successfully changed." : "Sandi berhasil diubah",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.",
|
||||
"Could not update the private key password." : "Tidak dapat memperbarui sandi kunci private.",
|
||||
"The old password was not correct, please try again." : "Sandi lama salah, mohon coba lagi.",
|
||||
"The current log-in password was not correct, please try again." : "Sandi masuk saat ini salah, mohon coba lagi.",
|
||||
"Private key password successfully updated." : "Sandi kunci privat berhasil diperbarui.",
|
||||
"File recovery settings updated" : "Pengaturan pemulihan berkas diperbarui",
|
||||
"Could not update file recovery" : "Tidak dapat memperbarui pemulihan berkas",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Aplikasi enkripsi tidak dimulai! Kemungkinan aplikasi enkripsi telah diaktifkan ulang saat sesi Anda. Silakan coba untuk keluar dan kembali lagi untuk memulai aplikasi enkripsi.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Kunci private Anda tidak sah! Nampaknya sandi Anda telah diubah diluar %s (misal direktori perusahaan Anda). Anda dapat memperbarui sandi kunci private untuk memulihakan akses ke berkas terenkripsi Anda.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Kesalahan tidak diketahui. Silakan periksa pengaturan sistem Anda atau hubungi administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Enskripsi awal dijalankan... Ini dapat memakan waktu. Silakan tunggu.",
|
||||
"Initial encryption running... Please try again later." : "Enkripsi awal sedang berjalan... Sialakn coba lagi nanti.",
|
||||
"Missing requirements." : "Persyaratan tidak terpenuhi.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Mohon pastikan bahwa OpenSSL bersama ekstensi PHP diaktifkan dan terkonfigurasi dengan benar. Untuk sekarang, aplikasi enkripsi akan dinonaktifkan.",
|
||||
"Following users are not set up for encryption:" : "Pengguna berikut belum diatur untuk enkripsi:",
|
||||
"Go directly to your %spersonal settings%s." : "Langsung ke %spengaturan pribadi%s Anda.",
|
||||
"Server-side Encryption" : "Enkripsi Sisi-Server",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktifkan kunci pemulihan (memungkinkan pengguna untuk memulihkan berkas dalam kasus kehilangan sandi):",
|
||||
"Recovery key password" : "Sandi kunci pemulihan",
|
||||
"Repeat Recovery key password" : "Ulangi sandi kunci Pemulihan",
|
||||
"Enabled" : "Diaktifkan",
|
||||
"Disabled" : "Dinonaktifkan",
|
||||
"Change recovery key password:" : "Ubah sandi kunci pemulihan:",
|
||||
"Old Recovery key password" : "Sandi kunci Pemulihan Lama",
|
||||
"New Recovery key password" : "Sandi kunci Pemulihan Baru",
|
||||
"Repeat New Recovery key password" : "Ulangi sandi kunci Pemulihan baru",
|
||||
"Change Password" : "Ubah Sandi",
|
||||
"Your private key password no longer matches your log-in password." : "Sandi kunci private Anda tidak lagi cocok dengan sandi masuk Anda.",
|
||||
"Set your old private key password to your current log-in password:" : "Setel sandi kunci private Anda untuk sandi masuk Anda saat ini:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.",
|
||||
"Old log-in password" : "Sandi masuk yang lama",
|
||||
"Current log-in password" : "Sandi masuk saat ini",
|
||||
"Update Private Key Password" : "Perbarui Sandi Kunci Private",
|
||||
"Enable password recovery:" : "Aktifkan sandi pemulihan:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Kesalahan tidak diketahui",
|
||||
"Missing recovery key password" : "Sandi kunci pemuliahan hilang",
|
||||
"Please repeat the recovery key password" : "Silakan ulangi sandi kunci pemulihan",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "Sandi kunci pemulihan yang diulangi tidak cocok dengan sandi kunci pemulihan yang diberikan",
|
||||
"Recovery key successfully enabled" : "Kunci pemulihan berhasil diaktifkan",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!",
|
||||
"Recovery key successfully disabled" : "Kunci pemulihan berhasil dinonaktifkan",
|
||||
"Please provide the old recovery password" : "Mohon berikan sandi pemulihan lama",
|
||||
"Please provide a new recovery password" : "Mohon berikan sandi pemulihan baru",
|
||||
"Please repeat the new recovery password" : "Silakan ulangi sandi pemulihan baru",
|
||||
"Password successfully changed." : "Sandi berhasil diubah",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.",
|
||||
"Could not update the private key password." : "Tidak dapat memperbarui sandi kunci private.",
|
||||
"The old password was not correct, please try again." : "Sandi lama salah, mohon coba lagi.",
|
||||
"The current log-in password was not correct, please try again." : "Sandi masuk saat ini salah, mohon coba lagi.",
|
||||
"Private key password successfully updated." : "Sandi kunci privat berhasil diperbarui.",
|
||||
"File recovery settings updated" : "Pengaturan pemulihan berkas diperbarui",
|
||||
"Could not update file recovery" : "Tidak dapat memperbarui pemulihan berkas",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Aplikasi enkripsi tidak dimulai! Kemungkinan aplikasi enkripsi telah diaktifkan ulang saat sesi Anda. Silakan coba untuk keluar dan kembali lagi untuk memulai aplikasi enkripsi.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "Kunci private Anda tidak sah! Nampaknya sandi Anda telah diubah diluar %s (misal direktori perusahaan Anda). Anda dapat memperbarui sandi kunci private untuk memulihakan akses ke berkas terenkripsi Anda.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Kesalahan tidak diketahui. Silakan periksa pengaturan sistem Anda atau hubungi administrator",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Enskripsi awal dijalankan... Ini dapat memakan waktu. Silakan tunggu.",
|
||||
"Initial encryption running... Please try again later." : "Enkripsi awal sedang berjalan... Sialakn coba lagi nanti.",
|
||||
"Missing requirements." : "Persyaratan tidak terpenuhi.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Mohon pastikan bahwa OpenSSL bersama ekstensi PHP diaktifkan dan terkonfigurasi dengan benar. Untuk sekarang, aplikasi enkripsi akan dinonaktifkan.",
|
||||
"Following users are not set up for encryption:" : "Pengguna berikut belum diatur untuk enkripsi:",
|
||||
"Go directly to your %spersonal settings%s." : "Langsung ke %spengaturan pribadi%s Anda.",
|
||||
"Server-side Encryption" : "Enkripsi Sisi-Server",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Aktifkan kunci pemulihan (memungkinkan pengguna untuk memulihkan berkas dalam kasus kehilangan sandi):",
|
||||
"Recovery key password" : "Sandi kunci pemulihan",
|
||||
"Repeat Recovery key password" : "Ulangi sandi kunci Pemulihan",
|
||||
"Enabled" : "Diaktifkan",
|
||||
"Disabled" : "Dinonaktifkan",
|
||||
"Change recovery key password:" : "Ubah sandi kunci pemulihan:",
|
||||
"Old Recovery key password" : "Sandi kunci Pemulihan Lama",
|
||||
"New Recovery key password" : "Sandi kunci Pemulihan Baru",
|
||||
"Repeat New Recovery key password" : "Ulangi sandi kunci Pemulihan baru",
|
||||
"Change Password" : "Ubah Sandi",
|
||||
"Your private key password no longer matches your log-in password." : "Sandi kunci private Anda tidak lagi cocok dengan sandi masuk Anda.",
|
||||
"Set your old private key password to your current log-in password:" : "Setel sandi kunci private Anda untuk sandi masuk Anda saat ini:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.",
|
||||
"Old log-in password" : "Sandi masuk yang lama",
|
||||
"Current log-in password" : "Sandi masuk saat ini",
|
||||
"Update Private Key Password" : "Perbarui Sandi Kunci Private",
|
||||
"Enable password recovery:" : "Aktifkan sandi pemulihan:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Encryption" : "Dulkóðun"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{ "translations": {
|
||||
"Encryption" : "Dulkóðun"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "Errore sconosciuto",
|
||||
"Missing recovery key password" : "Manca la password della chiave di recupero",
|
||||
"Please repeat the recovery key password" : "Ripeti la password della chiave di recupero",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "La password della chiave di recupero ripetuta non corrisponde alla password della chiave di recupero fornita",
|
||||
"Recovery key successfully enabled" : "Chiave di recupero abilitata correttamente",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Impossibile disabilitare la chiave di recupero. Verifica la password della chiave di recupero.",
|
||||
"Recovery key successfully disabled" : "Chiave di recupero disabilitata correttamente",
|
||||
"Please provide the old recovery password" : "Fornisci la vecchia password di recupero",
|
||||
"Please provide a new recovery password" : "Fornisci una nuova password di recupero",
|
||||
"Please repeat the new recovery password" : "Ripeti la nuova password di recupero",
|
||||
"Password successfully changed." : "Password modificata correttamente.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Impossibile cambiare la password. Forse la vecchia password non era corretta.",
|
||||
"Could not update the private key password." : "Impossibile aggiornare la password della chiave privata.",
|
||||
"The old password was not correct, please try again." : "La vecchia password non era corretta, prova di nuovo.",
|
||||
"The current log-in password was not correct, please try again." : "La password di accesso attuale non era corretta, prova ancora.",
|
||||
"Private key password successfully updated." : "Password della chiave privata aggiornata correttamente.",
|
||||
"File recovery settings updated" : "Impostazioni di ripristino dei file aggiornate",
|
||||
"Could not update file recovery" : "Impossibile aggiornare il ripristino dei file",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "La tua chiave privata non è valida! Forse la password è stata cambiata al di fuori di %s (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file cifrati.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Errore sconosciuto. Controlla le impostazioni di sistema o contatta il tuo amministratore",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.",
|
||||
"Initial encryption running... Please try again later." : "Cifratura iniziale in esecuzione... Riprova più tardi.",
|
||||
"Missing requirements." : "Requisiti mancanti.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Assicurati che OpenSSL e l'estensione PHP sia abilitatati e configurati correttamente. Per ora, l'applicazione di cifratura è disabilitata.",
|
||||
"Following users are not set up for encryption:" : "I seguenti utenti non sono configurati per la cifratura:",
|
||||
"Go directly to your %spersonal settings%s." : "Vai direttamente alle tue %simpostazioni personali%s.",
|
||||
"Server-side Encryption" : "Cifratura lato server",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):",
|
||||
"Recovery key password" : "Password della chiave di recupero",
|
||||
"Repeat Recovery key password" : "Ripeti la password della chiave di recupero",
|
||||
"Enabled" : "Abilitata",
|
||||
"Disabled" : "Disabilitata",
|
||||
"Change recovery key password:" : "Cambia la password della chiave di recupero:",
|
||||
"Old Recovery key password" : "Vecchia password della chiave di recupero",
|
||||
"New Recovery key password" : "Nuova password della chiave di recupero",
|
||||
"Repeat New Recovery key password" : "Ripeti la nuova password della chiave di recupero",
|
||||
"Change Password" : "Modifica password",
|
||||
"Your private key password no longer matches your log-in password." : "La password della chiave privata non corrisponde più alla password di accesso.",
|
||||
"Set your old private key password to your current log-in password:" : "Imposta la vecchia password della chiave privata sull'attuale password di accesso:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file.",
|
||||
"Old log-in password" : "Vecchia password di accesso",
|
||||
"Current log-in password" : "Password di accesso attuale",
|
||||
"Update Private Key Password" : "Aggiorna la password della chiave privata",
|
||||
"Enable password recovery:" : "Abilita il ripristino della password:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "Errore sconosciuto",
|
||||
"Missing recovery key password" : "Manca la password della chiave di recupero",
|
||||
"Please repeat the recovery key password" : "Ripeti la password della chiave di recupero",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "La password della chiave di recupero ripetuta non corrisponde alla password della chiave di recupero fornita",
|
||||
"Recovery key successfully enabled" : "Chiave di recupero abilitata correttamente",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "Impossibile disabilitare la chiave di recupero. Verifica la password della chiave di recupero.",
|
||||
"Recovery key successfully disabled" : "Chiave di recupero disabilitata correttamente",
|
||||
"Please provide the old recovery password" : "Fornisci la vecchia password di recupero",
|
||||
"Please provide a new recovery password" : "Fornisci una nuova password di recupero",
|
||||
"Please repeat the new recovery password" : "Ripeti la nuova password di recupero",
|
||||
"Password successfully changed." : "Password modificata correttamente.",
|
||||
"Could not change the password. Maybe the old password was not correct." : "Impossibile cambiare la password. Forse la vecchia password non era corretta.",
|
||||
"Could not update the private key password." : "Impossibile aggiornare la password della chiave privata.",
|
||||
"The old password was not correct, please try again." : "La vecchia password non era corretta, prova di nuovo.",
|
||||
"The current log-in password was not correct, please try again." : "La password di accesso attuale non era corretta, prova ancora.",
|
||||
"Private key password successfully updated." : "Password della chiave privata aggiornata correttamente.",
|
||||
"File recovery settings updated" : "Impostazioni di ripristino dei file aggiornate",
|
||||
"Could not update file recovery" : "Impossibile aggiornare il ripristino dei file",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "Applicazione di cifratura non inizializzata. Forse l'applicazione è stata riabilitata durante la tua sessione. Prova a disconnetterti e ad effettuare nuovamente l'accesso per inizializzarla.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "La tua chiave privata non è valida! Forse la password è stata cambiata al di fuori di %s (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file cifrati.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "Errore sconosciuto. Controlla le impostazioni di sistema o contatta il tuo amministratore",
|
||||
"Initial encryption started... This can take some time. Please wait." : "Cifratura iniziale avviata... Potrebbe richiedere del tempo. Attendi.",
|
||||
"Initial encryption running... Please try again later." : "Cifratura iniziale in esecuzione... Riprova più tardi.",
|
||||
"Missing requirements." : "Requisiti mancanti.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "Assicurati che OpenSSL e l'estensione PHP sia abilitatati e configurati correttamente. Per ora, l'applicazione di cifratura è disabilitata.",
|
||||
"Following users are not set up for encryption:" : "I seguenti utenti non sono configurati per la cifratura:",
|
||||
"Go directly to your %spersonal settings%s." : "Vai direttamente alle tue %simpostazioni personali%s.",
|
||||
"Server-side Encryption" : "Cifratura lato server",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "Abilita la chiave di recupero (permette di recuperare i file utenti in caso di perdita della password):",
|
||||
"Recovery key password" : "Password della chiave di recupero",
|
||||
"Repeat Recovery key password" : "Ripeti la password della chiave di recupero",
|
||||
"Enabled" : "Abilitata",
|
||||
"Disabled" : "Disabilitata",
|
||||
"Change recovery key password:" : "Cambia la password della chiave di recupero:",
|
||||
"Old Recovery key password" : "Vecchia password della chiave di recupero",
|
||||
"New Recovery key password" : "Nuova password della chiave di recupero",
|
||||
"Repeat New Recovery key password" : "Ripeti la nuova password della chiave di recupero",
|
||||
"Change Password" : "Modifica password",
|
||||
"Your private key password no longer matches your log-in password." : "La password della chiave privata non corrisponde più alla password di accesso.",
|
||||
"Set your old private key password to your current log-in password:" : "Imposta la vecchia password della chiave privata sull'attuale password di accesso:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file.",
|
||||
"Old log-in password" : "Vecchia password di accesso",
|
||||
"Current log-in password" : "Password di accesso attuale",
|
||||
"Update Private Key Password" : "Aggiorna la password della chiave privata",
|
||||
"Enable password recovery:" : "Abilita il ripristino della password:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "不明なエラー",
|
||||
"Missing recovery key password" : "復旧キーのパスワードがありません",
|
||||
"Please repeat the recovery key password" : "復旧キーのパスワードをもう一度入力",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "入力された復旧キーのパスワードが一致しません。",
|
||||
"Recovery key successfully enabled" : "リカバリ用のキーを正常に有効にしました",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!",
|
||||
"Recovery key successfully disabled" : "リカバリ用のキーを正常に無効化しました",
|
||||
"Please provide the old recovery password" : "古い復旧キーのパスワードを入力",
|
||||
"Please provide a new recovery password" : "新しい復旧キーのパスワードを入力",
|
||||
"Please repeat the new recovery password" : "新しい復旧キーのパスワードをもう一度入力",
|
||||
"Password successfully changed." : "パスワードを変更できました。",
|
||||
"Could not change the password. Maybe the old password was not correct." : "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。",
|
||||
"Could not update the private key password." : "秘密鍵のパスワードを更新できませんでした。",
|
||||
"The old password was not correct, please try again." : "古いパスワードが一致しませんでした。もう一度入力してください。",
|
||||
"The current log-in password was not correct, please try again." : "ログインパスワードが一致しませんでした。もう一度入力してください。",
|
||||
"Private key password successfully updated." : "秘密鍵のパスワードが正常に更新されました。",
|
||||
"File recovery settings updated" : "ファイルリカバリ設定を更新しました",
|
||||
"Could not update file recovery" : "ファイルリカバリを更新できませんでした",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。",
|
||||
"Initial encryption started... This can take some time. Please wait." : "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。",
|
||||
"Initial encryption running... Please try again later." : "初期暗号化実行中... 後でもう一度お試しください。",
|
||||
"Missing requirements." : "必要要件が満たされていません。",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "必ず、OpenSSL及びOpenSSLのPHPの拡張を有効にした上で、適切に設定してください。現時点では暗号化アプリは無効になっています。",
|
||||
"Following users are not set up for encryption:" : "以下のユーザーは、暗号化設定がされていません:",
|
||||
"Go directly to your %spersonal settings%s." : "直接 %s個人設定%s に進む。",
|
||||
"Server-side Encryption" : "サーバー側暗号",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):",
|
||||
"Recovery key password" : "リカバリキーのパスワード",
|
||||
"Repeat Recovery key password" : "リカバリキーのパスワードをもう一度入力",
|
||||
"Enabled" : "有効",
|
||||
"Disabled" : "無効",
|
||||
"Change recovery key password:" : "リカバリキーのパスワードを変更:",
|
||||
"Old Recovery key password" : "古いリカバリキーのパスワード",
|
||||
"New Recovery key password" : "新しいリカバリキーのパスワード",
|
||||
"Repeat New Recovery key password" : "新しいリカバリキーのパスワードをもう一度入力",
|
||||
"Change Password" : "パスワードを変更",
|
||||
"Your private key password no longer matches your log-in password." : "もはや秘密鍵はログインパスワードと一致しません。",
|
||||
"Set your old private key password to your current log-in password:" : "古い秘密鍵のパスワードを現在のログインパスワードに設定:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。",
|
||||
"Old log-in password" : "古いログインパスワード",
|
||||
"Current log-in password" : "現在のログインパスワード",
|
||||
"Update Private Key Password" : "秘密鍵のパスワードを更新",
|
||||
"Enable password recovery:" : "パスワードリカバリを有効に:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "不明なエラー",
|
||||
"Missing recovery key password" : "復旧キーのパスワードがありません",
|
||||
"Please repeat the recovery key password" : "復旧キーのパスワードをもう一度入力",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "入力された復旧キーのパスワードが一致しません。",
|
||||
"Recovery key successfully enabled" : "リカバリ用のキーを正常に有効にしました",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "リカバリ用のキーを無効化できませんでした。リカバリ用のキーのパスワードを確認してください!",
|
||||
"Recovery key successfully disabled" : "リカバリ用のキーを正常に無効化しました",
|
||||
"Please provide the old recovery password" : "古い復旧キーのパスワードを入力",
|
||||
"Please provide a new recovery password" : "新しい復旧キーのパスワードを入力",
|
||||
"Please repeat the new recovery password" : "新しい復旧キーのパスワードをもう一度入力",
|
||||
"Password successfully changed." : "パスワードを変更できました。",
|
||||
"Could not change the password. Maybe the old password was not correct." : "パスワードを変更できませんでした。古いパスワードが間違っているかもしれません。",
|
||||
"Could not update the private key password." : "秘密鍵のパスワードを更新できませんでした。",
|
||||
"The old password was not correct, please try again." : "古いパスワードが一致しませんでした。もう一度入力してください。",
|
||||
"The current log-in password was not correct, please try again." : "ログインパスワードが一致しませんでした。もう一度入力してください。",
|
||||
"Private key password successfully updated." : "秘密鍵のパスワードが正常に更新されました。",
|
||||
"File recovery settings updated" : "ファイルリカバリ設定を更新しました",
|
||||
"Could not update file recovery" : "ファイルリカバリを更新できませんでした",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "セッション中に暗号化アプリを再度有効にされたため、暗号化アプリが初期化されていません。暗号化アプリを初期化するため、ログアウトしてログインしなおしてください。",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "プライベートキーが有効ではありません!パスワードが%sの外部で変更された(例: 共同ディレクトリ)と思われます。個人設定でプライベートキーのパスワードを更新して、暗号化ファイルへのアクセスを回復することができます。",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "不明なエラーです。システム設定を確認するか、管理者に問い合わせてください。",
|
||||
"Initial encryption started... This can take some time. Please wait." : "暗号化の初期化作業を開始しました... この処理にはしばらく時間がかかります。お待ちください。",
|
||||
"Initial encryption running... Please try again later." : "初期暗号化実行中... 後でもう一度お試しください。",
|
||||
"Missing requirements." : "必要要件が満たされていません。",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "必ず、OpenSSL及びOpenSSLのPHPの拡張を有効にした上で、適切に設定してください。現時点では暗号化アプリは無効になっています。",
|
||||
"Following users are not set up for encryption:" : "以下のユーザーは、暗号化設定がされていません:",
|
||||
"Go directly to your %spersonal settings%s." : "直接 %s個人設定%s に進む。",
|
||||
"Server-side Encryption" : "サーバー側暗号",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "リカバリキーを有効にする (パスワードを忘れた場合にユーザーのファイルを回復できます):",
|
||||
"Recovery key password" : "リカバリキーのパスワード",
|
||||
"Repeat Recovery key password" : "リカバリキーのパスワードをもう一度入力",
|
||||
"Enabled" : "有効",
|
||||
"Disabled" : "無効",
|
||||
"Change recovery key password:" : "リカバリキーのパスワードを変更:",
|
||||
"Old Recovery key password" : "古いリカバリキーのパスワード",
|
||||
"New Recovery key password" : "新しいリカバリキーのパスワード",
|
||||
"Repeat New Recovery key password" : "新しいリカバリキーのパスワードをもう一度入力",
|
||||
"Change Password" : "パスワードを変更",
|
||||
"Your private key password no longer matches your log-in password." : "もはや秘密鍵はログインパスワードと一致しません。",
|
||||
"Set your old private key password to your current log-in password:" : "古い秘密鍵のパスワードを現在のログインパスワードに設定:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : "古いパスワードを覚えていない場合、管理者に尋ねてファイルを回復することができます。",
|
||||
"Old log-in password" : "古いログインパスワード",
|
||||
"Current log-in password" : "現在のログインパスワード",
|
||||
"Update Private Key Password" : "秘密鍵のパスワードを更新",
|
||||
"Enable password recovery:" : "パスワードリカバリを有効に:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "უცნობი შეცდომა"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "უცნობი შეცდომა"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "មិនស្គាល់កំហុស",
|
||||
"Password successfully changed." : "បានប្ដូរពាក្យសម្ងាត់ដោយជោគជ័យ។",
|
||||
"Could not change the password. Maybe the old password was not correct." : "មិនអាចប្ដូរពាក្យសម្ងាត់បានទេ។ ប្រហែលពាក្យសម្ងាត់ចាស់មិនត្រឹមត្រូវ។",
|
||||
"Enabled" : "បានបើក",
|
||||
"Disabled" : "បានបិទ",
|
||||
"Change Password" : "ប្ដូរពាក្យសម្ងាត់"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "មិនស្គាល់កំហុស",
|
||||
"Password successfully changed." : "បានប្ដូរពាក្យសម្ងាត់ដោយជោគជ័យ។",
|
||||
"Could not change the password. Maybe the old password was not correct." : "មិនអាចប្ដូរពាក្យសម្ងាត់បានទេ។ ប្រហែលពាក្យសម្ងាត់ចាស់មិនត្រឹមត្រូវ។",
|
||||
"Enabled" : "បានបើក",
|
||||
"Disabled" : "បានបិទ",
|
||||
"Change Password" : "ប្ដូរពាក្យសម្ងាត់"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "ಗೊತ್ತಿಲ್ಲದ ದೋಷ",
|
||||
"Enabled" : "ಸಕ್ರಿಯಗೊಳಿಸಿದೆ",
|
||||
"Disabled" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "ಗೊತ್ತಿಲ್ಲದ ದೋಷ",
|
||||
"Enabled" : "ಸಕ್ರಿಯಗೊಳಿಸಿದೆ",
|
||||
"Disabled" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
|
|
@ -1,53 +0,0 @@
|
|||
OC.L10N.register(
|
||||
"files_encryption",
|
||||
{
|
||||
"Unknown error" : "알 수 없는 오류",
|
||||
"Missing recovery key password" : "잊어버린 복구 키 암호 복구",
|
||||
"Please repeat the recovery key password" : "복구 키 암호를 다시 입력하십시오",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "입력한 복구 키 암호가 서로 다릅니다",
|
||||
"Recovery key successfully enabled" : "복구 키가 성공적으로 활성화되었습니다",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
|
||||
"Recovery key successfully disabled" : "복구 키가 성공적으로 비활성화 되었습니다",
|
||||
"Please provide the old recovery password" : "이전 복구 암호를 입력하십시오",
|
||||
"Please provide a new recovery password" : "새 복구 암호를 입력하십시오",
|
||||
"Please repeat the new recovery password" : "새 복구 암호를 다시 입력하십시오",
|
||||
"Password successfully changed." : "암호가 성공적으로 변경되었습니다",
|
||||
"Could not change the password. Maybe the old password was not correct." : "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.",
|
||||
"Could not update the private key password." : "개인 키 암호를 업데이트할 수 없습니다",
|
||||
"The old password was not correct, please try again." : "이전 암호가 잘못되었습니다. 다시 시도하십시오.",
|
||||
"The current log-in password was not correct, please try again." : "현재 로그인 암호가 잘못되었습니다. 다시 시도하십시오.",
|
||||
"Private key password successfully updated." : "개인 키 암호가 성공적으로 업데이트 되었습니다.",
|
||||
"File recovery settings updated" : "파일 복구 설정 업데이트됨",
|
||||
"Could not update file recovery" : "파일 복구를 업데이트할 수 없습니다",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "개인 키가 올바르지 않습니다! 암호가 %s 외부에서(예: 회사 디렉터리) 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "알 수 없는 오류입니다. 시스템 설정을 확인하거나 관리자에게 문의하십시오",
|
||||
"Initial encryption started... This can take some time. Please wait." : "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.",
|
||||
"Initial encryption running... Please try again later." : "초기 암호화가 진행 중입니다... 나중에 다시 시도하십시오.",
|
||||
"Missing requirements." : "요구 사항이 부족합니다.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "OpenSSL 및 PHP OpenSSL 확장이 활성화되어 있고 올바르게 설정되어 있는지 확인하십시오. 현재 암호화 앱이 비활성화되었습니다.",
|
||||
"Following users are not set up for encryption:" : "다음 사용자는 암호화를 사용할 수 없습니다:",
|
||||
"Go directly to your %spersonal settings%s." : "%s개인 설정%s으로 직접 이동하십시오.",
|
||||
"Server-side Encryption" : "서버 측 암호화",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):",
|
||||
"Recovery key password" : "복구 키 암호",
|
||||
"Repeat Recovery key password" : "복구 키 암호 재입력",
|
||||
"Enabled" : "활성화",
|
||||
"Disabled" : "비활성화",
|
||||
"Change recovery key password:" : "복구 키 암호 변경:",
|
||||
"Old Recovery key password" : "이전 복구 키 암호",
|
||||
"New Recovery key password" : "새 복구 키 암호",
|
||||
"Repeat New Recovery key password" : "새 복구 키 암호 재입력",
|
||||
"Change Password" : "암호 변경",
|
||||
"Your private key password no longer matches your log-in password." : "개인 키 암호와 로그인 암호가 일치하지 않습니다.",
|
||||
"Set your old private key password to your current log-in password:" : "기존 개인 키 암호를 로그인 암호와 동일하게 설정하십시오:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : " 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오.",
|
||||
"Old log-in password" : "이전 로그인 암호",
|
||||
"Current log-in password" : "현재 로그인 암호",
|
||||
"Update Private Key Password" : "개인 키 암호 업데이트",
|
||||
"Enable password recovery:" : "암호 복구 사용:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
{ "translations": {
|
||||
"Unknown error" : "알 수 없는 오류",
|
||||
"Missing recovery key password" : "잊어버린 복구 키 암호 복구",
|
||||
"Please repeat the recovery key password" : "복구 키 암호를 다시 입력하십시오",
|
||||
"Repeated recovery key password does not match the provided recovery key password" : "입력한 복구 키 암호가 서로 다릅니다",
|
||||
"Recovery key successfully enabled" : "복구 키가 성공적으로 활성화되었습니다",
|
||||
"Could not disable recovery key. Please check your recovery key password!" : "복구 키를 비활성화 할 수 없습니다. 복구 키의 암호를 확인해 주십시오!",
|
||||
"Recovery key successfully disabled" : "복구 키가 성공적으로 비활성화 되었습니다",
|
||||
"Please provide the old recovery password" : "이전 복구 암호를 입력하십시오",
|
||||
"Please provide a new recovery password" : "새 복구 암호를 입력하십시오",
|
||||
"Please repeat the new recovery password" : "새 복구 암호를 다시 입력하십시오",
|
||||
"Password successfully changed." : "암호가 성공적으로 변경되었습니다",
|
||||
"Could not change the password. Maybe the old password was not correct." : "암호를 변경할 수 없습니다. 예전 암호가 정확하지 않은 것 같습니다.",
|
||||
"Could not update the private key password." : "개인 키 암호를 업데이트할 수 없습니다",
|
||||
"The old password was not correct, please try again." : "이전 암호가 잘못되었습니다. 다시 시도하십시오.",
|
||||
"The current log-in password was not correct, please try again." : "현재 로그인 암호가 잘못되었습니다. 다시 시도하십시오.",
|
||||
"Private key password successfully updated." : "개인 키 암호가 성공적으로 업데이트 되었습니다.",
|
||||
"File recovery settings updated" : "파일 복구 설정 업데이트됨",
|
||||
"Could not update file recovery" : "파일 복구를 업데이트할 수 없습니다",
|
||||
"Encryption app not initialized! Maybe the encryption app was re-enabled during your session. Please try to log out and log back in to initialize the encryption app." : "암호화 앱이 초기화되지 않았습니다! 암호화 앱이 다시 활성화된 것 같습니다. 암호화 앱을 초기화하려면 로그아웃했다 다시 로그인하십시오.",
|
||||
"Your private key is not valid! Likely your password was changed outside of %s (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." : "개인 키가 올바르지 않습니다! 암호가 %s 외부에서(예: 회사 디렉터리) 변경된 것 같습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 수정하십시오.",
|
||||
"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.",
|
||||
"Unknown error. Please check your system settings or contact your administrator" : "알 수 없는 오류입니다. 시스템 설정을 확인하거나 관리자에게 문의하십시오",
|
||||
"Initial encryption started... This can take some time. Please wait." : "초기 암호화가 시작되었습니다... 시간이 걸릴 수도 있으니 기다려 주십시오.",
|
||||
"Initial encryption running... Please try again later." : "초기 암호화가 진행 중입니다... 나중에 다시 시도하십시오.",
|
||||
"Missing requirements." : "요구 사항이 부족합니다.",
|
||||
"Please make sure that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." : "OpenSSL 및 PHP OpenSSL 확장이 활성화되어 있고 올바르게 설정되어 있는지 확인하십시오. 현재 암호화 앱이 비활성화되었습니다.",
|
||||
"Following users are not set up for encryption:" : "다음 사용자는 암호화를 사용할 수 없습니다:",
|
||||
"Go directly to your %spersonal settings%s." : "%s개인 설정%s으로 직접 이동하십시오.",
|
||||
"Server-side Encryption" : "서버 측 암호화",
|
||||
"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오",
|
||||
"Enable recovery key (allow to recover users files in case of password loss):" : "복구 키 사용 (암호를 잊었을 때 파일을 복구할 수 있도록 함):",
|
||||
"Recovery key password" : "복구 키 암호",
|
||||
"Repeat Recovery key password" : "복구 키 암호 재입력",
|
||||
"Enabled" : "활성화",
|
||||
"Disabled" : "비활성화",
|
||||
"Change recovery key password:" : "복구 키 암호 변경:",
|
||||
"Old Recovery key password" : "이전 복구 키 암호",
|
||||
"New Recovery key password" : "새 복구 키 암호",
|
||||
"Repeat New Recovery key password" : "새 복구 키 암호 재입력",
|
||||
"Change Password" : "암호 변경",
|
||||
"Your private key password no longer matches your log-in password." : "개인 키 암호와 로그인 암호가 일치하지 않습니다.",
|
||||
"Set your old private key password to your current log-in password:" : "기존 개인 키 암호를 로그인 암호와 동일하게 설정하십시오:",
|
||||
" If you don't remember your old password you can ask your administrator to recover your files." : " 이전 암호가 기억나지 않으면 시스템 관리자에게 파일 복구를 요청하십시오.",
|
||||
"Old log-in password" : "이전 로그인 암호",
|
||||
"Current log-in password" : "현재 로그인 암호",
|
||||
"Update Private Key Password" : "개인 키 암호 업데이트",
|
||||
"Enable password recovery:" : "암호 복구 사용:",
|
||||
"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue