Skip to content

Commit 1522beb

Browse files
committed
Fix casing of external storage app
1 parent 8246142 commit 1522beb

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

apps/files_external/appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<id>files_external</id>
44
<name>External storage support</name>
55
<description>
6-
This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other ownCloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root ownCloud directory, which they can access and use like any other ownCloud folder. External Storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.
6+
This application enables administrators to configure connections to external storage providers, such as FTP servers, S3 or SWIFT object stores, Google Drive, Dropbox, other ownCloud servers, WebDAV servers, and more. Administrators can choose which types of storage to enable and can mount these storage locations for a user, a group, or the entire system. Users will see a new folder appear in their root ownCloud directory, which they can access and use like any other ownCloud folder. External storage also allows users to share files stored in these external locations. In these cases, the credentials for the owner of the file are used when the recipient requests the file from external storage, thereby ensuring that the recipient can access the shared file.
77

8-
External Storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the External Storage GUI documentation and the External Storage Configuration File documentation.
8+
External storage can be configured using the GUI or at the command line. This second option provides the advanced user with more flexibility for configuring bulk external storage mounts and setting mount priorities. More information is available in the external storage GUI documentation and the external storage Configuration File documentation.
99
</description>
1010
<licence>AGPL</licence>
1111
<author>Robin Appelman, Michael Gapczynski, Vincent Petry</author>

apps/files_external/lib/Lib/Auth/Password/GlobalAuth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function __construct(IL10N $l, ICredentialsManager $credentialsManager) {
4848
->setIdentifier('password::global')
4949
->setVisibility(BackendService::VISIBILITY_DEFAULT)
5050
->setScheme(self::SCHEME_PASSWORD)
51-
->setText($l->t('Global Credentials'));
51+
->setText($l->t('Global credentials'));
5252
}
5353

5454
public function getAuth($uid) {

apps/files_external/templates/settings.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function writeParameterInput($parameter, $options, $classes = []) {
8888
?>
8989

9090
<form data-can-create="<?php echo $canCreateMounts?'true':'false' ?>" id="files_external" class="section" data-encryption-enabled="<?php echo $_['encryptionEnabled']?'true': 'false'; ?>">
91-
<h2><?php p($l->t('External Storage')); ?></h2>
91+
<h2><?php p($l->t('External storage')); ?></h2>
9292
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'') and $canCreateMounts) print_unescaped(''.$_['dependencies'].''); ?>
9393
<table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['visibilityType'] === BackendService::VISIBILITY_ADMIN)); ?>'>
9494
<thead>
@@ -189,7 +189,7 @@ function writeParameterInput($parameter, $options, $classes = []) {
189189
<?php if ($canCreateMounts): ?>
190190
<form autocomplete="false" class="section" action="#"
191191
id="global_credentials">
192-
<p><?php p($l->t('Global Credentials')); ?></p>
192+
<p><?php p($l->t('Global credentials')); ?></p>
193193
<input type="text" name="username"
194194
autocomplete="false"
195195
value="<?php p($_['globalCredentials']['user']); ?>"

settings/admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
}
219219
}
220220
if ($filesExternal) {
221-
$formsAndMore[] = array('anchor' => 'files_external', 'section-name' => $l->t('External Storage'));
221+
$formsAndMore[] = array('anchor' => 'files_external', 'section-name' => $l->t('External storage'));
222222
}
223223

224224
$template->assign('fileSharingSettings', $fileSharingSettings);

0 commit comments

Comments
 (0)