Changed references of "photo" to "image", allowed family and personal event names to be translated.

svn: r217
This commit is contained in:
Don Allingham
2001-07-03 16:53:10 +00:00
parent 9deaabe5ea
commit a9e0c83491
16 changed files with 146 additions and 45 deletions

View File

@ -151,13 +151,13 @@ class CheckIntegrity:
elif efam > 1:
text = text + _("%d empty families were found\n") % efam
if fphotos == 1:
text = text + _("1 broken family photo was found\n")
text = text + _("1 broken family image was found\n")
elif fphotos > 1:
text = text + _("%d broken family photos were found\n") % fphotos
text = text + _("%d broken family images were found\n") % fphotos
if pphotos == 1:
text = text + _("1 broken personal photo was found\n")
text = text + _("1 broken personal image was found\n")
elif pphotos > 1:
text = text + _("%d broken personal photos were found\n") % pphotos
text = text + _("%d broken personal images were found\n") % pphotos
GnomeWarningDialog(string.strip(text))