Skip to content

Commit 6b26986

Browse files
Merge pull request #60814 from nextcloud/backport/60026/stable34
[stable34] chore(i18n): Remove space in word1/word2
2 parents b67760a + 1e9f427 commit 6b26986

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/files_external/lib/Lib/Backend/FTP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function __construct(IL10N $l, Password $legacyAuth) {
2323
->setIdentifier('ftp')
2424
->addIdentifierAlias('\OC\Files\Storage\FTP') // legacy compat
2525
->setStorageClass('\OCA\Files_External\Lib\Storage\FTP')
26-
->setText($l->t('FTP / FTPS'))
26+
->setText($l->t('FTP/FTPS'))
2727
->addParameters([
2828
new DefinitionParameter('host', $l->t('Host')),
2929
(new DefinitionParameter('port', $l->t('Port')))

apps/files_external/lib/Lib/Backend/SMB.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function __construct(IL10N $l, Password $legacyAuth) {
3030
->setIdentifier('smb')
3131
->addIdentifierAlias('\OC\Files\Storage\SMB')// legacy compat
3232
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
33-
->setText($l->t('SMB / CIFS (Windows network share)'))
33+
->setText($l->t('SMB/CIFS (Windows network share)'))
3434
->addParameters([
3535
new DefinitionParameter('host', $l->t('Host')),
3636
new DefinitionParameter('share', $l->t('Share')),

apps/files_external/lib/Lib/Backend/SMB_OC.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function __construct(IL10N $l, SessionCredentials $legacyAuth, SMB $smbBa
2828
$this
2929
->setIdentifier('\OC\Files\Storage\SMB_OC')
3030
->setStorageClass('\OCA\Files_External\Lib\Storage\SMB')
31-
->setText($l->t('SMB / CIFS using Nextcloud login'))
31+
->setText($l->t('SMB/CIFS using Nextcloud login'))
3232
->addParameters([
3333
new DefinitionParameter('host', $l->t('Host')),
3434
(new DefinitionParameter('username_as_share', $l->t('Login as share')))

0 commit comments

Comments
 (0)