From a488b94ef2c5a552e233cef6229da97d1be9dab1 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Wed, 10 Aug 2016 01:04:35 +0200 Subject: [PATCH] Fix casing of external storage app --- apps/files_external/appinfo/info.xml | 4 ++-- apps/files_external/templates/settings.php | 2 +- settings/admin.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_external/appinfo/info.xml b/apps/files_external/appinfo/info.xml index 43f06d60843fb..45e1cec4cb990 100644 --- a/apps/files_external/appinfo/info.xml +++ b/apps/files_external/appinfo/info.xml @@ -3,9 +3,9 @@ files_external External storage support - 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. AGPL Robin Appelman, Michael Gapczynski, Vincent Petry diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 636877e1fa07e..55b2cf0307f66 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -88,7 +88,7 @@ function writeParameterInput($parameter, $options, $classes = []) { ?>
-

t('External Storage')); ?>

+

t('External storage')); ?>

'') and $canCreateMounts) print_unescaped(''.$_['dependencies'].''); ?> '> diff --git a/settings/admin.php b/settings/admin.php index a458c813c118e..3165b4ebfeaa6 100644 --- a/settings/admin.php +++ b/settings/admin.php @@ -218,7 +218,7 @@ } } if ($filesExternal) { - $formsAndMore[] = array('anchor' => 'files_external', 'section-name' => $l->t('External Storage')); + $formsAndMore[] = array('anchor' => 'files_external', 'section-name' => $l->t('External storage')); } $template->assign('fileSharingSettings', $fileSharingSettings);