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

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2017-02-20 02:01:01 +0300
committerbrantje <brantje@gmail.com>2017-02-22 20:02:55 +0300
commitfd8dcc6c1ca9e2a5effdff71ee37999d61a58b41 (patch)
tree2e2aacaff8de8f246da6cf1606fd4e8c3b9fcbb1 /controller/translationcontroller.php
parent514cb569fba1ee7333f49d8adc4b7be6b52497b4 (diff)
Add feature to request vault destructions
Diffstat (limited to 'controller/translationcontroller.php')
-rw-r--r--controller/translationcontroller.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/controller/translationcontroller.php b/controller/translationcontroller.php
index 5f24e211..ecd862de 100644
--- a/controller/translationcontroller.php
+++ b/controller/translationcontroller.php
@@ -347,6 +347,8 @@ class TranslationController extends ApiController {
// templates/views/vaults.html
'last.access' => $this->trans->t('Last accessed'),
'never' => $this->trans->t('Never'),
+
+
'no.vaults' => $this->trans->t('No vaults found, why not create one?'),
'min.vault.key.strength' => $this->trans->t('Password strength must be at least: {{strength}}'),
@@ -362,6 +364,20 @@ class TranslationController extends ApiController {
'auto.logout' => $this->trans->t('Logout of this vault automatically after: '),
'vault.decrypt' => $this->trans->t('Decrypt vault'),
+ 'req.intro1' => $this->trans->t('Seems you lost the vault password and you\'re unable to login.'),
+ 'req.intro2' => $this->trans->t('If you want this vault removed you can request removal of the vault here.'),
+ 'req.intro3' => $this->trans->t('An admin then accept to the request (or not)'),
+
+ 'request.deletion.warning' => $this->trans->t('After an admin destroy\'s this vault, all credentials will be lost'),
+ 'request.deletion.reason' => $this->trans->t('Reason to request deletion (optional):'),
+ 'request.deletion' => $this->trans->t('Request vault destruction'),
+ 'request.deletion.accept' => $this->trans->t('Yes, request an admin to destroy this vault'),
+ 'cancel.request.deletion' => $this->trans->t('Cancel destruction request'),
+ 'deletion.requested' => $this->trans->t('Vault destruction requested'),
+ 'deletion.removed' => $this->trans->t('Request removed'),
+ 'delete.request.pending' => $this->trans->t('Destruction request pending'),
+
+
// templates/bookmarklet.php
'http.warning' => $this->trans->t('Warning! Adding credentials over http can be insecure!'),
'bm.active.vault' => $this->trans->t('Logged in to {{vault_name}}'),