summaryrefslogtreecommitdiffstats
path: root/usr/local/www/pkg_mgr_installed.php
diff options
context:
space:
mode:
authorRenato Botelho <renato.botelho@bluepex.com>2010-04-27 17:26:59 -0300
committerRenato Botelho <renato.botelho@bluepex.com>2010-04-27 17:26:59 -0300
commit79eaddf45816c3417074e8b703c2d7b7477c6185 (patch)
tree6e350c66af2028e18d22e87adaebe551866e9f49 /usr/local/www/pkg_mgr_installed.php
parent198afa092d20a856add9eb6414ea69ac825e8640 (diff)
downloadpfsense-79eaddf45816c3417074e8b703c2d7b7477c6185.zip
pfsense-79eaddf45816c3417074e8b703c2d7b7477c6185.tar.gz
Fix : for translations
Diffstat (limited to 'usr/local/www/pkg_mgr_installed.php')
-rwxr-xr-xusr/local/www/pkg_mgr_installed.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/local/www/pkg_mgr_installed.php b/usr/local/www/pkg_mgr_installed.php
index ba1269f..c80dc33 100755
--- a/usr/local/www/pkg_mgr_installed.php
+++ b/usr/local/www/pkg_mgr_installed.php
@@ -99,14 +99,14 @@ include("head.inc");
// we're running a newer version of the package
if(strcmp($pkg['version'], $latest_package) > 0) {
$tdclass = "listbggrey";
- $pkgver = gettext("Available: ") . $latest_package . "<br/>";
- $pkgver .= gettext("Installed: ") . $pkg['version'];
+ $pkgver = gettext("Available") .": ". $latest_package . "<br/>";
+ $pkgver .= gettext("Installed") .": ". $pkg['version'];
}
// we're running an older version of the package
if(strcmp($pkg['version'], $latest_package) < 0) {
$tdclass = "listbg";
- $pkgver = "<font color='#ffffff'>" . gettext("Available: ") . $latest_package . "<br/>";
- $pkgver .= gettext("Installed: ") . $pkg['version'];
+ $pkgver = "<font color='#ffffff'>" . gettext("Available") .": ". $latest_package . "<br/>";
+ $pkgver .= gettext("Installed") .": ". $pkg['version'];
}
// we're running the current version
if(!strcmp($pkg['version'], $latest_package)) {
OpenPOWER on IntegriCloud