aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorVolkan Gezer <wakeup@users.noreply.github.com>2014-12-07 01:57:34 +0100
committerVolkan Gezer <wakeup@users.noreply.github.com>2014-12-07 01:57:34 +0100
commit57452a3641c1ea14ecb29b17998b49e13005b593 (patch)
tree749b2ba3edbf419c77b2b9abf996884e54c5e3e4 /apps/files_external
parent94eb2e782fa164492dd2665e6651eaa7068039aa (diff)
downloadnextcloud-server-57452a3641c1ea14ecb29b17998b49e13005b593.tar.gz
nextcloud-server-57452a3641c1ea14ecb29b17998b49e13005b593.zip
Keep spaces out of the string
Otherwise translators cannot notice them on Transifex.
Diffstat (limited to 'apps/files_external')
-rw-r--r--apps/files_external/lib/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php
index 9400bbdedc0..898dc0c8543 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 .= ', ';
}