[FIX] module:base made name field translatable in action.server (ref:mga)

bzr revid: hda@hda-20090701073109-ptut9d6x4w51jexe
This commit is contained in:
husen daudi 2009-07-01 13:01:09 +05:30
parent cc4e06238d
commit 7727f7e4ae
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ class actions_server(osv.osv):
_sequence = 'ir_actions_id_seq'
_order = 'sequence'
_columns = {
'name': fields.char('Action Name', required=True, size=64, help="Easy to Refer action by name e.g. One Sales Order -> Many Invoices"),
'name': fields.char('Action Name', required=True, size=64, help="Easy to Refer action by name e.g. One Sales Order -> Many Invoices", translate=True),
'condition' : fields.char('Condition', size=256, required=True, help="Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price"),
'state': fields.selection([
('client_action','Client Action'),