Set of label improvements to Open ERP Server.
[odoo/odoo.git] / bin / addons / base / ir / ir_cron.py
index 1510173..75d6b61 100644 (file)
@@ -47,9 +47,9 @@ class ir_cron(osv.osv, netsvc.Agent):
         'interval_number': fields.integer('Interval Number'),
         'interval_type': fields.selection( [('minutes', 'Minutes'),
             ('hours', 'Hours'), ('work_days','Work Days'), ('days', 'Days'),('weeks', 'Weeks'), ('months', 'Months')], 'Interval Unit'),
-        'numbercall': fields.integer('Number of calls', help='Number of time the function is called,\na negative number indicates that the function will always be called'),        
-        'doall' : fields.boolean('Repeat missed'),
-        'nextcall' : fields.datetime('Next call date', required=True),
+        'numbercall': fields.integer('Number of Calls', help='Number of time the function is called,\na negative number indicates that the function will always be called'),        
+        'doall' : fields.boolean('Repeat Missed'),
+        'nextcall' : fields.datetime('Next Call Date', required=True),
         'model': fields.char('Object', size=64),
         'function': fields.char('Function', size=64),
         'args': fields.text('Arguments'),