Merge pull request #3811 from owncloud/string_fixes_encryption_settings
fix some strings in the admin settings of the encryption app
This commit is contained in:
commit
8c21cc64d0
1 changed files with 5 additions and 5 deletions
|
@ -7,11 +7,11 @@
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<?php p($l->t("Enable encryption passwords recovery key (allow sharing to recovery key):")); ?>
|
<?php p($l->t("Enable recovery key (allow to recover users files in case of password loss):")); ?>
|
||||||
<br/>
|
<br/>
|
||||||
<br/>
|
<br/>
|
||||||
<input type="password" name="recoveryPassword" id="recoveryPassword"/>
|
<input type="password" name="recoveryPassword" id="recoveryPassword"/>
|
||||||
<label for="recoveryPassword"><?php p($l->t("Recovery account password")); ?></label>
|
<label for="recoveryPassword"><?php p($l->t("Recovery key password")); ?></label>
|
||||||
<br/>
|
<br/>
|
||||||
<input
|
<input
|
||||||
type='radio'
|
type='radio'
|
||||||
|
@ -31,21 +31,21 @@
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong><?php p($l->t("Change encryption passwords recovery key:")); ?></strong>
|
<strong><?php p($l->t("Change recovery key password:")); ?></strong>
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<input
|
<input
|
||||||
type="password"
|
type="password"
|
||||||
name="changeRecoveryPassword"
|
name="changeRecoveryPassword"
|
||||||
id="oldRecoveryPassword"
|
id="oldRecoveryPassword"
|
||||||
<?php echo($_["recoveryEnabled"] == 0 ? 'disabled' : ''); ?> />
|
<?php echo($_["recoveryEnabled"] == 0 ? 'disabled' : ''); ?> />
|
||||||
<label for="oldRecoveryPassword"><?php p($l->t("Old Recovery account password")); ?></label>
|
<label for="oldRecoveryPassword"><?php p($l->t("Old Recovery key password")); ?></label>
|
||||||
<br/>
|
<br/>
|
||||||
<input
|
<input
|
||||||
type="password"
|
type="password"
|
||||||
name="changeRecoveryPassword"
|
name="changeRecoveryPassword"
|
||||||
id="newRecoveryPassword"
|
id="newRecoveryPassword"
|
||||||
<?php echo($_["recoveryEnabled"] == 0 ? 'disabled' : ''); ?> />
|
<?php echo($_["recoveryEnabled"] == 0 ? 'disabled' : ''); ?> />
|
||||||
<label for="newRecoveryPassword"><?php p($l->t("New Recovery account password")); ?></label>
|
<label for="newRecoveryPassword"><?php p($l->t("New Recovery key password")); ?></label>
|
||||||
<br/>
|
<br/>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
|
|
Loading…
Reference in a new issue