summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/usr/local/www/head.inc12
-rw-r--r--src/usr/local/www/system.php2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/local/www/head.inc b/src/usr/local/www/head.inc
index ab83741..cd9e453 100755
--- a/src/usr/local/www/head.inc
+++ b/src/usr/local/www/head.inc
@@ -464,24 +464,24 @@ if (($pagename === "index.php") && ($numColumns > 2)) {
<?php if ($dashboard_available_widgets_hidden): ?>
<li>
- <a onclick="$('#widget-available').toggle(360);" title="<?=gettext("Show/Hide available widgets panel")?>">
- <i style="cursor:pointer"><?=gettext("Widgets");?></i>
+ <a onclick="$('#widget-available').toggle(360);" title="<?=gettext("Available Widgets")?>">
+ <i style="cursor:pointer" class="fa fa-plus"></i>
</a>
</li>
<?php endif?>
<?php if ($system_logs_filter_form_hidden): ?>
<li>
- <a onclick="$('#filter-form').toggle(360)" title="<?=gettext("Show/Hide log filter panel")?>">
- <i style="cursor:pointer"><?=gettext("Filter");?></i>
+ <a onclick="$('#filter-form').toggle(360)" title="<?=gettext("Log Filter")?>">
+ <i style="cursor:pointer" class="fa fa-filter"></i>
</a>
</li>
<?php endif ?>
<?php if ($system_logs_manage_log_form_hidden): ?>
<li>
- <a onclick="$('#manage-log-form').toggle(360)" title="<?=gettext("Show/Hide manage log panel")?>">
- <i style="cursor:pointer"><?=gettext("Manage Log");?></i>
+ <a onclick="$('#manage-log-form').toggle(360)" title="<?=gettext("Manage Log")?>">
+ <i style="cursor:pointer" class="fa fa-wrench"></i>
</a>
</li>
<?php endif ?>
diff --git a/src/usr/local/www/system.php b/src/usr/local/www/system.php
index b7033d0..d0657d7 100644
--- a/src/usr/local/www/system.php
+++ b/src/usr/local/www/system.php
@@ -537,7 +537,7 @@ $group->add(new Form_Checkbox(
$group->add(new Form_Checkbox(
'systemlogsmanagelogpanel',
null,
- 'Manage Logs',
+ 'Manage Log',
$pconfig['systemlogsmanagelogpanel']
))->setHelp('Show the Manage Log panel in System Logs.');
OpenPOWER on IntegriCloud