Roundup Tracker - Issues

Message5109

Author antmail
Recipients antmail, ber
Date 2014-06-23.17:19:04
Message-id <1403543946.3.0.05022587265.issue2550825@psf.upfronthosting.co.za>
In-reply-to
Attached patch against roundup snap code fix the problem.
It also fix some accompanied translation problem.

After applying you need to rebuild translation file roundup.pot (in
roundup source: cd locale && gmake template). Also you may need to merge
existing translation with new roundup.pot by something like 'msgcat
--use-firest roundup.pot de.po > de_new.po'.

In your language translation filde find a pattern 
  In apropriate language file find:
"'''^
((?P<y>\d\d\d\d)([/-](?P<m>\d\d?)([/-](?P<d>\d\d?))?)? # yyyy[-mm[-dd]]
|(?P<a>\d\d?)[/-](?P<b>\d\d?))?              # or mm-dd
(?P<n>\.)?                                   # .
(((?P<H>\d?\d):(?P<M>\d\d))?(:(?P<S>\d\d?(\.\d+)?))?)?  # hh:mm:ss
(?P<o>[\d\smywd\-+]+)?                       # offset
$'''"
 and replace it to desired expression which will parse your country
specific date/time format.
  Regular expression must contain y,m,d group for full date, a,b - for
m-d variant, n for now, o for offset,H,M,S for time.
  Also translate message '.. not a date / time spec ...' from date.py to
something which describe date/time format.
History
Date User Action Args
2014-06-23 17:19:06antmailsetmessageid: <1403543946.3.0.05022587265.issue2550825@psf.upfronthosting.co.za>
2014-06-23 17:19:06antmailsetrecipients: + antmail, ber
2014-06-23 17:19:06antmaillinkissue2550825 messages
2014-06-23 17:19:05antmailcreate