diff --git a/phpgwapi/templates/default/navbar.inc.php b/phpgwapi/templates/default/navbar.inc.php
index 4546eb6abb..70acc30e5e 100644
--- a/phpgwapi/templates/default/navbar.inc.php
+++ b/phpgwapi/templates/default/navbar.inc.php
@@ -31,17 +31,17 @@
$i = 1;
while ($app = each($phpgw_info["navbar"])) {
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "text") {
- $tabs[$i]["label"] = $app[1]["title"];
+ $tabs[$i]["label"] = lang($app[1]["title"]);
$tabs[$i]["link"] = $app[1]["url"];
if (ereg($phpgw_info["navbar"][$app[0]],$PHP_SELF)) {
$selected = $i;
}
$i++;
} else {
- $title = '
';
+ $title = '
';
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "icons_and_text") {
- $title .= "
" . $app[1]["title"];
+ $title .= "
" . lang($app[1]["title"]);
$tpl->set_var("width","7%");
} else {
$tpl->set_var("width","3%");
diff --git a/phpgwapi/templates/justweb/navbar.inc.php b/phpgwapi/templates/justweb/navbar.inc.php
index 1a8f1d34d9..5b2e85df3e 100644
--- a/phpgwapi/templates/justweb/navbar.inc.php
+++ b/phpgwapi/templates/justweb/navbar.inc.php
@@ -29,10 +29,10 @@
while ($app = each($phpgw_info["navbar"])) {
if ($app[1]["title"] != "Home" && $app[1]["title"] != "preferences" && ! ereg("About",$app[1]["title"]) && $app[1]["title"] != "Logout") {
- $title = '
';
+ $title = '
';
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "icons_and_text") {
- $title .= "
" . $app[1]["title"];
+ $title .= "
" . lang($app[1]["title"]);
}
$applications .= '
' . $title . '';
}
diff --git a/phpgwapi/templates/verdilak/navbar.inc.php b/phpgwapi/templates/verdilak/navbar.inc.php
index 3a2e47afab..51f23fd8be 100644
--- a/phpgwapi/templates/verdilak/navbar.inc.php
+++ b/phpgwapi/templates/verdilak/navbar.inc.php
@@ -29,7 +29,7 @@
while ($app = each($phpgw_info["navbar"])) {
if ($app[1]["title"] != "Home" && $app[1]["title"] != "preferences" && ! ereg("About",$app[1]["title"]) && $app[1]["title"] != "Logout") {
- $title = '
';
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] == "icons_and_text") {
$title .= "
" . lang($app[1]["title"]);