Keep spaces out of the string

Otherwise translators cannot notice them on Transifex.
This commit is contained in:
Volkan Gezer 2014-12-07 01:57:34 +01:00
parent 94eb2e782f
commit 57452a3641
1 changed files with 1 additions and 1 deletions

View File

@ -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 .= ', ';
}