diff --git a/docs/classic_vs_phoenix.txt b/docs/classic_vs_phoenix.txt index 876e7637..44c7ba6a 100644 --- a/docs/classic_vs_phoenix.txt +++ b/docs/classic_vs_phoenix.txt @@ -745,7 +745,7 @@ wx.calendar.CalendarCtrl :mod:`adv.CalendarC wx.combo.OwnerDrawnComboBox :mod:`adv.OwnerDrawnComboBox` wx.gizmos.EditableListBox :mod:`adv.EditableListBox` wx.gizmos.TreeListCtrl :mod:`adv.TreeListCtrl` -wx.AboutBox :mod:`adv.AboutBox` +wx.AboutBox :meth:`adv.AboutBox` wx.AboutDialogInfo :mod:`adv.AboutDialogInfo` wx.DatePickerCtrl :mod:`adv.DatePickerCtrl` wx.TaskBarIcon :mod:`adv.TaskBarIcon` diff --git a/wx/lib/CDate.py b/wx/lib/CDate.py index c107a3b6..34ef3451 100644 --- a/wx/lib/CDate.py +++ b/wx/lib/CDate.py @@ -24,7 +24,7 @@ _ = wx.GetTranslation Month = {0: None, 1: _('January'), 2: _('February'), 3: _('March'), - 4: _('March'), 5: _('May'), 6: _('June'), + 4: _('April'), 5: _('May'), 6: _('June'), 7: _('July'), 8: _('August'), 9: _('September'), 10: _('October'), 11: _('November'), 12: _('December')} @@ -143,9 +143,9 @@ def FromJulian(julian): def dayOfWeek(julian): """Get day of week from a julian day - param `julian`: the julian day + :param `julian`: the julian day - returns: the day of week as an integer and Monday = 1 + :returns: the day of week as an integer and Monday = 1 """ return int((julian + 1) % 7)