From 7b6832eea7dc597ed049d5e6d0bea1a32f86e0c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matti=20Niemel=C3=A4?= Date: Mon, 9 Nov 2015 14:16:42 +0100 Subject: [PATCH] 9040: 'Narrative' word not translatable --- gramps/plugins/webreport/narrativeweb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index af7b05c16..df2e41cd4 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -735,7 +735,7 @@ class BasePage(object): if note: trow = Html("tr") + ( Html("td", " ", class_ = "ColumnType", inline = True), - Html("td", "Narrative", class_ = "ColumnAttribute", inline = True), + Html("td", _("Narrative"), class_ = "ColumnAttribute", inline = True), Html("td", self.get_note_format(note, True), class_ = "ColumnValue") ) table = table + trow if table is not None else trow