aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-01-07 20:54:25 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-01-07 20:54:25 +0100
commit8b95494073ff1465f327bd1b24aee5bbfcf954a4 (patch)
treec4dea00f8b4e189ebe5675c8e4ce91293cecc9f6
parentbfb6e350d54329bcf9ca91c0b44506a6eef13887 (diff)
parentedcba11a9173a915b13b7c28bb3fd5dabf7d51c6 (diff)
downloadnextcloud-server-8b95494073ff1465f327bd1b24aee5bbfcf954a4.tar.gz
nextcloud-server-8b95494073ff1465f327bd1b24aee5bbfcf954a4.zip
Merge #13074 from branch 'mmattel-smb_rename_text_root_to_subfolder'
-rw-r--r--apps/files_external/appinfo/app.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_external/appinfo/app.php b/apps/files_external/appinfo/app.php
index 707563096f8..0aafcad559a 100644
--- a/apps/files_external/appinfo/app.php
+++ b/apps/files_external/appinfo/app.php
@@ -90,7 +90,7 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\FTP', array(
'host' => (string)$l->t('Host'),
'user' => (string)$l->t('Username'),
'password' => '*'.$l->t('Password'),
- 'root' => '&'.$l->t('Root'),
+ 'root' => '&'.$l->t('Remote subfolder'),
'secure' => '!'.$l->t('Secure ftps://')),
'has_dependencies' => true));
@@ -132,7 +132,7 @@ if (!OC_Util::runningOnWindows()) {
'user' => (string)$l->t('Username'),
'password' => '*'.$l->t('Password'),
'share' => (string)$l->t('Share'),
- 'root' => '&'.$l->t('Root')),
+ 'root' => '&'.$l->t('Remote subfolder')),
'has_dependencies' => true));
OC_Mount_Config::registerBackend('\OC\Files\Storage\SMB_OC', array(
@@ -142,7 +142,7 @@ if (!OC_Util::runningOnWindows()) {
'host' => (string)$l->t('Host'),
'username_as_share' => '!'.$l->t('Username as share'),
'share' => '&'.$l->t('Share'),
- 'root' => '&'.$l->t('Root')),
+ 'root' => '&'.$l->t('Remote subfolder')),
'has_dependencies' => true));
}
@@ -153,7 +153,7 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\DAV', array(
'host' => (string)$l->t('URL'),
'user' => (string)$l->t('Username'),
'password' => '*'.$l->t('Password'),
- 'root' => '&'.$l->t('Root'),
+ 'root' => '&'.$l->t('Remote subfolder'),
'secure' => '!'.$l->t('Secure https://')),
'has_dependencies' => true));
@@ -175,7 +175,7 @@ OC_Mount_Config::registerBackend('\OC\Files\Storage\SFTP', array(
'host' => (string)$l->t('Host'),
'user' => (string)$l->t('Username'),
'password' => '*'.$l->t('Password'),
- 'root' => '&'.$l->t('Root'))));
+ 'root' => '&'.$l->t('Remote subfolder'))));
$mountProvider = new \OCA\Files_External\Config\ConfigAdapter();
\OC::$server->getMountProviderCollection()->registerProvider($mountProvider);