translation: Croatian

fix months parsing
This commit is contained in:
Paul Franklin 2015-07-09 14:35:16 +02:00 committed by Josip
parent 289436ee33
commit ee060b85a2

View File

@ -142,7 +142,7 @@ class DateDisplayHR(DateDisplay):
return _("{day:d} {long_month} {year}").format(
day = date_val[0],
long_month = self.format_long_month(date_val[1],
inflect, long_months).replace('.', ''),
inflect, long_months).replace(' .', ''),
year = year)
#-------------------------------------------------------------------------