[IMP] Improved the typos.

bzr revid: mdi@tinyerp.com-20120423102313-0mboqhctzoje5ize
This commit is contained in:
Divyesh Makwana (Open ERP) 2012-04-23 15:53:13 +05:30
parent 33345c9e05
commit 9fbdc7c526
5 changed files with 5 additions and 5 deletions

View File

@ -252,7 +252,7 @@
<button name="%(bank_account_update)d" string="Set Bank Accounts" type="action" icon="gtk-go-forward"/>
<newline/>
<label string="" colspan="2"/>
<button name="%(preview_report)d" string="Preview Header" type="action" icon="gtk-print"/>
<button name="%(preview_report)d" string="Preview Header/Footer" type="action" icon="gtk-print"/>
</group>
</page>
<page string="Header/Footer" groups="base.group_extended">

View File

@ -66,7 +66,7 @@ class res_currency(osv.osv):
'company_id':fields.many2one('res.company', 'Company'),
'date': fields.date('Date'),
'base': fields.boolean('Base'),
'position': fields.selection([('after','After Amount'),('before','Before Amount')], 'Symbol position', help="Determines where the currency symbol should be placed after or before the amount.")
'position': fields.selection([('after','After Amount'),('before','Before Amount')], 'Symbol Position', help="Determines where the currency symbol should be placed after or before the amount.")
}
_defaults = {
'active': lambda *a: 1,

View File

@ -58,7 +58,7 @@
</group>
<group col="2" colspan="2">
<separator string="Miscelleanous" colspan="2"/>
<separator string="Miscellaneous" colspan="2"/>
<field name="base"/>
<field name="active" select="1"/>
</group>

View File

@ -103,7 +103,7 @@ class res_partner_title(osv.osv):
_name = 'res.partner.title'
_columns = {
'name': fields.char('Title', required=True, size=46, translate=True),
'shortcut': fields.char('Shortcut', required=True, size=16, translate=True),
'shortcut': fields.char('Abbreviation', required=True, size=16, translate=True),
'domain': fields.selection([('partner','Partner'),('contact','Contact')], 'Domain', required=True, size=24)
}
_order = 'name'

View File

@ -23,7 +23,7 @@
#.apidoc title: Utilities: tools.misc
"""
Miscelleanous tools used by OpenERP.
Miscellaneous tools used by OpenERP.
"""
from functools import wraps