0001751: Translation of string in FanCaaart.py does not work.
svn: r10013
This commit is contained in:
parent
1f783f6545
commit
fbb9bcedf8
@ -1,3 +1,7 @@
|
|||||||
|
2008-02-10 Brian Matherly <brian@gramps-project.org>
|
||||||
|
* src/plugins/FanChart.py:
|
||||||
|
0001751: Translation of string in FanCaaart.py does not work.
|
||||||
|
|
||||||
2008-02-10 Brian Matherly <brian@gramps-project.org>
|
2008-02-10 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/plugins/NarrativeWeb.py:
|
* src/plugins/NarrativeWeb.py:
|
||||||
* src/PluginUtils/_GuiOptions.py:
|
* src/PluginUtils/_GuiOptions.py:
|
||||||
|
@ -177,8 +177,8 @@ class FanChart(Report):
|
|||||||
block_size = min_xy / (self.max_generations * 2 - max_circular)
|
block_size = min_xy / (self.max_generations * 2 - max_circular)
|
||||||
else:
|
else:
|
||||||
block_size = min_xy / self.max_generations
|
block_size = min_xy / self.max_generations
|
||||||
text = _("%(generations)d Generation Fan Chart for %(person)s" %
|
text = _("%(generations)d Generation Fan Chart for %(person)s" ) % \
|
||||||
{ 'generations' : self.max_generations, 'person' : n } )
|
{ 'generations' : self.max_generations, 'person' : n }
|
||||||
self.doc.center_text ('t', text, self.doc.get_usable_width() / 2, 0)
|
self.doc.center_text ('t', text, self.doc.get_usable_width() / 2, 0)
|
||||||
|
|
||||||
for generation in range (0, min (max_circular, self.max_generations)):
|
for generation in range (0, min (max_circular, self.max_generations)):
|
||||||
|
Loading…
Reference in New Issue
Block a user