]> source.dussan.org Git - nextcloud-server.git/commitdiff
More casing
authorJoas Schilling <coding@schilljs.com>
Fri, 5 Aug 2016 13:50:17 +0000 (15:50 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Mon, 8 Aug 2016 14:45:40 +0000 (16:45 +0200)
apps/encryption/lib/Controller/StatusController.php
apps/encryption/templates/settings-admin.php
apps/encryption/templates/settings-personal.php
apps/files_sharing/appinfo/info.xml

index a508c3c6b72f9f301f42dfacf2e21daaaabf59a6..6882475e972c6cb6999c88e26042ca436ee13776 100644 (file)
@@ -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(
index 9804db045cd9e3149c68fedfaed407f8cc9cc71b..5c551267ff5f00e13d0914cb140f7a9ae0640b58 100644 (file)
@@ -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"
index aba350ea4b6e34a1a0312f9b3f96cd5f38397bf8..b92a9a197230481ac05ee9bf01918241976ab5b9 100644 (file)
@@ -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 ): ?>
 
index 5505efb3e7d13ff91d33c09d45111c68c9bb48b5..133119feabdb298fe36e297cb1dc0c409bb8a363 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <info>
        <id>files_sharing</id>
-       <name>Files sharing</name>
+       <name>File sharing</name>
        <description>
                This application enables users to share files within ownCloud. If enabled, the admin can choose which groups can share files. The applicable users can then share files and folders with other users and groups within ownCloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other users outside of ownCloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.
 Turning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the ownCloud Documentation.