From b9fab880db269cf734f91e27f1bf3988e74598ab Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Mon, 11 May 2015 08:53:53 +0200 Subject: [PATCH] inc: missing one --- src/etc/inc/pfsense-utils.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/inc/pfsense-utils.inc b/src/etc/inc/pfsense-utils.inc index 498ae9531..6034aeb97 100644 --- a/src/etc/inc/pfsense-utils.inc +++ b/src/etc/inc/pfsense-utils.inc @@ -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)