From cf3c1edb0a201997a669a0ee0e92a2d69431839e Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Fri, 1 May 2026 20:27:52 +0200 Subject: [PATCH 1/3] chore(i18n): Remove space in FTP/FTPS Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- apps/files_external/lib/Lib/Backend/FTP.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Backend/FTP.php b/apps/files_external/lib/Lib/Backend/FTP.php index fc9be7df448cd..3e8d34137d65a 100644 --- a/apps/files_external/lib/Lib/Backend/FTP.php +++ b/apps/files_external/lib/Lib/Backend/FTP.php @@ -23,7 +23,7 @@ public function __construct(IL10N $l, Password $legacyAuth) { ->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'))) From ae17a4d2bcd8b712768f518ffd240fa90874a182 Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Fri, 1 May 2026 20:30:14 +0200 Subject: [PATCH 2/3] chore(i18n): Remove space in word1/word2 Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- apps/files_external/lib/Lib/Backend/SMB.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Backend/SMB.php b/apps/files_external/lib/Lib/Backend/SMB.php index c8fa73d4be81b..79c5e4dd55a8f 100644 --- a/apps/files_external/lib/Lib/Backend/SMB.php +++ b/apps/files_external/lib/Lib/Backend/SMB.php @@ -30,7 +30,7 @@ public function __construct(IL10N $l, Password $legacyAuth) { ->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')), From 5de1357c094684c9c8d2bf09eefe5dc783e20bbd Mon Sep 17 00:00:00 2001 From: rakekniven <2069590+rakekniven@users.noreply.github.com> Date: Fri, 1 May 2026 20:30:45 +0200 Subject: [PATCH 3/3] chore(i18n): Remove space in word1/word2 Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com> --- apps/files_external/lib/Lib/Backend/SMB_OC.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Backend/SMB_OC.php b/apps/files_external/lib/Lib/Backend/SMB_OC.php index 8da4434066313..9e64cf0f0fa3a 100644 --- a/apps/files_external/lib/Lib/Backend/SMB_OC.php +++ b/apps/files_external/lib/Lib/Backend/SMB_OC.php @@ -28,7 +28,7 @@ public function __construct(IL10N $l, SessionCredentials $legacyAuth, SMB $smbBa $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')))