use a standard string, not a unique string

This commit is contained in:
Paul Franklin 2014-05-03 05:17:27 -07:00
parent d5d0430ab6
commit 5180925a46

View File

@ -279,10 +279,10 @@ class EditCitation(EditPrimary):
name = prim_object.get_page() name = prim_object.get_page()
msg1 = _("Cannot save citation. ID already exists.") msg1 = _("Cannot save citation. ID already exists.")
msg2 = _("You have attempted to use the existing Gramps ID with " 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 " "%(prim_object)s'. Please enter a different ID or leave "
"blank to get the next available ID value.") % { "blank to get the next available ID value.") % {
'gramps_id' : gramps_id, 'prim_object' : name } 'id' : gramps_id, 'prim_object' : name }
ErrorDialog(msg1, msg2) ErrorDialog(msg1, msg2)
self.ok_button.set_sensitive(True) self.ok_button.set_sensitive(True)
return return