diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-06-13 08:30:57 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-06-13 08:30:57 +0200 |
commit | b91db840502ee3c398c63c70b8a0bd1d789c4338 (patch) | |
tree | 102f2db5422667ed5a15aaf34a6f3a7aa945714f /apps | |
parent | 083cf63cc273150d6008d78527e7ec01d839aa6c (diff) | |
parent | cea2c77fd2865f04fc9d71467d82c2c8dd37f10e (diff) | |
download | nextcloud-server-b91db840502ee3c398c63c70b8a0bd1d789c4338.tar.gz nextcloud-server-b91db840502ee3c398c63c70b8a0bd1d789c4338.zip |
Merge pull request #8714 from owncloud/minor-fixes
fix some minor issues
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_encryption/templates/invalid_private_key.php | 2 | ||||
-rw-r--r-- | apps/files_encryption/templates/settings-admin.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_encryption/templates/invalid_private_key.php b/apps/files_encryption/templates/invalid_private_key.php index a3cae60b1da..b275b9c428c 100644 --- a/apps/files_encryption/templates/invalid_private_key.php +++ b/apps/files_encryption/templates/invalid_private_key.php @@ -5,7 +5,7 @@ <?php p($_['message']); ?> <br/> <?php if($_['errorCode'] === \OCA\Encryption\Crypt::ENCRYPTION_PRIVATE_KEY_NOT_VALID_ERROR): ?> - <?php>p($l->t('Go directly to your ')); ?> <a href="<?php echo $location?>"><?php p($l->t('personal settings')); ?>.</a> + <?php p($l->t('Go directly to your %spersonal settings%s.', array('<a href="'.$location.'">', '</a>'))); ?> <?php endif; ?> <br/> </li> diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index cf676c445ce..d4e6abf004a 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -34,20 +34,20 @@ <input type="password" name="changeRecoveryPassword" - id="oldEncryptionRecoveryPassword" + id="oldEncryptionRecoveryPassword" /> <label for="oldEncryptionRecoveryPassword"><?php p($l->t("Old Recovery key password")); ?></label> <br/> <br/> <input type="password" name="changeRecoveryPassword" - id="newEncryptionRecoveryPassword" + id="newEncryptionRecoveryPassword" /> <label for="newEncryptionRecoveryPassword"><?php p($l->t("New Recovery key password")); ?></label> <br/> <input type="password" name="changeRecoveryPassword" - id="repeatedNewEncryptionRecoveryPassword" + id="repeatedNewEncryptionRecoveryPassword" /> <label for="repeatEncryptionRecoveryPassword"><?php p($l->t("Repeat New Recovery key password")); ?></label> <br/> <button |