diff options
author | Joas Schilling <coding@schilljs.com> | 2016-08-05 15:50:17 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-08-08 16:45:40 +0200 |
commit | 352e8b3c79dd81d4f0b6edbb2481a50bb4588463 (patch) | |
tree | 7bc768fe132e919a303dfcd5d3fef08db9e225b0 /apps/encryption | |
parent | dae6432ae713751d95a1018551d24f6e10c2d02b (diff) | |
download | nextcloud-server-352e8b3c79dd81d4f0b6edbb2481a50bb4588463.tar.gz nextcloud-server-352e8b3c79dd81d4f0b6edbb2481a50bb4588463.zip |
More casing
Diffstat (limited to 'apps/encryption')
-rw-r--r-- | apps/encryption/lib/Controller/StatusController.php | 6 | ||||
-rw-r--r-- | apps/encryption/templates/settings-admin.php | 2 | ||||
-rw-r--r-- | apps/encryption/templates/settings-personal.php | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/apps/encryption/lib/Controller/StatusController.php b/apps/encryption/lib/Controller/StatusController.php index a508c3c6b72..6882475e972 100644 --- a/apps/encryption/lib/Controller/StatusController.php +++ b/apps/encryption/lib/Controller/StatusController.php @@ -73,18 +73,18 @@ class StatusController extends Controller { case Session::INIT_EXECUTED: $status = 'interactionNeeded'; $message = (string)$this->l->t( - 'Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files.' + 'Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files.' ); break; case Session::NOT_INITIALIZED: $status = 'interactionNeeded'; $message = (string)$this->l->t( - 'Encryption App is enabled but your keys are not initialized, please log-out and log-in again' + 'Encryption app is enabled but your keys are not initialized, please log-out and log-in again' ); break; case Session::INIT_SUCCESSFUL: $status = 'success'; - $message = (string)$this->l->t('Encryption App is enabled and ready'); + $message = (string)$this->l->t('Encryption app is enabled and ready'); } return new DataResponse( diff --git a/apps/encryption/templates/settings-admin.php b/apps/encryption/templates/settings-admin.php index 9804db045cd..5c551267ff5 100644 --- a/apps/encryption/templates/settings-admin.php +++ b/apps/encryption/templates/settings-admin.php @@ -7,7 +7,7 @@ style('encryption', 'settings-admin'); ?> <form id="ocDefaultEncryptionModule" class="sub-section"> <?php if(!$_["initStatus"]): ?> - <?php p($l->t("Encryption App is enabled but your keys are not initialized, please log-out and log-in again")); ?> + <?php p($l->t("Encryption app is enabled but your keys are not initialized, please log-out and log-in again")); ?> <?php else: ?> <p id="encryptHomeStorageSetting"> <input type="checkbox" class="checkbox" name="encrypt_home_storage" id="encryptHomeStorage" diff --git a/apps/encryption/templates/settings-personal.php b/apps/encryption/templates/settings-personal.php index aba350ea4b6..b92a9a19723 100644 --- a/apps/encryption/templates/settings-personal.php +++ b/apps/encryption/templates/settings-personal.php @@ -5,7 +5,7 @@ script('encryption', 'settings-personal'); script('core', 'multiselect'); ?> <form id="ocDefaultEncryptionModule" class="section"> - <h2><?php p($l->t('basic encryption module')); ?></h2> + <h2><?php p($l->t('Basic encryption module')); ?></h2> <?php if ($_["initialized"] === \OCA\Encryption\Session::NOT_INITIALIZED ): ?> |