inc: missing one

This commit is contained in:
Franco Fichtner 2015-05-11 08:53:53 +02:00
parent aac05b7e99
commit b9fab880db

View File

@ -1625,7 +1625,7 @@ function process_alias_tgz($temp_filename) {
foreach($files_to_process as $f2p) {
$tmpfd = @fopen($f2p, 'r');
if (!$tmpfd) {
log_error(gettext("The following file could not be read {$f2p} from {$temp_filename}"));
log_error(sprintf(_('The following file could not be read %s from %s'), $f2p, $temp_filename));
continue;
}
while (($tmpbuf = fread($tmpfd, 65536)) !== FALSE)