2006-05-14 Alex Roitman <shura@gramps-project.org>
* src/DateHandler/__init__.py: Remove unneeded imports. * src/plugins/Calendar.py (print_page): Use GrampsLocale._months. svn: r6662
This commit is contained in:
parent
fccd0c3db1
commit
bab5e5447d
@ -1,3 +1,7 @@
|
|||||||
|
2006-05-14 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/DateHandler/__init__.py: Remove unneeded imports.
|
||||||
|
* src/plugins/Calendar.py (print_page): Use GrampsLocale._months.
|
||||||
|
|
||||||
2006-05-14 Brian Matherly <brian@gramps-project.org>
|
2006-05-14 Brian Matherly <brian@gramps-project.org>
|
||||||
* src/PluginUtils/_ReportUtils.py: Change strings to include gender instead
|
* src/PluginUtils/_ReportUtils.py: Change strings to include gender instead
|
||||||
of "child of"
|
of "child of"
|
||||||
|
@ -28,9 +28,6 @@ Class handling language-specific selection for date parser and displayer.
|
|||||||
from _DateHandler import _lang, _lang_short, \
|
from _DateHandler import _lang, _lang_short, \
|
||||||
_lang_to_parser, _lang_to_display, register_datehandler
|
_lang_to_parser, _lang_to_display, register_datehandler
|
||||||
|
|
||||||
from _DateDisplay import DateDisplay
|
|
||||||
from _DateParser import DateParser
|
|
||||||
|
|
||||||
# Import all the localized handlers
|
# Import all the localized handlers
|
||||||
import _Date_de
|
import _Date_de
|
||||||
import _Date_es
|
import _Date_es
|
||||||
|
@ -40,7 +40,7 @@ import BaseDoc
|
|||||||
from PluginUtils import Report, ReportOptions, ReportUtils, register_report
|
from PluginUtils import Report, ReportOptions, ReportUtils, register_report
|
||||||
pt2cm = ReportUtils.pt2cm
|
pt2cm = ReportUtils.pt2cm
|
||||||
from Filters import CustomFilters, GenericFilter, ParamFilter, Rules
|
from Filters import CustomFilters, GenericFilter, ParamFilter, Rules
|
||||||
from DateHandler import DateDisplay
|
import GrampsLocale
|
||||||
import RelLib
|
import RelLib
|
||||||
|
|
||||||
# _days could be added to DateDisplay:
|
# _days could be added to DateDisplay:
|
||||||
@ -202,7 +202,7 @@ class Calendar(Report.Report):
|
|||||||
self.doc.draw_bar("title", 0, 0, width, header)
|
self.doc.draw_bar("title", 0, 0, width, header)
|
||||||
self.doc.draw_line("border", 0, header, width, header)
|
self.doc.draw_line("border", 0, header, width, header)
|
||||||
year = self["year"]
|
year = self["year"]
|
||||||
title = "%s %d" % (DateDisplay._months[month], year)
|
title = "%s %d" % (GrampsLocale._months[month], year)
|
||||||
font_height = pt2cm(1.25 * self["title"].get_size())
|
font_height = pt2cm(1.25 * self["title"].get_size())
|
||||||
self.doc.center_text("title", title, width/2, font_height + self["offset"]) # 1.0
|
self.doc.center_text("title", title, width/2, font_height + self["offset"]) # 1.0
|
||||||
cell_width = width / 7
|
cell_width = width / 7
|
||||||
|
Loading…
Reference in New Issue
Block a user