Keep spaces out of the string
Otherwise translators cannot notice them on Transifex.
This commit is contained in:
parent
94eb2e782f
commit
57452a3641
|
@ -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 .= ', ';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue