fix Norwegian numeric-format date display
This commit is contained in:
parent
c1c2c1557c
commit
968f378174
@ -553,6 +553,8 @@ class DateDisplay:
|
||||
return str(date_val[2])
|
||||
else:
|
||||
value = self._tformat.replace('%m', str(date_val[1]))
|
||||
# some locales have %b for the month, e.g. ar_EG, is_IS, nb_NO
|
||||
value = value.replace('%b', str(date_val[1]))
|
||||
if date_val[0] == 0: # ignore the zero day and its delimiter
|
||||
i_day = value.find('%d')
|
||||
value = value.replace(value[i_day:i_day+3], '')
|
||||
|
Loading…
Reference in New Issue
Block a user