diff --git a/addons/account_payment/account_payment.py b/addons/account_payment/account_payment.py index f3259f846cc..8437622e93e 100644 --- a/addons/account_payment/account_payment.py +++ b/addons/account_payment/account_payment.py @@ -328,7 +328,7 @@ class payment_line(osv.osv): required=True, help='Payment amount in the partner currency'), 'currency': fields.many2one('res.currency','Partner Currency', required=True), 'company_currency': fields.many2one('res.currency', 'Company Currency', readonly=True), - 'bank_id': fields.many2one('res.partner.bank', 'Destination Bank account'), + 'bank_id': fields.many2one('res.partner.bank', 'Destination Bank Account'), 'order_id': fields.many2one('payment.order', 'Order', required=True, ondelete='cascade', select=True), 'partner_id': fields.many2one('res.partner', string="Partner", required=True, help='The Ordering Customer'), diff --git a/addons/hr_attendance/hr_attendance.py b/addons/hr_attendance/hr_attendance.py index 7699e7468d9..8c5648a1040 100644 --- a/addons/hr_attendance/hr_attendance.py +++ b/addons/hr_attendance/hr_attendance.py @@ -29,7 +29,7 @@ class hr_action_reason(osv.osv): _description = "Action Reason" _columns = { 'name': fields.char('Reason', size=64, required=True, help='Specifies the reason for Signing In/Signing Out.'), - 'action_type': fields.selection([('sign_in', 'Sign in'), ('sign_out', 'Sign out')], "Action's type"), + 'action_type': fields.selection([('sign_in', 'Sign in'), ('sign_out', 'Sign out')], "Action Type"), } _defaults = { 'action_type': 'sign_in', @@ -137,7 +137,7 @@ class hr_employee(osv.osv): res = {'action': type, 'employee_id': emp['id']} if dt: - res['name'] = dt + res['name'] = dt id = obj_attendance.create(cr, uid, res, context=context) if type != 'action': diff --git a/addons/point_of_sale/point_of_sale.py b/addons/point_of_sale/point_of_sale.py index a2123cb287c..4426eaf9999 100644 --- a/addons/point_of_sale/point_of_sale.py +++ b/addons/point_of_sale/point_of_sale.py @@ -267,7 +267,7 @@ class pos_order(osv.osv): 'lines': fields.one2many('pos.order.line', 'order_id', 'Order Lines', states={'draft': [('readonly', False)]}, readonly=True), 'price_type': fields.selection([ ('tax_excluded','Tax excluded')], - 'Price method', required=True), + 'Price Method', required=True), 'statement_ids': fields.one2many('account.bank.statement.line', 'pos_statement_id', 'Payments', states={'draft': [('readonly', False)]}, readonly=True), 'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', required=True, states={'draft': [('readonly', False)]}, readonly=True), 'partner_id': fields.many2one('res.partner', 'Customer', change_default=True, select=1, states={'draft': [('readonly', False)], 'paid': [('readonly', False)]}),