Removed backslash character in middle of translation string as per Benny.
svn: r12043
This commit is contained in:
parent
0e26998664
commit
e67b9d93ad
@ -138,10 +138,12 @@ class NumberOfAncestorsReport(Report):
|
||||
|
||||
# TC # English return something like:
|
||||
# Total ancestors in generations 2 to 3 is 4. (66.67%)
|
||||
text = _("Total ancestors in generations %(second_generation)d to \
|
||||
%(last_generation)d is %(count)d. %(percent)s") % {
|
||||
'second_generation':2, 'last_generation': gen,
|
||||
'count':len(all_people.keys()), 'percent': percent}
|
||||
text = _("Total ancestors in generations %(second_generation)d to "
|
||||
"%(last_generation)d is %(count)d. %(percent)s") % {
|
||||
'second_generation' : 2,
|
||||
'last_generation' : gen,
|
||||
'count' : len(all_people.keys()),
|
||||
'percent' : percent}
|
||||
|
||||
self.doc.start_paragraph('NOA-Normal')
|
||||
self.doc.write_text(text)
|
||||
|
Loading…
Reference in New Issue
Block a user