From ee060b85a2e0fd935b9f63ac8c94e7168edb4fc2 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Thu, 9 Jul 2015 14:35:16 +0200 Subject: [PATCH] translation: Croatian fix months parsing --- gramps/gen/datehandler/_date_hr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/datehandler/_date_hr.py b/gramps/gen/datehandler/_date_hr.py index eb914326c..0f4be3e74 100644 --- a/gramps/gen/datehandler/_date_hr.py +++ b/gramps/gen/datehandler/_date_hr.py @@ -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) #-------------------------------------------------------------------------