diff options
Diffstat (limited to 'apps/encryption/templates/settings-admin.php')
-rw-r--r-- | apps/encryption/templates/settings-admin.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/apps/encryption/templates/settings-admin.php b/apps/encryption/templates/settings-admin.php index b64e75512e7..f1cb83f7457 100644 --- a/apps/encryption/templates/settings-admin.php +++ b/apps/encryption/templates/settings-admin.php @@ -11,9 +11,13 @@ script('core', 'multiselect'); <?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?> <?php else: ?> <p id="encryptionSetRecoveryKey"> - <?php p($l->t("Enable recovery key (allow to recover users files in case of password loss):")); ?> + <?php p($l->t('Enable recovery key: ')); ?> <span class="msg"></span> <br/> + <em> + <?php p($l->t("The recovery key is an extra encryption key that is used + to encrypt files. It allows recovery of a user's files if the user forgets their password.")) ?> + </em> <br/> <input type="password" name="encryptionRecoveryPassword" id="encryptionRecoveryPassword"/> <label for="recoveryPassword"><?php p($l->t("Recovery key password")); ?></label> @@ -27,7 +31,7 @@ script('core', 'multiselect'); name='adminEnableRecovery' value='1' <?php echo($_["recoveryEnabled"] === '1' ? 'checked="checked"' : ''); ?> /> - <label for="adminEnableRecovery"><?php p($l->t("Enabled")); ?></label> + <label for="adminEnableRecovery"><?php p($l->t("Enable recovery key")); ?></label> <br/> <input @@ -36,7 +40,7 @@ script('core', 'multiselect'); name='adminEnableRecovery' value='0' <?php echo($_["recoveryEnabled"] === '0' ? 'checked="checked"' : ''); ?> /> - <label for="adminDisableRecovery"><?php p($l->t("Disabled")); ?></label> + <label for="adminDisableRecovery"><?php p($l->t("Disable recovery key")); ?></label> </p> <br/><br/> |