diff -r bc441a75f82c -r 414bb8439002 web/__init__.py --- a/web/__init__.py Sat Nov 07 18:39:37 2009 +0100 +++ b/web/__init__.py Sat Nov 07 22:04:45 2009 +0100 @@ -23,12 +23,12 @@ class stdmsgs(object): """standard ui message (in a class for bw compat)""" - BUTTON_OK = _('button_ok') - BUTTON_APPLY = _('button_apply') - BUTTON_CANCEL = _('button_cancel') - BUTTON_DELETE = _('button_delete') - YES = _('yes') - NO = _('no') + BUTTON_OK = (_('button_ok'), 'OK_ICON') + BUTTON_APPLY = (_('button_apply'), 'APPLY_ICON') + BUTTON_CANCEL = (_('button_cancel'), 'CANCEL_ICON') + BUTTON_DELETE = (_('button_delete'), 'TRASH_ICON') + YES = (_('yes'), None) + NO = (_('no'), None) def eid_param(name, eid):