From b2f41ab56382fdf1b1b62870d6b125b2f31b77d8 Mon Sep 17 00:00:00 2001 From: Vassilii Khachaturov Date: Tue, 7 Jan 2014 17:30:33 +0200 Subject: [PATCH] strip redundant trailing ' in 2 localized messages --- gramps/gui/editors/editplace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/gui/editors/editplace.py b/gramps/gui/editors/editplace.py index 9d5311c33..40c3b55f9 100644 --- a/gramps/gui/editors/editplace.py +++ b/gramps/gui/editors/editplace.py @@ -238,14 +238,14 @@ class EditPlace(EditPrimary): if self.obj.get_title().strip() == '': msg1 = _("Cannot save location. Title not entered.") - msg2 = _("You must enter a title before saving.'") + msg2 = _("You must enter a title before saving.") ErrorDialog(msg1, msg2) self.ok_button.set_sensitive(True) return if self.obj.get_name().strip() == '': msg1 = _("Cannot save location. Name not entered.") - msg2 = _("You must enter a name before saving.'") + msg2 = _("You must enter a name before saving.") ErrorDialog(msg1, msg2) self.ok_button.set_sensitive(True) return