Removed backslash character in middle of translation string as per Benny.

svn: r12043
This commit is contained in:
Rob G. Healey 2009-02-19 19:20:32 +00:00
parent 0e26998664
commit e67b9d93ad

View File

@ -138,10 +138,12 @@ class NumberOfAncestorsReport(Report):
# TC # English return something like: # TC # English return something like:
# Total ancestors in generations 2 to 3 is 4. (66.67%) # Total ancestors in generations 2 to 3 is 4. (66.67%)
text = _("Total ancestors in generations %(second_generation)d to \ text = _("Total ancestors in generations %(second_generation)d to "
%(last_generation)d is %(count)d. %(percent)s") % { "%(last_generation)d is %(count)d. %(percent)s") % {
'second_generation':2, 'last_generation': gen, 'second_generation' : 2,
'count':len(all_people.keys()), 'percent': percent} 'last_generation' : gen,
'count' : len(all_people.keys()),
'percent' : percent}
self.doc.start_paragraph('NOA-Normal') self.doc.start_paragraph('NOA-Normal')
self.doc.write_text(text) self.doc.write_text(text)