Fix casing of external storage app
This commit is contained in:
parent
8ffbe757d2
commit
263c73c685
|
@ -3,9 +3,9 @@
|
|||
<id>files_external</id>
|
||||
<name>External storage support</name>
|
||||
<description>
|
||||
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.
|
||||
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.
|
||||
|
||||
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.
|
||||
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.
|
||||
</description>
|
||||
<licence>AGPL</licence>
|
||||
<author>Robin Appelman, Michael Gapczynski, Vincent Petry</author>
|
||||
|
|
|
@ -48,7 +48,7 @@ class GlobalAuth extends AuthMechanism {
|
|||
->setIdentifier('password::global')
|
||||
->setVisibility(BackendService::VISIBILITY_DEFAULT)
|
||||
->setScheme(self::SCHEME_PASSWORD)
|
||||
->setText($l->t('Global Credentials'));
|
||||
->setText($l->t('Global credentials'));
|
||||
}
|
||||
|
||||
public function getAuth($uid) {
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
?>
|
||||
|
||||
<form data-can-create="<?php echo $canCreateMounts?'true':'false' ?>" id="files_external" class="section" data-encryption-enabled="<?php echo $_['encryptionEnabled']?'true': 'false'; ?>">
|
||||
<h2><?php p($l->t('External Storage')); ?></h2>
|
||||
<h2><?php p($l->t('External storage')); ?></h2>
|
||||
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'') and $canCreateMounts) print_unescaped(''.$_['dependencies'].''); ?>
|
||||
<table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['visibilityType'] === BackendService::VISIBILITY_ADMIN)); ?>'>
|
||||
<thead>
|
||||
|
@ -189,7 +189,7 @@
|
|||
<?php if ($canCreateMounts): ?>
|
||||
<form autocomplete="false" class="section" action="#"
|
||||
id="global_credentials">
|
||||
<p><?php p($l->t('Global Credentials')); ?></p>
|
||||
<p><?php p($l->t('Global credentials')); ?></p>
|
||||
<input type="text" name="username"
|
||||
autocomplete="false"
|
||||
value="<?php p($_['globalCredentials']['user']); ?>"
|
||||
|
|
Loading…
Reference in New Issue