From 57452a3641c1ea14ecb29b17998b49e13005b593 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sun, 7 Dec 2014 01:57:34 +0100 Subject: [PATCH] Keep spaces out of the string Otherwise translators cannot notice them on Transifex. --- apps/files_external/lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 9400bbdedc..898dc0c854 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -729,7 +729,7 @@ class OC_Mount_Config { $backends = ''; for ($i = 0; $i < $dependencyGroupCount; $i++) { if ($i > 0 && $i === $dependencyGroupCount - 1) { - $backends .= $l->t(' and '); + $backends .= ' '.$l->t('and').' '; } elseif ($i > 0) { $backends .= ', '; }