diff options
author | heper <heper@users.noreply.github.com> | 2015-11-29 13:38:44 +0100 |
---|---|---|
committer | heper <heper@users.noreply.github.com> | 2015-11-29 13:38:44 +0100 |
commit | 7e10110d748cce202fc3e679a26f5e32436a33c5 (patch) | |
tree | 49e0777aaae13eee29ad65fcd1c82719bda46928 | |
parent | 101092dd2fb9ce771aa3456898664fccee8ef523 (diff) | |
download | pfsense-7e10110d748cce202fc3e679a26f5e32436a33c5.zip pfsense-7e10110d748cce202fc3e679a26f5e32436a33c5.tar.gz |
fix caps
-rw-r--r-- | src/usr/local/www/pkg_mgr_install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/pkg_mgr_install.php b/src/usr/local/www/pkg_mgr_install.php index a7952e5..9f7af99 100644 --- a/src/usr/local/www/pkg_mgr_install.php +++ b/src/usr/local/www/pkg_mgr_install.php @@ -254,12 +254,12 @@ $tab_array = array(); if($firmwareupdate) { $pgtitle = array(gettext("System"),gettext("Update"), $headline); - $tab_array[] = array(gettext("System update"), true, ""); + $tab_array[] = array(gettext("System Update"), true, ""); $tab_array[] = array(gettext("Update Settings"), false, "system_update_settings.php"); } else { $pgtitle = array(gettext("System"),gettext("Package Manager"), $headline); - $tab_array[] = array(gettext("Available packages"), false, "pkg_mgr.php"); - $tab_array[] = array(gettext("Installed packages"), false, "pkg_mgr_installed.php"); + $tab_array[] = array(gettext("Available Packages"), false, "pkg_mgr.php"); + $tab_array[] = array(gettext("Installed Packages"), false, "pkg_mgr_installed.php"); $tab_array[] = array(gettext("Package Installer"), true, ""); } |