Quote:
Originally Posted by kovidgoyal
Fine by me
|
I'm amazed you can follow all these threads and still write code!
A question: If I write the automerge option box this way:
Code:
choices = [(_('Ignore'), 'ignore'), (_('Overwrite'), 'overwrite'),
(_('New Record'), 'new record')]
r('automerge', gprefs, choices=choices)
Will non-English language users be able to change the options, and will this code:
Code:
if gprefs['automerge'] == 'overwrite':
work correctly?