* src/PeopleView.py: replace unique string with one already translated

* src/gramps_main.py: replace unique string with one already translated
* src/plugins/Ancestors.py: replace unique string with one already translated
* src/plugins/Eval.py: replace unique string with one already translated
* src/plugins/WriteCD.py: replace unique string with one already translated
* src/po/check_po: produce a sorted list of used text strings,
split strings better


svn: r5165
This commit is contained in:
Don Allingham
2005-09-01 22:24:39 +00:00
parent 59172268eb
commit a1d64c63a7
7 changed files with 42 additions and 17 deletions

View File

@@ -1084,7 +1084,7 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
mlist = self.people_view.get_selected_objects()
if len(mlist) != 2:
msg = _("Cannot merge people.")
msg = _("Cannot merge people")
msg2 = _("Exactly two people must be selected to perform a merge. "
"A second person can be selected by holding down the "
"control key while clicking on the desired person.")
@@ -1096,7 +1096,7 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
if p1 and p2:
merger = MergePeople.MergePeopleUI(self.db,p1,p2,self.merge_update)
else:
msg = _("Cannot merge people.")
msg = _("Cannot merge people")
msg2 = _("Exactly two people must be selected to perform a merge. "
"A second person can be selected by holding down the "
"control key while clicking on the desired person.")
@@ -1114,7 +1114,7 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
mlist = self.people_view.get_selected_objects()
if len(mlist) != 2:
msg = _("Cannot merge people.")
msg = _("Cannot merge people")
msg2 = _("Exactly two people must be selected to perform a merge. "
"A second person can be selected by holding down the "
"control key while clicking on the desired person.")
@@ -1126,7 +1126,7 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
if p1 and p2:
merger = MergePeople.Compare(self.db,p1,p2,self.merge_update)
else:
msg = _("Cannot merge people.")
msg = _("Cannot merge people")
msg2 = _("Exactly two people must be selected to perform a merge. "
"A second person can be selected by holding down the "
"control key while clicking on the desired person.")