Module: check_mk
Branch: master
Commit: 5a7ef3c650d72440c206f7cd34be5b9117efd737
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=5a7ef3c650d724…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Oct 20 10:14:20 2017 +0200
Minor UI improvements on host/folder edit page
Change-Id: I89868507ada38dcf377b9b4ddcf28c1223dbb9a5
---
web/htdocs/wato.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index 141efb1..baf2155 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -1134,7 +1134,7 @@ def mode_editfolder(phase, new):
page_title = _("Create new folder")
name, title = None, None
else:
- page_title = _("Folder Properties")
+ page_title = _("Folder properties")
name = Folder.current().name()
title = Folder.current().title()
@@ -1191,7 +1191,7 @@ def mode_editfolder(phase, new):
# title
forms.header(_("Title"))
- forms.section()
+ forms.section(_("Title"))
TextUnicode().render_input("title", title)
html.set_focus("title")
@@ -17160,7 +17160,9 @@ def configure_attributes(new, hosts, for_what, parent,
myself=None, without_attr
content = _("empty")
if isinstance(attr, ValueSpecAttribute):
+ html.open_b()
html.write(content)
+ html.close_b()
else:
html.b(_u(content))