Make naming of encryption app consistent

Fixes https://github.com/owncloud/core/issues/13580
This commit is contained in:
Lukas Reschke 2015-01-21 23:27:45 +01:00
parent c13bf8d820
commit 762949afd9
2 changed files with 10 additions and 2 deletions

View File

@ -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")); ?>

View File

@ -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 ): ?>