mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
- Added background logik to read and display the filters in the search field in the index page
58 lines
2.3 KiB
PHP
58 lines
2.3 KiB
PHP
<?php
|
|
global $content;
|
|
|
|
// Global Stuff
|
|
$content['LN_MAINTITLE'] = "Main PhpLogCon";
|
|
$content['LN_MAIN_SELECTSTYLE'] = "Select a Style";
|
|
$content['LN_GEN_LANGUAGE'] = "Select language";
|
|
$content['LN_GEN_SELECTSOURCE'] = "Select Source";
|
|
$content['LN_GEN_MOREPAGES'] = "More than one Page available";
|
|
$content['LN_GEN_FIRSTPAGE'] = "First Page";
|
|
$content['LN_GEN_LASTPAGE'] = "Last Page";
|
|
$content['LN_GEN_NEXTPAGE'] = "Next Page";
|
|
$content['LN_GEN_PREVIOUSPAGE'] = "Previous Page";
|
|
|
|
// Main Index Site
|
|
$content['LN_ERROR_INSTALLFILEREMINDER'] = "Warning! You still have NOT removed the 'install.php' from your PhpLogCon main directory!";
|
|
$content['LN_TOP_NUM'] = "No.";
|
|
$content['LN_TOP_UID'] = "uID";
|
|
$content['LN_GRID_DATE'] = "Date";
|
|
$content['LN_GRID_FACILITY'] = "Facility";
|
|
$content['LN_GRID_SEVERITY'] = "Severity";
|
|
$content['LN_GRID_SYSLOGTAG'] = "SyslogTag";
|
|
$content['LN_GRID_INFOUNIT'] = "InfoUnit";
|
|
$content['LN_GRID_HOST'] = "Source";
|
|
$content['LN_GRID_MSG'] = "Message";
|
|
|
|
$content['LN_SEARCH_USETHISBLA'] = "Use the form below and your advanced search will appear here";
|
|
$content['LN_SEARCH_FILTER'] = "Search (filter):";
|
|
$content['LN_SEARCH_ADVANCED'] = "Advanced Search";
|
|
$content['LN_SEARCH_FEELSAD'] = "I'm feeling sad ...";
|
|
$content['LN_SEARCH'] = "Search";
|
|
$content['LN_SEARCH_RESET'] = "Reset search";
|
|
$content['LN_SEARCH_PERFORMADVANCED'] = "Perform Advanced Search";
|
|
|
|
|
|
// Filter Options
|
|
$content['LN_FILTER_DATE'] = "Datetime Range";
|
|
$content['LN_FILTER_DATEMODE'] = "Select mode";
|
|
$content['LN_DATEMODE_ALL'] = "All time";
|
|
$content['LN_DATEMODE_RANGE'] = "Time range";
|
|
$content['LN_DATEMODE_LASTX'] = "Time x since today";
|
|
$content['LN_FILTER_DATEFROM'] = "Date range from";
|
|
$content['LN_FILTER_DATETO'] = "Date range to";
|
|
$content['LN_FILTER_DATELASTX'] = "Time since";
|
|
$content['LN_FILTER_ADD2SEARCH'] = "Add to search";
|
|
$content['LN_DATE_LASTX_HOUR'] = "Last hour";
|
|
$content['LN_DATE_LASTX_12HOURS'] = "Last 12 hours";
|
|
$content['LN_DATE_LASTX_24HOURS'] = "Last 24 hours";
|
|
$content['LN_DATE_LASTX_7DAYS'] = "Last 7 days";
|
|
$content['LN_DATE_LASTX_31DAYS'] = "Last 31 days";
|
|
$content['LN_FILTER_FACILITY'] = "Syslog Facility";
|
|
$content['LN_FILTER_SEVERITY'] = "Syslog Severity";
|
|
$content['LN_FILTER_OTHERS'] = "Other Filters";
|
|
$content['LN_FILTER_MESSAGE'] = "Syslog Message";
|
|
$content['LN_FILTER_SYSLOGTAG'] = "Syslogtag";
|
|
$content['LN_FILTER_SOURCE'] = "Source (Hostname)";
|
|
|
|
?>
|