From 5180925a46cfa80cb4ac57b35f2f80f79345444b Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Sat, 3 May 2014 05:17:27 -0700 Subject: [PATCH] use a standard string, not a unique string --- gramps/gui/editors/editcitation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/gui/editors/editcitation.py b/gramps/gui/editors/editcitation.py index c5816b4dd..80414dfc8 100644 --- a/gramps/gui/editors/editcitation.py +++ b/gramps/gui/editors/editcitation.py @@ -279,10 +279,10 @@ class EditCitation(EditPrimary): name = prim_object.get_page() msg1 = _("Cannot save citation. ID already exists.") msg2 = _("You have attempted to use the existing Gramps ID with " - "value %(gramps_id)s. This value is already used by '" + "value %(id)s. This value is already used by '" "%(prim_object)s'. Please enter a different ID or leave " "blank to get the next available ID value.") % { - 'gramps_id' : gramps_id, 'prim_object' : name } + 'id' : gramps_id, 'prim_object' : name } ErrorDialog(msg1, msg2) self.ok_button.set_sensitive(True) return