[IMP] base : Improved the typos.
authorDivyesh Makwana (Open ERP) <mdi@tinyerp.com>
Mon, 23 Apr 2012 11:32:57 +0000 (17:02 +0530)
committerDivyesh Makwana (Open ERP) <mdi@tinyerp.com>
Mon, 23 Apr 2012 11:32:57 +0000 (17:02 +0530)
bzr revid: mdi@tinyerp.com-20120423113257-pznbfrx2vbyylein

openerp/addons/base/ir/ir_actions.py

index 2fd9a97..83304d7 100644 (file)
@@ -117,26 +117,26 @@ class report_xml(osv.osv):
         'usage': fields.char('Action Usage', size=32),
         'report_type': fields.char('Report Type', size=32, required=True, help="Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..."),
         'groups_id': fields.many2many('res.groups', 'res_groups_report_rel', 'uid', 'gid', 'Groups'),
-        'multi': fields.boolean('On multiple doc.', help="If set to true, the action will not be displayed on the right toolbar of a form view."),
+        'multi': fields.boolean('On Multiple Doc.', help="If set to true, the action will not be displayed on the right toolbar of a form view."),
         'attachment': fields.char('Save as Attachment Prefix', size=128, help='This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables.'),
         'attachment_use': fields.boolean('Reload from Attachment', help='If you check this, then the second time the user prints with same attachment name, it returns the previous report.'),
-        'auto': fields.boolean('Custom python parser'),
+        'auto': fields.boolean('Custom Python Parser'),
 
-        'header': fields.boolean('Add RML header', help="Add or not the corporate RML header"),
+        'header': fields.boolean('Add RML Header', help="Add or not the corporate RML header"),
 
-        'report_xsl': fields.char('XSL path', size=256),
-        'report_xml': fields.char('XML path', size=256, help=''),
+        'report_xsl': fields.char('XSL Path', size=256),
+        'report_xml': fields.char('XML Path', size=256, help=''),
 
         # Pending deprecation... to be replaced by report_file as this object will become the default report object (not so specific to RML anymore)
-        'report_rml': fields.char('Main report file path', size=256, help="The path to the main report file (depending on Report Type) or NULL if the content is in another data field"),
+        'report_rml': fields.char('Main Report File Path', size=256, help="The path to the main report file (depending on Report Type) or NULL if the content is in another data field"),
         # temporary related field as report_rml is pending deprecation - this field will replace report_rml after v6.0
-        'report_file': fields.related('report_rml', type="char", size=256, required=False, readonly=False, string='Report file', help="The path to the main report file (depending on Report Type) or NULL if the content is in another field", store=True),
+        'report_file': fields.related('report_rml', type="char", size=256, required=False, readonly=False, string='Report File', help="The path to the main report file (depending on Report Type) or NULL if the content is in another field", store=True),
 
-        'report_sxw': fields.function(_report_sxw, type='char', string='SXW path'),
-        'report_sxw_content_data': fields.binary('SXW content'),
-        'report_rml_content_data': fields.binary('RML content'),
+        'report_sxw': fields.function(_report_sxw, type='char', string='SXW Path'),
+        'report_sxw_content_data': fields.binary('SXW Content'),
+        'report_rml_content_data': fields.binary('RML Content'),
         'report_sxw_content': fields.function(_report_content, fnct_inv=_report_content_inv, type='binary', string='SXW content',),
-        'report_rml_content': fields.function(_report_content, fnct_inv=_report_content_inv, type='binary', string='RML content'),
+        'report_rml_content': fields.function(_report_content, fnct_inv=_report_content_inv, type='binary', string='RML Content'),
 
     }
     _defaults = {