ticket 2244 Date parser for Norwegian locale, allow 'b' for month
svn: r10855
This commit is contained in:
parent
c284814bf9
commit
c83e009312
@ -197,8 +197,10 @@ class DateParser:
|
||||
fmt = GrampsLocale.tformat
|
||||
match = self._fmt_parse.match(fmt.lower())
|
||||
if match:
|
||||
self.dmy = (match.groups() == ('d', 'm', 'y'))
|
||||
self.ymd = (match.groups() == ('y', 'm', 'd'))
|
||||
self.dmy = (match.groups() == ('d', 'm', 'y') or \
|
||||
match.groups() == ('d', 'b', 'y'))
|
||||
self.ymd = (match.groups() == ('y', 'm', 'd') or \
|
||||
match.groups() == ('y', 'b', 'd'))
|
||||
else:
|
||||
self.dmy = True
|
||||
self.ymd = False
|
||||
|
Loading…
x
Reference in New Issue
Block a user