Module: check_mk
Branch: master
Commit: 3fb1366c0e70baf3b435ef1cc45c80ab9f35e162
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=3fb1366c0e70ba…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Nov 5 16:39:56 2013 +0100
Fix several spellings in WATO
---
web/htdocs/wato.py | 3 ++-
web/plugins/wato/check_mk_configuration.py | 8 ++++----
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index 3673058..b5bb240 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -11723,8 +11723,8 @@ def mode_edit_rule(phase, new = False):
html.write("</div>")
# Value
- forms.header(_("Patterns"))
if valuespec:
+ forms.header(valuespec.title())
value = rule[0]
forms.section()
try:
@@ -11743,6 +11743,7 @@ def mode_edit_rule(phase, new = False):
valuespec.set_focus("ve")
else:
+ forms.header(_("Positive / Negative"))
forms.section("")
for posneg, img in [ ("positive", "yes"),
("negative", "no")]:
val = img == "yes"
diff --git a/web/plugins/wato/check_mk_configuration.py
b/web/plugins/wato/check_mk_configuration.py
index 79d4418..7738b4f 100644
--- a/web/plugins/wato/check_mk_configuration.py
+++ b/web/plugins/wato/check_mk_configuration.py
@@ -1707,8 +1707,8 @@ register_rule(group,
register_rule(group,
"extra_service_conf:notes_url",
TextAscii(
- label = _("Url:"),
- title = _("Notes url for Services"),
+ label = _("URL:"),
+ title = _("Notes URL for Services"),
help = _("With this setting you can set links to documentations "
"for each service"),
),
@@ -1717,8 +1717,8 @@ register_rule(group,
register_rule(group,
"extra_host_conf:notes_url",
TextAscii(
- label = _("Url:"),
- title = _("Notes url for Hosts"),
+ label = _("URL:"),
+ title = _("Notes URL for Hosts"),
help = _("With this setting you can set links to documentations "
"for Hosts"),
),