Module: check_mk
Branch: master
Commit: e2c45e4956d0bb9d66c67f6827362e56cb292dee
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=e2c45e4956d0bb…
Author: Götz Golla <gg(a)mathias-kettner.de>
Date: Sun Sep 29 11:52:31 2013 +0200
various spelling fixes
---
web/plugins/views/commands.py | 16 ++++++++--------
web/plugins/views/datasources.py | 2 +-
web/plugins/wato/check_parameters.py | 2 +-
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/web/plugins/views/commands.py b/web/plugins/views/commands.py
index 33f58cf..6e4feda 100644
--- a/web/plugins/views/commands.py
+++ b/web/plugins/views/commands.py
@@ -77,8 +77,8 @@ multisite_commands.append({
"permission" : "action.notifications",
"title" : _("Notifications"),
"render" : lambda: \
- html.button("_enable_notifications", _("Enable")) == \
- html.button("_disable_notifications", _("Disable")),
+ html.button("_enable_notifications", _("Enable.")) == \
+ html.button("_disable_notifications", _("Disable.")),
"action" : command_notifications,
})
@@ -102,8 +102,8 @@ multisite_commands.append({
"permission" : "action.enablechecks",
"title" : _("Active checks"),
"render" : lambda: \
- html.button("_enable_checks", _("Enable")) == \
- html.button("_disable_checks", _("Disable")),
+ html.button("_enable_checks", _("Enable.")) == \
+ html.button("_disable_checks", _("Disable.")),
"action" : command_enable_active,
})
@@ -122,8 +122,8 @@ multisite_commands.append({
"permission" : "action.enablechecks",
"title" : _("Passive checks"),
"render" : lambda: \
- html.button("_enable_passive_checks", _("Enable")) == \
- html.button("_disable_passive_checks", _("Disable")),
+ html.button("_enable_passive_checks", _("Enable.")) == \
+ html.button("_disable_passive_checks", _("Disable.")),
"action" : command_enable_passive,
})
@@ -249,10 +249,10 @@ def command_acknowledgement(cmdtag, spec, row):
multisite_commands.append({
"tables" : [ "host", "service" ],
"permission" : "action.acknowledge",
- "title" : _("Acknowledge"),
+ "title" : _("Acknowledging Problems"),
"render" : lambda: \
html.button("_acknowledge", _("Acknowledge")) == \
- html.button("_remove_ack", _("Remove Acknowledge")) == \
+ html.button("_remove_ack", _("Remove Acknowledgement")) == \
html.write("<hr>") == \
html.checkbox("_ack_sticky", True, label=_("sticky")) == \
html.checkbox("_ack_notify", True, label=_("send
notification")) == \
diff --git a/web/plugins/views/datasources.py b/web/plugins/views/datasources.py
index 3acd649..2991264 100644
--- a/web/plugins/views/datasources.py
+++ b/web/plugins/views/datasources.py
@@ -158,7 +158,7 @@ multisite_datasources["comments"] = {
}
multisite_datasources["downtimes"] = {
- "title" : _("Schedules Downtimes"),
+ "title" : _("Scheduled Downtimes"),
"table" : "downtimes",
"infos" : [ "downtime", "host", "service"
],
"keys" : [ "downtime_id", "service_description" ],
diff --git a/web/plugins/wato/check_parameters.py b/web/plugins/wato/check_parameters.py
index 7822068..3b6995c 100644
--- a/web/plugins/wato/check_parameters.py
+++ b/web/plugins/wato/check_parameters.py
@@ -851,7 +851,7 @@ register_rule(group + '/' + subgroup_storage,
'<tt>/var/log/apache/*.log</tt>. For files contained in
a group '
'the inventory will automatically create a group service instead
'
'of single services for each file. This rule also applies when
'
- 'you use manual configured checks instead of inventorized
ones.'),
+ 'you use manually configured checks instead of inventorized
ones.'),
valuespec = ListOf(
Tuple(
help = _("This defines one file grouping pattern"),