summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-01-22 00:29:50 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-01-22 00:29:50 +0100
commit570799ba40b1e296bb08281d5b801df08f86f2df (patch)
treef09eb30cc1e7c5730f9829838f4ea31bfcb329b3
parentc13bf8d82049debe7f06247ffb9ab45fc76cd6f5 (diff)
parent762949afd950a556abcf546f017f1340e0cac61b (diff)
downloadnextcloud-server-570799ba40b1e296bb08281d5b801df08f86f2df.tar.gz
nextcloud-server-570799ba40b1e296bb08281d5b801df08f86f2df.zip
Merge pull request #13581 from owncloud/make-naming-consistent
Make naming of encryption app consistent
-rw-r--r--apps/files_encryption/templates/settings-admin.php6
-rw-r--r--apps/files_encryption/templates/settings-personal.php6
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 ): ?>