From ccef30cf3b377e76723c1a52eed45289d931ebe5 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Mon, 21 Jul 2008 02:28:01 +0000 Subject: [PATCH] =?UTF-8?q?0002281:=20Like=20label=20on=20gramps.glade=20f?= =?UTF-8?q?ile,=20to=20use=20Zip/Postal=20code=20on=20plugins=20labels=20(?= =?UTF-8?q?contribution=20from=20J=C3=A9r=C3=B4me=20Rapinat=20).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit svn: r10888 --- src/plugins/ExtractCity.py | 2 +- src/plugins/NarrativeWeb.py | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/plugins/ExtractCity.py b/src/plugins/ExtractCity.py index a4b6758c9..d613708db 100644 --- a/src/plugins/ExtractCity.py +++ b/src/plugins/ExtractCity.py @@ -371,7 +371,7 @@ COLS = [ (_('Place title'), 1), (_('City'), 2), (_('State'), 3), - (_('Postal code'), 4), + (_('ZIP/Postal Code'), 4), (_('Country'), 5) ] diff --git a/src/plugins/NarrativeWeb.py b/src/plugins/NarrativeWeb.py index 8ded9d207..d2b668b91 100644 --- a/src/plugins/NarrativeWeb.py +++ b/src/plugins/NarrativeWeb.py @@ -1188,13 +1188,13 @@ class PlacePage(BasePage): if place.main_loc: ml = place.main_loc - for val in [(_('Street'),ml.street), - (_('City'),ml.city), - (_('Church Parish'),ml.parish), - (_('County'),ml.county), - (_('State/Province'),ml.state), - (_('Postal Code'),ml.postal), - (_('Country'),ml.country)]: + for val in [(_('Street'), ml.street), + (_('City'), ml.city), + (_('Church Parish'), ml.parish), + (_('County'), ml.county), + (_('State/Province'), ml.state), + (_('ZIP/Postal Code'), ml.postal), + (_('Country'), ml.country)]: if val[1]: of.write('\t\t\t\n') of.write('\t\t\t\t%s\n' % val[0])