summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/diag_tables.php
diff options
context:
space:
mode:
authork-paulius <k.dash.paulius@gmail.com>2016-02-13 20:07:44 -0600
committerStephen Beaver <sbeaver@netgate.com>2016-02-14 15:09:55 -0500
commit8545addef70e17eee3daf34867514b5ab9fcdb45 (patch)
tree446940b83d451b895b4402ff672f5060b9a53ed0 /src/usr/local/www/diag_tables.php
parentf7c5e29c689af539a41229bc49894ffd7b98e4ec (diff)
downloadpfsense-8545addef70e17eee3daf34867514b5ab9fcdb45.zip
pfsense-8545addef70e17eee3daf34867514b5ab9fcdb45.tar.gz
Review alert wording. End sentence with period, remove redundant 'Warning', 'Error', etc. prefixes, since alerts are now color coded. Remove <b> tags.
Diffstat (limited to 'src/usr/local/www/diag_tables.php')
-rw-r--r--src/usr/local/www/diag_tables.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/diag_tables.php b/src/usr/local/www/diag_tables.php
index d34d57c..8a160d3 100644
--- a/src/usr/local/www/diag_tables.php
+++ b/src/usr/local/www/diag_tables.php
@@ -169,9 +169,9 @@ if ($bogons || !empty($entries)) {
<?php
$last_updated = exec('/usr/bin/grep -i -m 1 -E "^# last updated" /etc/' . escapeshellarg($tablename) . '|cut -d"(" -f2|tr -d ")" ');
if ($last_updated != "") {
- print_info_box(gettext("Table last updated on ") . $last_updated, 'info', false);
+ print_info_box(gettext("Table last updated on ") . $last_updated . ".", 'info', false);
} else {
- print_info_box(gettext("Date of last update of table is unknown"), 'info', false);
+ print_info_box(gettext("Date of last update of table is unknown."), 'info', false);
}
?>
</div>
@@ -243,6 +243,6 @@ events.push(function() {
<?php
if (empty($entries)) {
- print_info_box(gettext("No entries exist in this table"), 'warning', false);
+ print_info_box(gettext("No entries exist in this table."), 'warning', false);
}
include("foot.inc");
OpenPOWER on IntegriCloud