From b236953ebea88915f063577187c658c81a3a53f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zden=C4=9Bk=20Hata=C5=A1?= Date: Fri, 19 Jun 2009 06:42:44 +0000 Subject: [PATCH] Fixed typo in localized date handler. svn: r12675 --- src/DateHandler/_Date_cs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/DateHandler/_Date_cs.py b/src/DateHandler/_Date_cs.py index 530af1afb..b6c5049f9 100644 --- a/src/DateHandler/_Date_cs.py +++ b/src/DateHandler/_Date_cs.py @@ -69,7 +69,7 @@ class DateParserCZ(DateParser): u'r' : Date.CAL_FRENCH, u'perský' : Date.CAL_PERSIAN, u'p' : Date.CAL_PERSIAN, - u'swedish' : Date.CAL_SWEDISH, + u'švédský' : Date.CAL_SWEDISH, u's' : Date.CAL_SWEDISH, } @@ -138,7 +138,7 @@ class DateDisplayCZ(DateDisplay): elif mod == Date.MOD_RANGE: d1 = self.display_cal[cal](start) d2 = self.display_cal[cal](date.get_stop_date()) - return "%s%s %s %s %s%s" % (qual_str, u'medzi', + return "%s%s %s %s %s%s" % (qual_str, u'mezi', d1, u'a', d2, self.calendar[cal]) else: text = self.display_cal[date.get_calendar()](start)