From c9cf3a990fb081728dbcae375f7237bcd32ef098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sat, 26 Jun 2010 08:39:34 +0000 Subject: [PATCH] 4087: name for a polish language (by Yenidai_2nd) svn: r15594 --- src/plugins/webreport/NarrativeWeb.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 4a02763e0..25b2d4ca9 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -2027,7 +2027,7 @@ class IndividualListPage(BasePage): # show surname and first name trow += ( Html("th", _("Surname"), class_ = "ColumnSurname", inline = True) + - Html("th", _("Name"), class_ = "ColumnName", inline = True) + Html("th", _("First Name|Name"), class_ = "ColumnName", inline = True) ) if showbirth: @@ -2200,7 +2200,7 @@ class SurnamePage(BasePage): thead += trow # Name Column - trow += Html("th", _("Name"), class_ = "ColumnName", inline = True) + trow += Html("th", _("First Name|Name"), class_ = "ColumnName", inline = True) if showbirth: trow += Html("th", BIRTH, class_ = "ColumnBirth", inline = True) @@ -5039,7 +5039,7 @@ class RepositoryListPage(BasePage): trow = Html("tr") + ( Html("th", " ", class_ = "ColumnRowLabel", inline = True), Html("th", THEAD, class_ = "ColumnType", inline = True), - Html("th", _("Repository |Name"), class_ = "ColumnName", inline = True) + Html("th", _("Repository|Name"), class_ = "ColumnName", inline = True) ) thead += trow @@ -5187,7 +5187,7 @@ class AddressBookListPage(BasePage): Html("th", label, class_="Column" + colclass, inline=True) for (label, colclass) in [ [" ", "RowLabel"], - [_("Name"), "Name"], + [_("First and Last Name|Name"), "Name"], [_("Address"), "Address"], [_("Residence"), "Residence"], [_("Web Links"), "WebLinks"] ]