Join split translated strings

This commit is contained in:
Bart Visscher 2013-02-15 15:54:51 +01:00
parent 5616690506
commit 6c197227d0
1 changed files with 2 additions and 6 deletions

View File

@ -415,14 +415,10 @@ class OC_Mount_Config {
$l= new OC_L10N('files_external'); $l= new OC_L10N('files_external');
$txt=''; $txt='';
if(!OC_Mount_Config::checksmbclient()) { if(!OC_Mount_Config::checksmbclient()) {
$txt.=$l->t('<b>Warning:</b> "smbclient" is not installed.' $txt.=$l->t('<b>Warning:</b> "smbclient" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it.').'<br />';
.' Mounting of CIFS/SMB shares is not possible.'
.' Please ask your system administrator to install it.').'<br />';
} }
if(!OC_Mount_Config::checkphpftp()) { if(!OC_Mount_Config::checkphpftp()) {
$txt.=$l->t('<b>Warning:</b> The FTP support in PHP is not enabled or installed.' $txt.=$l->t('<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it.').'<br />';
.' Mounting of FTP shares is not possible.'
.' Please ask your system administrator to install it.').'<br />';
} }
return($txt); return($txt);