diff --git a/src/include/functions_common.php b/src/include/functions_common.php
index 64efcff..10acfa6 100644
--- a/src/include/functions_common.php
+++ b/src/include/functions_common.php
@@ -472,7 +472,8 @@ function InitFrontEndVariables()
$content['MENU_SELECTION_ENABLED'] = $content['BASEPATH'] . "images/icons/selection_delete.png";
$content['MENU_TEXT_FIND'] = $content['BASEPATH'] . "images/icons/text_find.png";
$content['MENU_NETWORK'] = $content['BASEPATH'] . "images/icons/earth_network.png";
-
+ $content['MENU_HELP'] = $content['BASEPATH'] . "images/icons/help.png";
+ $content['MENU_KB'] = $content['BASEPATH'] . "images/icons/books.png";
$content['MENU_PAGER_BEGIN'] = $content['BASEPATH'] . "images/icons/media_beginning.png";
$content['MENU_PAGER_PREVIOUS'] = $content['BASEPATH'] . "images/icons/media_rewind.png";
diff --git a/src/lang/de/main.php b/src/lang/de/main.php
index f0abdf9..1f9ed04 100644
--- a/src/lang/de/main.php
+++ b/src/lang/de/main.php
@@ -57,6 +57,16 @@ $content['LN_GEN_SOURCE_DB'] = "Datenbank";
$content['LN_GEN_DB_SQLITE'] = "SQLite 2";
$content['LN_GEN_SELECTVIEW'] = "Select View";
+// Topmenu Entries
+$content['LN_MENU_SEARCH'] = "Suchen";
+ $content['LN_MENU_SHOWEVENTS'] = "Show Events";
+$content['LN_MENU_HELP'] = "Hilfe";
+ $content['LN_MENU_SEARCHINKB'] = "Search in Knowledge Base";
+$content['LN_MENU_LOGIN'] = "Login";
+ $content['LN_MENU_ADMINCENTER'] = "Admin Center";
+$content['LN_MENU_LOGOFF'] = "Logoff";
+ $content['LN_MENU_LOGGEDINAS'] = "Logged in as";
+
// Index Site
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warnung! Du hast das Installationsscript 'install.php' noch nicht aus dem phpLogCon Hauptordner entfernt!";
$content['LN_TOP_NUM'] = "No.";
diff --git a/src/lang/en/main.php b/src/lang/en/main.php
index baedc13..8ce2d2d 100644
--- a/src/lang/en/main.php
+++ b/src/lang/en/main.php
@@ -58,6 +58,15 @@ $content['LN_GEN_DB_INFORMIX'] = "IBM Informix Dynamic Server";
$content['LN_GEN_DB_SQLITE'] = "SQLite 2";
$content['LN_GEN_SELECTVIEW'] = "Select View";
+// Topmenu Entries
+ $content['LN_MENU_SEARCH'] = "Search";
+ $content['LN_MENU_SHOWEVENTS'] = "Show Events";
+ $content['LN_MENU_HELP'] = "Help";
+ $content['LN_MENU_SEARCHINKB'] = "Search in Knowledge Base";
+ $content['LN_MENU_LOGIN'] = "Login";
+ $content['LN_MENU_ADMINCENTER'] = "Admin Center";
+ $content['LN_MENU_LOGOFF'] = "Logoff";
+ $content['LN_MENU_LOGGEDINAS'] = "Logged in as";
// Main Index Site
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warning! You still have NOT removed the 'install.php' from your phpLogCon main directory!";
diff --git a/src/lang/pt_BR/main.php b/src/lang/pt_BR/main.php
index 1039ab7..d241e4c 100644
--- a/src/lang/pt_BR/main.php
+++ b/src/lang/pt_BR/main.php
@@ -61,6 +61,16 @@ $content['LN_GEN_DB_INFORMIX'] = "IBM Informix Dynamic Server";
$content['LN_GEN_DB_SQLITE'] = "SQLite 2";
$content['LN_GEN_SELECTVIEW'] = "Visão";
+// Topmenu Entries
+ $content['LN_MENU_SEARCH'] = "Search";
+ $content['LN_MENU_SHOWEVENTS'] = "Show Events";
+ $content['LN_MENU_HELP'] = "Help";
+ $content['LN_MENU_SEARCHINKB'] = "Search in Knowledge Base";
+ $content['LN_MENU_LOGIN'] = "Login";
+ $content['LN_MENU_ADMINCENTER'] = "Admin Center";
+ $content['LN_MENU_LOGOFF'] = "Logoff";
+ $content['LN_MENU_LOGGEDINAS'] = "Logged in as";
+
// Main Index Site
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Atenção! Você ainda NÃO removeu o arquivo 'install.php' do diretório de seu phpLogCon!";
$content['LN_TOP_NUM'] = "Não.";
@@ -157,4 +167,13 @@ $content['LN_DETAILS_FORSYSLOGMSG'] = "Detalhes para a mensagem com id";
$content['LN_DETAILS_DETAILSFORMSG'] = "Detalhes para a mensagem com id";
$content['LN_DETAIL_BACKTOLIST'] = "Voltar para a lista";
-?>
+ // Login Site
+ $content['LN_LOGIN_DESCRIPTION'] = "Use this form to login into phpLogCon. ";
+ $content['LN_LOGIN_TITLE'] = "Login";
+ $content['LN_LOGIN_USERNAME'] = "Username";
+ $content['LN_LOGIN_PASSWORD'] = "Password";
+ $content['LN_LOGIN_SAVEASCOOKIE'] = "Stay logged on";
+ $content['LN_LOGIN_ERRWRONGPASSWORD'] = "Wrong username or password!";
+ $content['LN_LOGIN_USERPASSMISSING'] = "Username or password not given";
+
+?>
\ No newline at end of file
diff --git a/src/templates/include_footer.html b/src/templates/include_footer.html
index 2d21a4f..1723563 100644
--- a/src/templates/include_footer.html
+++ b/src/templates/include_footer.html
@@ -2,7 +2,7 @@
- Created 2008 - By Adiscon GmbH |
+ Made by Adiscon GmbH (2008) |
phpLogCon Version {BUILDNUMBER}
|
@@ -10,12 +10,12 @@
Partners:
- rsyslog |
+ Rsyslog |
WinSyslog
|
- Page rendered in {PAGERENDERTIME} seconds
+ Page rendered: {PAGERENDERTIME} seconds
| DB queries: {TOTALQUERIES}
| GZIP enabled: {GzipCompressionEnmabled}
|
diff --git a/src/templates/include_menu.html b/src/templates/include_menu.html
index 4fbb083..4fbb177 100644
--- a/src/templates/include_menu.html
+++ b/src/templates/include_menu.html
@@ -1,22 +1,26 @@
-
-
+
+
-
-
+
+
-
+
+
-
-
+
+
+
+
+
diff --git a/src/themes/dark/main.css b/src/themes/dark/main.css
index 2e39f63..7f7f05b 100644
--- a/src/themes/dark/main.css
+++ b/src/themes/dark/main.css
@@ -196,6 +196,8 @@ font
height: 20px;
border:1px ridge;
border-color: #D79993 #290604 #290604 #D79993;
+ padding: 2px 2px 0px 2px;
+ vertical-align: middle;
font: 10px Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;
diff --git a/src/themes/default/main.css b/src/themes/default/main.css
index d7bbf4b..c38750d 100644
--- a/src/themes/default/main.css
+++ b/src/themes/default/main.css
@@ -199,6 +199,8 @@ font
height: 20px;
border:1px ridge;
border-color: #79AABE #09506C #79AABE #79AABE;
+ padding: 2px 2px 0px 2px;
+ vertical-align: middle;
font: 10px Verdana, Arial, Helvetica, sans-serif;
color: #FFFFFF;