diff --git a/gramps/gen/datehandler/_date_hr.py b/gramps/gen/datehandler/_date_hr.py index 43dd6231f..eb914326c 100644 --- a/gramps/gen/datehandler/_date_hr.py +++ b/gramps/gen/datehandler/_date_hr.py @@ -57,8 +57,7 @@ class DateParserHR(DateParser): 'po. ' : Date.MOD_AFTER, 'okolo' : Date.MOD_ABOUT, 'ok. ' : Date.MOD_ABOUT, - - } + } quality_to_int = { 'približno' : Date.QUAL_ESTIMATED, @@ -70,26 +69,6 @@ class DateParserHR(DateParser): bce = ["prije nove ere", "prije Krista", "p.n.e."] + DateParser.bce - # def init_strings(self): - # """ - # compiles regular expression strings for matching dates - # """ - # DateParser.init_strings(self) - # #~ DateParser.calendar_to_int.update({ - # #~ 'персидский' : Date.CAL_PERSIAN, - # #~ 'п' : Date.CAL_PERSIAN, - # #~ }) - # _span_1 = ['od'] - # _span_2 = ['do'] - # _range_1 = ['između'] - # _range_2 = ['i'] - # self._span = re.compile("(%s)\s+(?P.+)\s+(%s)\s+(?P.+)" % - # ('|'.join(_span_1), '|'.join(_span_2)), - # re.IGNORECASE) - # self._range = re.compile("(%s)\s+(?P.+)\s+(%s)\s+(?P.+)" % - # ('|'.join(_range_1), '|'.join(_range_2)), - # re.IGNORECASE) - def init_strings(self): """ compiles regular expression strings for matching dates @@ -147,7 +126,6 @@ class DateDisplayHR(DateDisplay): this must agree with DateDisplayEn's "formats" definition (it may be overridden if a locale-specific date displayer exists) """ - print('LONGMONTH: ', long_months) _ = self._locale.translation.sgettext year = self._slash_year(date_val[2], date_val[3]) @@ -167,24 +145,6 @@ class DateDisplayHR(DateDisplay): inflect, long_months).replace('.', ''), year = year) - - # def dd_dformat04(self, date_val, inflect, long_months): - # """ - # day month_name year - # """ - # year = self._slash_year(date_val[2], date_val[3]) - # if date_val[0] == 0: - # if date_val[1] == 0: - # return year + '.' - # else: - # return self.format_long_month_year(date_val[1], year, - # inflect, long_months) - # else: - # return "{day:d} {long_month} {year}".format( - # day = date_val[0], - # long_month = long_months[date_val[1]], - # year = year) - #------------------------------------------------------------------------- # # Register classes