Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-12-07 15:15:37 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2014-12-07 15:15:37 +0300
commitd571f428609967256da1a99058e46a416cde5c64 (patch)
tree59e6c28b4e822022bfcea8e1520d1ab0b9da4eff /apps
parent8ee9ee29ea2be24b5863920a5f164cabbbe1b18c (diff)
parent57452a3641c1ea14ecb29b17998b49e13005b593 (diff)
Merge pull request #12668 from owncloud/keepspace
Keep spaces out of the string
Diffstat (limited to 'apps')
-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 .= ', ';
}