From 762949afd950a556abcf546f017f1340e0cac61b Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@owncloud.com> Date: Wed, 21 Jan 2015 23:27:45 +0100 Subject: [PATCH] Make naming of encryption app consistent Fixes https://github.com/owncloud/core/issues/13580 --- apps/files_encryption/templates/settings-admin.php | 6 +++++- 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 ): ?> -- GitLab