changed l10n to full sentences

This commit is contained in:
Florin Peter 2013-05-29 20:27:12 +02:00
Родитель 5dd865a57f
Коммит ee7c4c4c93
1 изменённых файлов: 25 добавлений и 14 удалений

Просмотреть файл

@ -16,7 +16,6 @@ use OCA\Encryption;
$l = OC_L10N::get('files_encryption'); $l = OC_L10N::get('files_encryption');
$return = false; $return = false;
$action = '';
// Enable recoveryAdmin // Enable recoveryAdmin
$recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); $recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
@ -24,7 +23,18 @@ $recoveryKeyId = OC_Appconfig::getValue('files_encryption', 'recoveryKeyId');
if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1") { if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1") {
$return = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']); $return = \OCA\Encryption\Helper::adminEnableRecovery($recoveryKeyId, $_POST['recoveryPassword']);
$action = $l->t('enable');
// Return success or failure
if ($return) {
\OCP\JSON::success(array("data" => array("message" => $l->t('Recovery key successfully enabled'))));
} else {
\OCP\JSON::error(array(
"data" => array(
"message" => $l->t(
'Could not enable recovery key. Please check your recovery key password!')
)
));
}
// Disable recoveryAdmin // Disable recoveryAdmin
} elseif ( } elseif (
@ -32,17 +42,18 @@ if (isset($_POST['adminEnableRecovery']) && $_POST['adminEnableRecovery'] === "1
&& "0" === $_POST['adminEnableRecovery'] && "0" === $_POST['adminEnableRecovery']
) { ) {
$return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']); $return = \OCA\Encryption\Helper::adminDisableRecovery($_POST['recoveryPassword']);
$action = $l->t('disable');
// Return success or failure
if ($return) {
\OCP\JSON::success(array("data" => array("message" => $l->t('Recovery key successfully disabled'))));
} else {
\OCP\JSON::error(array(
"data" => array(
"message" => $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" => $l->t('Recovery key successfully %sd', array($action)))));
} else {
\OCP\JSON::error(array(
"data" => array(
"message" => $l->t(
'Could not %s recovery key. Please check your recovery key password!', array($action))
)
));
}