From 1121f929e307c7e4808f921df012ed3040b0b01b Mon Sep 17 00:00:00 2001 From: "ARA(OpenERP)" <> Date: Sat, 14 Aug 2010 17:42:31 +0530 Subject: [PATCH] typo bzr revid: mra@mra-laptop-20100814121231-xl63g5ao5gm2cvix --- addons/account/company.py | 2 +- .../account_analytic_cost_ledger_for_journal_report_view.xml | 2 +- addons/account/report/account_general_ledger.py | 4 ++-- .../account/wizard/account_compare_account_balance_report.py | 2 +- addons/account/wizard/account_report_common.py | 4 ++-- addons/account_anglo_saxon/__openerp__.py | 2 +- addons/account_followup/wizard/account_followup_print.py | 2 +- addons/account_payment/account_payment_view.xml | 2 +- addons/account_voucher/voucher_view.xml | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/addons/account/company.py b/addons/account/company.py index ec106616c0d..0fe56fca859 100644 --- a/addons/account/company.py +++ b/addons/account/company.py @@ -33,7 +33,7 @@ class res_company(osv.osv): method=True, view_load=True, domain="[('type', '=', 'payable')]", - help="This Account is used for trasfering Profit/Loss(If It is Profit : Amount will be added, Loss : Amount will be duducted.), Which is calculated from Profilt & Loss Report"), + help="This Account is used for transferring Profit/Loss(If It is Profit : Amount will be added, Loss : Amount will be deducted.), Which is calculated from Profit & Loss Report"), } _defaults = { diff --git a/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml b/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml index 204bb7c8de8..82796a75b4f 100644 --- a/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml +++ b/addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml @@ -9,7 +9,7 @@
- + diff --git a/addons/account/report/account_general_ledger.py b/addons/account/report/account_general_ledger.py index a92c1ba7f51..2c4bad0938c 100644 --- a/addons/account/report/account_general_ledger.py +++ b/addons/account/report/account_general_ledger.py @@ -5,10 +5,10 @@ # Copyright (c) 2006-2010 OpenERP S.A # # WARNING: This program as such is intended to be used by professional -# programmers who take the whole responsability of assessing all potential +# programmers who take the whole responsibility of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial -# garantees and support are strongly adviced to contract a Free Software +# guarantees and support are strongly advised to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or diff --git a/addons/account/wizard/account_compare_account_balance_report.py b/addons/account/wizard/account_compare_account_balance_report.py index 629e1ae798e..5378cd2569b 100644 --- a/addons/account/wizard/account_compare_account_balance_report.py +++ b/addons/account/wizard/account_compare_account_balance_report.py @@ -32,7 +32,7 @@ class account_compare_account_balance_report(osv.osv_memory): _description = 'Account Balance Report' _columns = { 'fiscalyear': fields.many2many('account.fiscalyear', 'account_fiscalyear_rel','account_id','fiscalyear_id','Fiscal year', help='Keep empty for all open fiscal year'), - 'select_account': fields.many2one('account.account','Select Reference Account(for % comparision)',help='Keep empty for comparision to its parent'), + 'select_account': fields.many2one('account.account','Select Reference Account(for % comparision)',help='Keep empty for comparison to its parent'), 'account_choice': fields.selection([('all','All accounts'), ('bal_zero','With balance is not equal to 0'), ('moves','With movements')],'Show Accounts'), diff --git a/addons/account/wizard/account_report_common.py b/addons/account/wizard/account_report_common.py index 5189669f872..46f72e04332 100644 --- a/addons/account/wizard/account_report_common.py +++ b/addons/account/wizard/account_report_common.py @@ -34,7 +34,7 @@ class account_common_report(osv.osv_memory): _columns = { 'chart_account_id': fields.many2one('account.account', 'Chart of account', help='Select Charts of Accounts', required=True, domain = [('parent_id','=',False)]), 'fiscalyear_id': fields.many2one('account.fiscalyear', 'Fiscal year', help='Keep empty for all open fiscal year'), - 'filter': fields.selection([('filter_no', 'No Filters'), ('filter_date', 'Date'), ('filter_period', 'Periods')], "Filter by:", required=True), + 'filter': fields.selection([('filter_no', 'No Filters'), ('filter_date', 'Date'), ('filter_period', 'Periods')], "Filter by", required=True), 'period_from': fields.many2one('account.period', 'Start period'), 'period_to': fields.many2one('account.period', 'End period'), 'journal_ids': fields.many2many('account.journal', 'account_common_journal_rel', 'account_id', 'journal_id', 'Journals', required=True), @@ -156,4 +156,4 @@ class account_common_report(osv.osv_memory): account_common_report() -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_anglo_saxon/__openerp__.py b/addons/account_anglo_saxon/__openerp__.py index 035fb47f949..6429df21062 100644 --- a/addons/account_anglo_saxon/__openerp__.py +++ b/addons/account_anglo_saxon/__openerp__.py @@ -29,7 +29,7 @@ Anglo-Saxons accounting does take the cost when sales invoice is created, Continental accounting will take the cost at the moment the goods are shipped. This module will add this functionality by using a interim account, to store the value of shipped goods and will contra book this interim account when the invoice is created to transfer this amount to the debtor or creditor account. - Secondly, price differences between actual purchase price and fixed product standard price are booked on a seperate account""", + Secondly, price differences between actual purchase price and fixed product standard price are booked on a separate account""", "depends" : ["product", "purchase"], "category" : "Generic Modules/Inventory Control", "init_xml" : [], diff --git a/addons/account_followup/wizard/account_followup_print.py b/addons/account_followup/wizard/account_followup_print.py index c3fd73370eb..9ff5bde8c1b 100644 --- a/addons/account_followup/wizard/account_followup_print.py +++ b/addons/account_followup/wizard/account_followup_print.py @@ -76,7 +76,7 @@ class account_followup_print_all(osv.osv_memory): 'partner_ids': fields.many2many('account_followup.stat', 'partner_stat_rel', 'followup_id', 'stat_id', 'Partners', required=True), 'email_conf': fields.boolean('Send email confirmation'), 'email_subject': fields.char('Email Subject', size=64), - 'partner_lang': fields.boolean('Send Email in Partner Language', help='Do not change message text, if you want to send email in partner language, or configre from company'), + 'partner_lang': fields.boolean('Send Email in Partner Language', help='Do not change message text, if you want to send email in partner language, or configure from company'), 'email_body': fields.text('Email body'), 'summary': fields.text('Summary', required=True, readonly=True) } diff --git a/addons/account_payment/account_payment_view.xml b/addons/account_payment/account_payment_view.xml index 1eaec699b95..52bad6012bf 100644 --- a/addons/account_payment/account_payment_view.xml +++ b/addons/account_payment/account_payment_view.xml @@ -124,7 +124,7 @@ - + diff --git a/addons/account_voucher/voucher_view.xml b/addons/account_voucher/voucher_view.xml index 44aba92934c..3e76e2dc927 100644 --- a/addons/account_voucher/voucher_view.xml +++ b/addons/account_voucher/voucher_view.xml @@ -52,7 +52,7 @@ - +