diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-01-21 23:27:45 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-01-21 23:29:09 +0100 |
commit | 762949afd950a556abcf546f017f1340e0cac61b (patch) | |
tree | f09eb30cc1e7c5730f9829838f4ea31bfcb329b3 /apps/files_encryption | |
parent | c13bf8d82049debe7f06247ffb9ab45fc76cd6f5 (diff) | |
download | nextcloud-server-762949afd950a556abcf546f017f1340e0cac61b.tar.gz nextcloud-server-762949afd950a556abcf546f017f1340e0cac61b.zip |
Make naming of encryption app consistent
Fixes https://github.com/owncloud/core/issues/13580
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/templates/settings-admin.php | 6 | ||||
-rw-r--r-- | apps/files_encryption/templates/settings-personal.php | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index 4c1d724b6dd..b686912bf4d 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -1,5 +1,9 @@ +<?php + /** @var array $_ */ + /** @var OC_L10N $l */ +?> <form id="encryption" class="section"> - <h2><?php p($l->t('Encryption')); ?></h2> + <h2><?php p($l->t('Server-side Encryption')); ?></h2> <?php if($_["initStatus"] === \OCA\Files_Encryption\Session::NOT_INITIALIZED): ?> <?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?> diff --git a/apps/files_encryption/templates/settings-personal.php b/apps/files_encryption/templates/settings-personal.php index 17123a154d9..3c8034c968f 100644 --- a/apps/files_encryption/templates/settings-personal.php +++ b/apps/files_encryption/templates/settings-personal.php @@ -1,5 +1,9 @@ +<?php
+ /** @var array $_ */
+ /** @var OC_L10N $l */
+?>
<form id="encryption" class="section">
- <h2><?php p( $l->t( 'Encryption' ) ); ?></h2>
+ <h2><?php p($l->t('Server-side Encryption')); ?></h2>
<?php if ( $_["initialized"] === \OCA\Files_Encryption\Session::NOT_INITIALIZED ): ?>
|