From f73b528e3f1c75e44a2ec829c3336f94096ef3b9 Mon Sep 17 00:00:00 2001 From: David Convent Date: Tue, 29 Jan 2013 11:38:27 +0100 Subject: [PATCH] Changed label for historical and scope notes, for nicer display in keyword view --- src/collective/dms/thesaurus/dmskeyword.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/collective/dms/thesaurus/dmskeyword.py b/src/collective/dms/thesaurus/dmskeyword.py index a2bb960..76f369f 100644 --- a/src/collective/dms/thesaurus/dmskeyword.py +++ b/src/collective/dms/thesaurus/dmskeyword.py @@ -37,13 +37,13 @@ class IDmsKeyword(model.Schema): # HN: historical note historical_note = schema.Text( - title=_(u"HN (Historical Note)"), + title=_(u"Historical Note"), required=False, ) # SN: scope note scope_note = schema.Text( - title=_(u"SN (Scope Note)"), + title=_(u"Scope Note"), required=False, )