summaryrefslogtreecommitdiffstats
path: root/usr/local/www/wizard.php
diff options
context:
space:
mode:
authorCarlos Eduardo Ramos <carlos.ramos@bluepex.com>2010-07-30 16:16:03 -0300
committerCarlos Eduardo Ramos <carlos.ramos@bluepex.com>2010-07-30 16:16:34 -0300
commite2d86c0b7177b9c612bc6c5c330b65bb6f40dc01 (patch)
treecd69c38301b5f1523dcb3ca16343ea3a822e61ae /usr/local/www/wizard.php
parentd50cf30290e7706dc3c5f064dfa2db0c82f89255 (diff)
downloadpfsense-e2d86c0b7177b9c612bc6c5c330b65bb6f40dc01.zip
pfsense-e2d86c0b7177b9c612bc6c5c330b65bb6f40dc01.tar.gz
Fix gettext implementation on wizard.php
Diffstat (limited to 'usr/local/www/wizard.php')
-rwxr-xr-xusr/local/www/wizard.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/wizard.php b/usr/local/www/wizard.php
index 8281d2a..0f2c319 100755
--- a/usr/local/www/wizard.php
+++ b/usr/local/www/wizard.php
@@ -62,13 +62,13 @@ if($_POST['xml'])
if(empty($xml)) {
$xml = "not_defined";
- print_info_box_np(gettext("ERROR: Could not open ") . $xml . ".");
+ print_info_box_np(gettext("ERROR: Could not open") . " " . $xml . ".");
die;
} else {
if (file_exists("{$g['www_path']}/wizards/{$xml}"))
$pkg = parse_xml_config_pkg("{$g['www_path']}/wizards/" . $xml, "pfsensewizard");
else {
- print_info_box_np("ERROR: Could not open " . $xml . ".");
+ print_info_box_np(gettext("ERROR: Could not open") . " " . $xml . ".");
die;
}
}
OpenPOWER on IntegriCloud