1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Issue #6 #2005 Minor adjustment to LAN names.

This commit is contained in:
Cameron
2016-11-14 16:41:07 -08:00
parent 8e95099227
commit d2a0685a67
2 changed files with 10 additions and 11 deletions

View File

@@ -6513,11 +6513,11 @@ class e_admin_form_ui extends e_form
//TODO today, yesterday, this-month, last-month .
$dateFilters = array (
'hour' => LAN_UI_PAST_HOUR,
"day" => LAN_UI_PAST_24_HOURS,
"week" => LAN_UI_PAST_WEEK,
"month" => LAN_UI_PAST_MONTH,
"year" => LAN_UI_PAST_YEAR
'hour' => LAN_UI_FILTER_PAST_HOUR,
"day" => LAN_UI_FILTER_PAST_24_HOURS,
"week" => LAN_UI_FILTER_PAST_WEEK,
"month" => LAN_UI_FILTER_PAST_MONTH,
"year" => LAN_UI_FILTER_PAST_YEAR
);
foreach($dateFilters as $k => $name)

View File

@@ -400,7 +400,6 @@ define("LAN_FILTER_LABEL_DISPLAYALL", "Display All");
define("LAN_FILTER_LABEL_CLEAR", "Clear Filter");
define("LAN_FILTER_LABEL_TYPED", "(typed)");
//FIXME Remove html
define("LAN_UI_NOPID_ERROR", "There is no [b]Primary ID[/b] set");
define("LAN_UI_BATCHDEL_ERROR", "Batch delete not allowed!");
define("LAN_UI_404_BODY_ERROR", "Requested page was not found!");
@@ -424,11 +423,11 @@ define("LAN_UI_BATCH_CREATELINK", "Create Link");
define("LAN_UI_USING_DATABASE_TABLE", "Using [x] database table");
define("LAN_UI_TOTAL_RECORDS", "Total Records: [x]");
define("LAN_UI_PAST_HOUR", "Past Hour");
define("LAN_UI_PAST_24_HOURS", "Past 24 hours");
define("LAN_UI_PAST_WEEK", "Past Week");
define("LAN_UI_PAST_MONTH", "Past Month");
define("LAN_UI_PAST_YEAR", "Past Year");
define("LAN_UI_FILTER_PAST_HOUR", "Past Hour");
define("LAN_UI_FILTER_PAST_24_HOURS", "Past 24 hours");
define("LAN_UI_FILTER_PAST_WEEK", "Past Week");
define("LAN_UI_FILTER_PAST_MONTH", "Past Month");
define("LAN_UI_FILTER_PAST_YEAR", "Past Year");
define("LAN_USER_MANAGEALL", "Manage all User, Userclass and Extended User-Field settings");
define("LAN_USER_LIST", "User List");