diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-04-27 16:56:45 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-04-27 16:56:45 -0300 |
commit | 00d01f78aa5b507eea95e6276e27b73ae5398efb (patch) | |
tree | ac4e394e4138a37a083a8d6cc9a76b901799e937 /usr/local/www | |
parent | 259159e01c13b2619985096e1fcb7452fcfc4ca1 (diff) | |
download | pfsense-00d01f78aa5b507eea95e6276e27b73ae5398efb.zip pfsense-00d01f78aa5b507eea95e6276e27b73ae5398efb.tar.gz |
Separate string and '\n' to make it easier to translators
Diffstat (limited to 'usr/local/www')
-rwxr-xr-x | usr/local/www/system_firmware_check.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/system_firmware_check.php b/usr/local/www/system_firmware_check.php index 129b854..6361ecd 100755 --- a/usr/local/www/system_firmware_check.php +++ b/usr/local/www/system_firmware_check.php @@ -128,7 +128,7 @@ if (!$remote_version) { if(isset($curcfg['alturl']['enable'])) $static_text .= gettext("Could not contact custom update server.") . "\\n"; else - $static_text .= sprintf(gettext("Could not contact '%s' update server '%s'\\n"), $g['product_name'], $updater_url); + $static_text .= sprintf(gettext("Could not contact %s update server %s%s"), $g['product_name'], $updater_url, "\\n"); } else { $static_text .= gettext("Obtaining current version information..."); update_output_window($static_text); |