mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #60026 from nextcloud/rakekniven-patch-2
chore(i18n): Remove space in word1/word2
This commit is contained in:
commit
0a297f4b2b
3 changed files with 3 additions and 3 deletions
|
|
@ -23,7 +23,7 @@ class FTP extends Backend {
|
|||
->setIdentifier('ftp')
|
||||
->addIdentifierAlias('\OC\Files\Storage\FTP') // legacy compat
|
||||
->setStorageClass('\OCA\Files_External\Lib\Storage\FTP')
|
||||
->setText($l->t('FTP / FTPS'))
|
||||
->setText($l->t('FTP/FTPS'))
|
||||
->addParameters([
|
||||
new DefinitionParameter('host', $l->t('Host')),
|
||||
(new DefinitionParameter('port', $l->t('Port')))
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class SMB extends Backend {
|
|||
->setIdentifier('smb')
|
||||
->addIdentifierAlias('\OC\Files\Storage\SMB')// legacy compat
|
||||
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
|
||||
->setText($l->t('SMB / CIFS (Windows network share)'))
|
||||
->setText($l->t('SMB/CIFS (Windows network share)'))
|
||||
->addParameters([
|
||||
new DefinitionParameter('host', $l->t('Host')),
|
||||
new DefinitionParameter('share', $l->t('Share')),
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ class SMB_OC extends Backend {
|
|||
$this
|
||||
->setIdentifier('\OC\Files\Storage\SMB_OC')
|
||||
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
|
||||
->setText($l->t('SMB / CIFS using Nextcloud login'))
|
||||
->setText($l->t('SMB/CIFS using Nextcloud login'))
|
||||
->addParameters([
|
||||
new DefinitionParameter('host', $l->t('Host')),
|
||||
(new DefinitionParameter('username_as_share', $l->t('Login as share')))
|
||||
|
|
|
|||
Loading…
Reference in a new issue