From 98574dde32299c8fbb506125ee3331d91b600012 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Tue, 30 Dec 2008 19:16:52 +0530 Subject: [PATCH 1/3] Added __terp__.py test on base_module_quality,bugfixed base_vat bzr revid: jvo@tinyerp.com-20081230134652-m5fjzebjmt3x7zfr --- addons/base_module_quality/base_module_quality.py | 3 +++ addons/base_module_quality/pylint_test/pylint_test.py | 2 +- addons/base_module_quality/speed_test/speed_test.py | 4 ++-- addons/base_vat/__terp__.py | 2 +- addons/base_vat/base_vat_data.xml | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/addons/base_module_quality/base_module_quality.py b/addons/base_module_quality/base_module_quality.py index fa83381c397..30b40de1a87 100644 --- a/addons/base_module_quality/base_module_quality.py +++ b/addons/base_module_quality/base_module_quality.py @@ -136,6 +136,9 @@ class abstract_quality_check(object): detail += ('\n|-\n| %s \n| %s \n| %s \n| %s \n| %s \n| %s ') % (data[0], data[1], data[2], data[3], data[4], data[5]) res_format['detail'] = detail + '\n|}\n' res_format['summary'] = data_list[0] + elif test=='terp': + res_format['summary'] = data_list[0] + res_format['detail'] = data_list[1] return res_format def add_quatation(self, x, y): diff --git a/addons/base_module_quality/pylint_test/pylint_test.py b/addons/base_module_quality/pylint_test/pylint_test.py index 2620fa3e9cc..c25b884d8e9 100644 --- a/addons/base_module_quality/pylint_test/pylint_test.py +++ b/addons/base_module_quality/pylint_test/pylint_test.py @@ -81,7 +81,7 @@ class quality_test(base_module_quality.abstract_quality_check): summary =""" ===Pylint Test===: -This test checks if the module satisfy the current coding standard used by OpenERP. +This test checks if the module satisfies the current coding standard used by OpenERP. """ #+ "Score: " + str(self.score) + "/10\n" else: diff --git a/addons/base_module_quality/speed_test/speed_test.py b/addons/base_module_quality/speed_test/speed_test.py index 4e6fb43a2b1..7db0d572624 100644 --- a/addons/base_module_quality/speed_test/speed_test.py +++ b/addons/base_module_quality/speed_test/speed_test.py @@ -64,8 +64,8 @@ class quality_test(base_module_quality.abstract_quality_check): if size: c1 = cr.count - pool.get(obj).read(cr, uid, ids[0]) - pool.get(obj).read(cr, uid, ids[0]) + pool.get(obj).read(cr, uid, [ids[0]]) + pool.get(obj).read(cr, uid, [ids[0]]) code_base_complexity = cr.count - c1 pool.get(obj).read(cr, uid, ids[:size/2]) diff --git a/addons/base_vat/__terp__.py b/addons/base_vat/__terp__.py index dd252ecd01d..5da21631075 100644 --- a/addons/base_vat/__terp__.py +++ b/addons/base_vat/__terp__.py @@ -25,7 +25,7 @@ "version" : "1.0", "author" : "Tiny", "category" : "Generic Modules/Base", - "depends" : ["base"], + "depends" : ["base","account"], "update_xml" : ["base_vat_data.xml"], "active": False, "installable": True diff --git a/addons/base_vat/base_vat_data.xml b/addons/base_vat/base_vat_data.xml index 9d900c4adaf..7f426a313ac 100644 --- a/addons/base_vat/base_vat_data.xml +++ b/addons/base_vat/base_vat_data.xml @@ -5,7 +5,7 @@ res.partner.vat.inherit res.partner - + From 6037a8c0bd7fa49154f09faa67b443264c43267c Mon Sep 17 00:00:00 2001 From: "Harry (Open ERP)" Date: Tue, 30 Dec 2008 19:26:38 +0530 Subject: [PATCH 2/3] fixed small bug in DMS bzr revid: hmo@tinyerp.com-20081230135638-heoy1723boagq3nq --- addons/document/document.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/document/document.py b/addons/document/document.py index 75cbdeb2797..3d0b0176dce 100644 --- a/addons/document/document.py +++ b/addons/document/document.py @@ -583,6 +583,9 @@ class document_file(osv.osv): default.update({'name': name+ " (copy)"}) return super(document_file,self).copy(cr,uid,id,default,context) def write(self, cr, uid, ids, vals, context=None): + res=self.search(cr,uid,[('id','in',ids)]) + if not len(res): + return False if not self._check_duplication(cr,uid,vals,ids,'write'): raise except_orm('ValidateError', 'File name must be unique!') result = super(document_file,self).write(cr,uid,ids,vals,context=context) From be76499caf5402c8bbce1e5a77e69aa3d79c0fdd Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 30 Dec 2008 15:19:05 +0100 Subject: [PATCH 3/3] [IMP] update pot files bzr revid: christophe@cobalt-20081230141905-l8danrifrrgutgmq --- addons/account/i18n/account.pot | 98 ++++++++----- .../i18n/account_analytic_analysis.pot | 4 +- .../i18n/account_analytic_default.pot | 4 +- .../i18n/account_analytic_plans.pot | 4 +- .../account_balance/i18n/account_balance.pot | 4 +- addons/account_budget/i18n/account_budget.pot | 4 +- .../i18n/account_date_check.pot | 4 +- .../i18n/account_followup.pot | 24 +-- .../i18n/account_invoice_layout.pot | 24 +-- .../account_payment/i18n/account_payment.pot | 64 ++++---- addons/account_report/i18n/account_report.pot | 4 +- .../i18n/account_reporting.pot | 14 +- .../i18n/account_tax_include.pot | 4 +- .../account_voucher/i18n/account_voucher.pot | 14 +- .../i18n/analytic_journal_billing_rate.pot | 4 +- .../i18n/analytic_user_function.pot | 4 +- addons/auction/i18n/auction.pot | 4 +- addons/audittrail/i18n/audittrail.pot | 4 +- addons/base_contact/i18n/base_contact.pot | 28 ++-- addons/base_iban/i18n/base_iban.pot | 4 +- .../i18n/base_module_merge.pot | 4 +- .../i18n/base_module_publish.pot | 6 +- .../i18n/base_module_quality.pot | 67 +++++++-- .../i18n/base_module_record.pot | 4 +- .../i18n/base_report_creator.pot | 14 +- .../i18n/base_report_designer.pot | 4 +- addons/base_setup/i18n/base_setup.pot | 24 +-- addons/base_vat/i18n/base_vat.pot | 4 +- addons/board/i18n/board.pot | 4 +- addons/board_account/i18n/board_account.pot | 4 +- .../i18n/board_association.pot | 4 +- addons/board_auction/i18n/board_auction.pot | 4 +- .../i18n/board_crm_configuration.pot | 9 +- addons/board_document/i18n/board_document.pot | 4 +- .../i18n/board_manufacturing.pot | 4 +- addons/board_project/i18n/board_project.pot | 4 +- addons/board_sale/i18n/board_sale.pot | 4 +- addons/crm/i18n/crm.pot | 14 +- .../i18n/crm_configuration.pot | 14 +- addons/crm_profiling/i18n/crm_profiling.pot | 4 +- addons/delivery/i18n/delivery.pot | 4 +- addons/document/i18n/document.pot | 4 +- addons/document_ics/i18n/document_ics.pot | 4 +- addons/event/i18n/event.pot | 4 +- addons/event_project/i18n/event_project.pot | 4 +- addons/google_map/i18n/google_map.pot | 4 +- addons/hr/i18n/hr.pot | 40 ++--- addons/hr_attendance/i18n/hr_attendance.pot | 12 +- addons/hr_contract/i18n/hr_contract.pot | 4 +- addons/hr_expense/i18n/hr_expense.pot | 4 +- addons/hr_holidays/i18n/hr_holidays.pot | 4 +- addons/hr_timesheet/i18n/hr_timesheet.pot | 4 +- .../i18n/hr_timesheet_invoice.pot | 6 +- .../i18n/hr_timesheet_project.pot | 24 +-- .../i18n/hr_timesheet_sheet.pot | 34 ++--- addons/idea/i18n/idea.pot | 4 +- addons/l10n_be/i18n/l10n_be.pot | 4 +- .../i18n/l10n_chart_uk_minimal.pot | 4 +- addons/l10n_fr/i18n/l10n_fr.pot | 137 ++++++++++++++++-- addons/l10n_lu/i18n/l10n_lu.pot | 4 +- addons/membership/i18n/membership.pot | 4 +- addons/mrp/i18n/mrp.pot | 114 ++++++++------- addons/mrp_operations/i18n/mrp_operations.pot | 105 ++++++++++++-- addons/mrp_repair/i18n/mrp_repair.pot | 4 +- addons/mrp_subproduct/i18n/mrp_subproduct.pot | 4 +- addons/point_of_sale/i18n/point_of_sale.pot | 4 +- addons/process/i18n/process.pot | 11 +- addons/product/i18n/product.pot | 60 ++++---- addons/product_margin/i18n/product_margin.pot | 4 +- .../i18n/profile_accounting.pot | 4 +- .../i18n/profile_association.pot | 4 +- .../i18n/profile_manufacturing.pot | 4 +- .../profile_service/i18n/profile_service.pot | 4 +- addons/project/i18n/project.pot | 14 +- addons/project_gtd/i18n/project_gtd.pot | 4 +- addons/project_mrp/i18n/project_mrp.pot | 35 ++--- .../i18n/project_timesheet.pot | 4 +- addons/purchase/i18n/purchase.pot | 52 ++++++- .../i18n/purchase_analytic_plans.pot | 4 +- addons/report_account/i18n/report_account.pot | 4 +- .../report_analytic/i18n/report_analytic.pot | 4 +- .../i18n/report_analytic_line.pot | 4 +- .../i18n/report_analytic_planning.pot | 4 +- addons/report_crm/i18n/report_crm.pot | 4 +- .../report_document/i18n/report_document.pot | 4 +- .../i18n/report_intrastat.pot | 4 +- addons/report_mrp/i18n/report_mrp.pot | 4 +- addons/report_project/i18n/report_project.pot | 4 +- .../report_purchase/i18n/report_purchase.pot | 4 +- addons/report_sale/i18n/report_sale.pot | 4 +- .../i18n/report_timesheet.pot | 4 +- addons/sale/i18n/sale.pot | 18 +-- .../i18n/sale_analytic_plans.pot | 4 +- addons/sale_crm/i18n/sale_crm.pot | 4 +- addons/sale_journal/i18n/sale_journal.pot | 4 +- addons/scrum/i18n/scrum.pot | 4 +- addons/stock/i18n/stock.pot | 56 +------ addons/stock_location/i18n/stock_location.pot | 4 +- .../i18n/stock_no_autopicking.pot | 4 +- addons/subscription/i18n/subscription.pot | 4 +- addons/warning/i18n/warning.pot | 4 +- addons/wiki/i18n/wiki.pot | 4 +- 102 files changed, 837 insertions(+), 587 deletions(-) diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot index eb77dd37ef9..ab26c7dcdb8 100644 --- a/addons/account/i18n/account.pot +++ b/addons/account/i18n/account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -310,6 +310,12 @@ msgstr "" msgid "Select period" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "Please verify the price of the invoice !\nThe real total does not match the computed total." +msgstr "" + #. module: account #: field:account.invoice.line,origin:0 #: field:account.invoice,origin:0 @@ -767,6 +773,11 @@ msgstr "" msgid "account.move.line" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_supplieranalyticcost0 +msgid "Analytic Invoice" +msgstr "" + #. module: account #: field:account.journal.column,field:0 msgid "Field Name" @@ -1311,11 +1322,6 @@ msgstr "" msgid "Value" msgstr "" -#. module: account -#: model:process.node,name:account.process_node_invoiceinvoice0 -msgid "Create Invoice" -msgstr "" - #. module: account #: wizard_field:account.invoice.pay,addendum,writeoff_acc_id:0 #: wizard_field:account.move.line.reconcile,addendum,writeoff_acc_id:0 @@ -1554,9 +1560,8 @@ msgid "Open for reconciliation" msgstr "" #. module: account -#: code:addons/account/account.py:0 -#, python-format -msgid "Purchase Journal" +#: model:process.node,name:account.process_node_invoiceinvoice0 +msgid "Create Invoice" msgstr "" #. module: account @@ -1677,12 +1682,12 @@ msgid "Unreconciliation" msgstr "" #. module: account +#: code:addons/account/account.py:0 #: code:addons/account/invoice.py:0 #: code:addons/account/account_move_line.py:0 -#: code:addons/account/account.py:0 +#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #: code:addons/account/wizard/wizard_journal.py:0 -#: code:addons/account/wizard/wizard_fiscalyear_close.py:0 #, python-format msgid "UserError" msgstr "" @@ -2498,6 +2503,7 @@ msgstr "" #. module: account #: code:addons/account/invoice.py:0 +#: code:addons/account/account_move_line.py:0 #, python-format msgid "No Analytic Journal !" msgstr "" @@ -2572,6 +2578,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_analyticinvoice0 +#: model:process.transition,note:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts, Create invoice." msgstr "" @@ -2690,6 +2697,7 @@ msgstr "" #: rml:account.analytic.account.journal:0 #: model:ir.ui.menu,name:account.next_id_40 #: model:process.node,name:account.process_node_analytic0 +#: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic" msgstr "" @@ -2701,6 +2709,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_analytic0 +#: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to reinvoice purchases, timesheets, ..." msgstr "" @@ -2776,6 +2785,12 @@ msgstr "" msgid "Invoice Number" msgstr "" +#. module: account +#: code:addons/account/invoice.py:0 +#, python-format +msgid "You have to define an analytic journal of type '%s' !" +msgstr "" + #. module: account #: wizard_button:populate_statement_from_inv,customer,finish:0 #: wizard_button:populate_statement_from_inv,supplier,finish:0 @@ -2863,6 +2878,11 @@ msgstr "" msgid "Total credit" msgstr "" +#. module: account +#: help:account.journal,centralisation:0 +msgid "Check this box if you want that each entry doesn't create a counterpart but share the same counterpart for each entry of this journal. This is used in fiscal year closing." +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Best regards." @@ -3350,6 +3370,11 @@ msgstr "" msgid "Total debit" msgstr "" +#. module: account +#: help:account.journal,group_invoice_lines:0 +msgid "If this box is cheked, the system will try to group the accouting lines when generating them from invoices." +msgstr "" + #. module: account #: code:addons/account/wizard/wizard_bank_reconcile.py:0 #, python-format @@ -3409,11 +3434,6 @@ msgstr "" msgid "If a default tax if given in the partner it only override taxes from account (or product) of the same group." msgstr "" -#. module: account -#: help:account.model.line,sequence:0 -msgid "The sequence field is used to order the resources from the lowest sequences to the higher ones" -msgstr "" - #. module: account #: view:account.bank.statement:0 msgid "Real Entries" @@ -3459,8 +3479,8 @@ msgid "Date of the day" msgstr "" #. module: account -#: help:account.journal,centralisation:0 -msgid "Check this box if you want that each entry doesn't create a counterpart but share the same counterpart for each entry of this journal." +#: help:account.model.line,sequence:0 +msgid "The sequence field is used to order the resources from the lowest sequences to the higher ones" msgstr "" #. module: account @@ -3508,10 +3528,10 @@ msgstr "" #. module: account #: code:addons/account/account_bank_statement.py:0 #: code:addons/account/account_analytic_line.py:0 -#: code:addons/account/account_move_line.py:0 #: code:addons/account/account.py:0 -#: code:addons/account/wizard/wizard_pay_invoice.py:0 +#: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_refund.py:0 +#: code:addons/account/wizard/wizard_pay_invoice.py:0 #, python-format msgid "Error !" msgstr "" @@ -3717,8 +3737,8 @@ msgid "Invoice Date" msgstr "" #. module: account -#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #: code:addons/account/wizard/wizard_fiscalyear_close.py:0 +#: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #, python-format msgid "The journal must have centralised counterpart" msgstr "" @@ -3805,6 +3825,11 @@ msgstr "" msgid "Balance:" msgstr "" +#. module: account +#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 +msgid "Confirm statement from draft" +msgstr "" + #. module: account #: rml:account.overdue:0 msgid "Customer account statement" @@ -3865,6 +3890,12 @@ msgstr "" msgid "Active" msgstr "" +#. module: account +#: code:addons/account/account.py:0 +#, python-format +msgid "Purchase Journal" +msgstr "" + #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Import from your bank statements" @@ -4536,11 +4567,6 @@ msgstr "" msgid "account.config.wizard" msgstr "" -#. module: account -#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 -msgid "Confirm statement from draft" -msgstr "" - #. module: account #: wizard_field:account.fiscalyear.close,init,report_new:0 msgid "Create new entries" @@ -4760,9 +4786,8 @@ msgstr "" #. module: account #: code:addons/account/account_move_line.py:0 -#: code:addons/account/wizard/wizard_validate_account_move.py:0 #, python-format -msgid "Warning" +msgid "You have to define an analytic journal on the '%s' journal!" msgstr "" #. module: account @@ -4943,6 +4968,13 @@ msgstr "" msgid "Have a number and entries are generated" msgstr "" +#. module: account +#: code:addons/account/account_move_line.py:0 +#: code:addons/account/wizard/wizard_validate_account_move.py:0 +#, python-format +msgid "Warning" +msgstr "" + #. module: account #: rml:account.analytic.account.analytic.check:0 msgid "Analytic Check -" @@ -4954,9 +4986,8 @@ msgid "Account Balance -" msgstr "" #. module: account -#: code:addons/account/invoice.py:0 -#, python-format -msgid "Please verify the price of the invoice !\nThe real total does not match the computed total." +#: field:account.journal,group_invoice_lines:0 +msgid "Group invoice lines" msgstr "" #. module: account @@ -5296,7 +5327,6 @@ msgstr "" #. module: account #: selection:account.bank.statement,state:0 #: view:account.bank.statement:0 -#: model:process.transition.action,name:account.process_transition_action_draftconfirmstatement0 msgid "Confirm" msgstr "" @@ -5386,8 +5416,8 @@ msgid "Bad account !" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:0 #: code:addons/account/account.py:0 +#: code:addons/account/account_move_line.py:0 #: code:addons/account/wizard/wizard_open_closed_fiscalyear.py:0 #, python-format msgid "Error" diff --git a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot index 0ed085f01b7..a9034786de2 100644 --- a/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot +++ b/addons/account_analytic_analysis/i18n/account_analytic_analysis.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_default/i18n/account_analytic_default.pot b/addons/account_analytic_default/i18n/account_analytic_default.pot index 4c5bb455203..ff5bac68232 100644 --- a/addons/account_analytic_default/i18n/account_analytic_default.pot +++ b/addons/account_analytic_default/i18n/account_analytic_default.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_analytic_plans/i18n/account_analytic_plans.pot b/addons/account_analytic_plans/i18n/account_analytic_plans.pot index 4339722eba6..d41083c003c 100644 --- a/addons/account_analytic_plans/i18n/account_analytic_plans.pot +++ b/addons/account_analytic_plans/i18n/account_analytic_plans.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_balance/i18n/account_balance.pot b/addons/account_balance/i18n/account_balance.pot index ff2e85358a8..ed2564a66ab 100644 --- a/addons/account_balance/i18n/account_balance.pot +++ b/addons/account_balance/i18n/account_balance.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_budget/i18n/account_budget.pot b/addons/account_budget/i18n/account_budget.pot index d960b2248f1..471b572ea6d 100644 --- a/addons/account_budget/i18n/account_budget.pot +++ b/addons/account_budget/i18n/account_budget.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_date_check/i18n/account_date_check.pot b/addons/account_date_check/i18n/account_date_check.pot index 887fc1a7aac..373eb6ce0a5 100644 --- a/addons/account_date_check/i18n/account_date_check.pot +++ b/addons/account_date_check/i18n/account_date_check.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_followup/i18n/account_followup.pot b/addons/account_followup/i18n/account_followup.pot index ea44721df04..2f7042d064d 100644 --- a/addons/account_followup/i18n/account_followup.pot +++ b/addons/account_followup/i18n/account_followup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -31,11 +31,6 @@ msgstr "" msgid "All payable entries" msgstr "" -#. module: account_followup -#: view:account.move.line:0 -msgid "Partner entries" -msgstr "" - #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Date:" @@ -406,6 +401,11 @@ msgstr "" msgid "Total debit" msgstr "" +#. module: account_followup +#: view:account.move.line:0 +msgid "Partner entries" +msgstr "" + #. module: account_followup #: rml:account_followup.followup.print:0 msgid "Maturity date" @@ -442,13 +442,13 @@ msgstr "" msgid "Balance" msgstr "" -#. module: account_followup -#: field:account.move.line,followup_line_id:0 -msgid "Follow-up Level" -msgstr "" - #. module: account_followup #: field:account_followup.followup,company_id:0 msgid "Company" msgstr "" +#. module: account_followup +#: field:account.move.line,followup_line_id:0 +msgid "Follow-up Level" +msgstr "" + diff --git a/addons/account_invoice_layout/i18n/account_invoice_layout.pot b/addons/account_invoice_layout/i18n/account_invoice_layout.pot index 1f9d3e02a44..a5e165522ad 100644 --- a/addons/account_invoice_layout/i18n/account_invoice_layout.pot +++ b/addons/account_invoice_layout/i18n/account_invoice_layout.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,6 +36,11 @@ msgstr "" msgid "Title" msgstr "" +#. module: account_invoice_layout +#: model:ir.actions.wizard,name:account_invoice_layout.wizard_notify_message +msgid "Invoices with Layout and Message" +msgstr "" + #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Disc. (%)" @@ -52,8 +57,8 @@ msgid "Supplier Invoice" msgstr "" #. module: account_invoice_layout -#: model:ir.actions.wizard,name:account_invoice_layout.wizard_notify_message -msgid "Invoice + Message" +#: help:notify.message,msg:0 +msgid "This notification will appear at the bottom of the Invoices when printed." msgstr "" #. module: account_invoice_layout @@ -163,7 +168,6 @@ msgstr "" #. module: account_invoice_layout #: rml:account.invoice.layout:0 -#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1 msgid "Invoice" msgstr "" @@ -202,6 +206,11 @@ msgstr "" msgid "Total (excl. taxes):" msgstr "" +#. module: account_invoice_layout +#: model:ir.actions.report.xml,name:account_invoice_layout.account_invoices_1 +msgid "Invoices with Layout" +msgstr "" + #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "Draft Invoice" @@ -237,11 +246,6 @@ msgstr "" msgid "Tax" msgstr "" -#. module: account_invoice_layout -#: help:notify.message,msg:0 -msgid "This notification will appear at the bottom of the Invoices when printed." -msgstr "" - #. module: account_invoice_layout #: rml:account.invoice.layout:0 msgid "(incl. taxes):" diff --git a/addons/account_payment/i18n/account_payment.pot b/addons/account_payment/i18n/account_payment.pot index c13bf1078d8..7642800dc2a 100644 --- a/addons/account_payment/i18n/account_payment.pot +++ b/addons/account_payment/i18n/account_payment.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -59,6 +59,16 @@ msgid "The amount which should be paid at the current date\n" "minus the amount which is already in payment order" msgstr "" +#. module: account_payment +#: help:payment.line,date:0 +msgid "If no payment date is specified, the bank will treat this payment line directly" +msgstr "" + +#. module: account_payment +#: field:payment.order,date_prefered:0 +msgid "Preferred date" +msgstr "" + #. module: account_payment #: selection:payment.line,state:0 msgid "Free" @@ -85,13 +95,13 @@ msgid "_Add to payment order" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: view:payment.order:0 msgid "Amount" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 msgid "Execution date:" msgstr "" @@ -112,7 +122,7 @@ msgid "New Payment Order" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: field:payment.order,reference:0 msgid "Reference" msgstr "" @@ -128,8 +138,11 @@ msgid "Directly" msgstr "" #. module: account_payment -#: selection:payment.order,state:0 -msgid "Draft" +#: model:ir.actions.act_window,name:account_payment.action_payment_line_form +#: model:ir.model,name:account_payment.model_payment_line +#: view:payment.line:0 +#: view:payment.order:0 +msgid "Payment Line" msgstr "" #. module: account_payment @@ -178,6 +191,11 @@ msgstr "" msgid "Total debit" msgstr "" +#. module: account_payment +#: field:payment.line,ml_inv_ref:0 +msgid "Invoice Ref." +msgstr "" + #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" @@ -248,7 +266,7 @@ msgid "Communication Type" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: field:payment.line,partner_id:0 msgid "Partner" msgstr "" @@ -291,11 +309,8 @@ msgid "Draft payment order" msgstr "" #. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_payment_line_form -#: model:ir.model,name:account_payment.model_payment_line -#: view:payment.line:0 -#: view:payment.order:0 -msgid "Payment Line" +#: selection:payment.order,state:0 +msgid "Draft" msgstr "" #. module: account_payment @@ -335,12 +350,12 @@ msgid "Payment Lines" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 msgid "Date" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 msgid "Reference:" msgstr "" @@ -389,11 +404,6 @@ msgstr "" msgid "The Ordering Customer" msgstr "" -#. module: account_payment -#: field:payment.line,ml_inv_ref:0 -msgid "Invoice Ref" -msgstr "" - #. module: account_payment #: field:payment.type,code:0 msgid "Code" @@ -453,7 +463,7 @@ msgid "Pay" msgstr "" #. module: account_payment -#: model:ir.actions.report.xml,name:account_payment.payment_order +#: model:ir.actions.report.xml,name:account_payment.payment_order1 #: model:ir.model,name:account_payment.model_payment_order msgid "Payment Order" msgstr "" @@ -489,7 +499,7 @@ msgid "Cash Journal for the Payment Mode" msgstr "" #. module: account_payment -#: rml:payement.order:0 +#: rml:payment.order:0 #: field:payment.mode,bank_id:0 msgid "Bank account" msgstr "" @@ -504,11 +514,6 @@ msgstr "" msgid "Company Currency" msgstr "" -#. module: account_payment -#: help:payment.line,date:0 -msgid "If no payment date is specified, the bank will treat this payment line direclty" -msgstr "" - #. module: account_payment #: model:ir.ui.menu,name:account_payment.menu_main #: model:ir.ui.menu,name:account_payment.next_id_44 @@ -577,11 +582,6 @@ msgstr "" msgid "Select the Payment Type for the Payment Mode." msgstr "" -#. module: account_payment -#: field:payment.order,date_prefered:0 -msgid "Prefered date" -msgstr "" - #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_mode_form #: model:ir.model,name:account_payment.model_payment_mode diff --git a/addons/account_report/i18n/account_report.pot b/addons/account_report/i18n/account_report.pot index 708872b2686..e7808ad11c4 100644 --- a/addons/account_report/i18n/account_report.pot +++ b/addons/account_report/i18n/account_report.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_reporting/i18n/account_reporting.pot b/addons/account_reporting/i18n/account_reporting.pot index 6c5d7b5c39d..bbc92f487fa 100644 --- a/addons/account_reporting/i18n/account_reporting.pot +++ b/addons/account_reporting/i18n/account_reporting.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -66,11 +66,6 @@ msgstr "" msgid "Courier-BoldOblique" msgstr "" -#. module: account_reporting -#: model:ir.ui.menu,name:account_reporting.bs_report_action_form -msgid "Balance Sheet Rrport Form" -msgstr "" - #. module: account_reporting #: help:account.account.balancesheet.report,init,periods:0 msgid "All periods if empty" @@ -122,6 +117,11 @@ msgstr "" msgid "Notes" msgstr "" +#. module: account_reporting +#: model:ir.ui.menu,name:account_reporting.bs_report_action_form +msgid "Balance Sheet Report Form" +msgstr "" + #. module: account_reporting #: wizard_button:account.account.balancesheet.report,init,report:0 msgid "Print BalanceSheet" diff --git a/addons/account_tax_include/i18n/account_tax_include.pot b/addons/account_tax_include/i18n/account_tax_include.pot index ef60dfc5235..4ba30c82607 100644 --- a/addons/account_tax_include/i18n/account_tax_include.pot +++ b/addons/account_tax_include/i18n/account_tax_include.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_voucher/i18n/account_voucher.pot b/addons/account_voucher/i18n/account_voucher.pot index db5bb016134..d780f920b99 100644 --- a/addons/account_voucher/i18n/account_voucher.pot +++ b/addons/account_voucher/i18n/account_voucher.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -256,11 +256,6 @@ msgstr "" msgid "Name" msgstr "" -#. module: account_voucher -#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form -msgid "New Cash Receipt" -msgstr "" - #. module: account_voucher #: field:account.voucher,reference_type:0 msgid "Reference Type" @@ -315,6 +310,11 @@ msgstr "" msgid "Receiver's Signature" msgstr "" +#. module: account_voucher +#: model:ir.ui.menu,name:account_voucher.menu_action_view_cash_rec_voucher_form +msgid "New Cash Receipt" +msgstr "" + #. module: account_voucher #: model:ir.ui.menu,name:account_voucher.menu_action_view_bank_pay_voucher_form msgid "New Bank Payment" diff --git a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot index 6b44f0ac891..fd7de9c0809 100644 --- a/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot +++ b/addons/analytic_journal_billing_rate/i18n/analytic_journal_billing_rate.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/analytic_user_function/i18n/analytic_user_function.pot b/addons/analytic_user_function/i18n/analytic_user_function.pot index d1631b36632..d2391c2bf27 100644 --- a/addons/analytic_user_function/i18n/analytic_user_function.pot +++ b/addons/analytic_user_function/i18n/analytic_user_function.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/auction/i18n/auction.pot b/addons/auction/i18n/auction.pot index e3e5ff1f1f9..c5fe97661ae 100644 --- a/addons/auction/i18n/auction.pot +++ b/addons/auction/i18n/auction.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/audittrail/i18n/audittrail.pot b/addons/audittrail/i18n/audittrail.pot index 3dac7327bd6..815ed0acbc4 100644 --- a/addons/audittrail/i18n/audittrail.pot +++ b/addons/audittrail/i18n/audittrail.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_contact/i18n/base_contact.pot b/addons/base_contact/i18n/base_contact.pot index b178b5f66a2..03191cf5279 100644 --- a/addons/base_contact/i18n/base_contact.pot +++ b/addons/base_contact/i18n/base_contact.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -50,8 +50,8 @@ msgid "First Name" msgstr "" #. module: base_contact -#: field:res.partner.job,state:0 -msgid "State" +#: model:ir.model,name:base_contact.model_res_partner_job +msgid "Contact Partner Function" msgstr "" #. module: base_contact @@ -59,6 +59,11 @@ msgstr "" msgid "Contact to function" msgstr "" +#. module: base_contact +#: field:res.partner.job,function_id:0 +msgid "Partner Function" +msgstr "" + #. module: base_contact #: model:process.transition,note:base_contact.process_transition_partnertoaddress0 msgid "Define partners and their addresses." @@ -185,11 +190,6 @@ msgstr "" msgid "Extra Information" msgstr "" -#. module: base_contact -#: field:res.partner.job,function_id:0 -msgid "Job Title" -msgstr "" - #. module: base_contact #: field:res.partner.contact,job_ids:0 #: view:res.partner.contact:0 @@ -254,6 +254,11 @@ msgstr "" msgid "base_contact workflow" msgstr "" +#. module: base_contact +#: field:res.partner.job,state:0 +msgid "State" +msgstr "" + #. module: base_contact #: view:res.partner.contact:0 #: view:res.partner.job:0 @@ -270,11 +275,6 @@ msgstr "" msgid "General Information" msgstr "" -#. module: base_contact -#: model:ir.model,name:base_contact.model_res_partner_job -msgid "Contact Job Title" -msgstr "" - #. module: base_contact #: field:res.partner.job,name:0 msgid "Partner" diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 42b54557d58..15635f55aaa 100644 --- a/addons/base_iban/i18n/base_iban.pot +++ b/addons/base_iban/i18n/base_iban.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_merge/i18n/base_module_merge.pot b/addons/base_module_merge/i18n/base_module_merge.pot index f6f445db781..d0b5ce1874c 100644 --- a/addons/base_module_merge/i18n/base_module_merge.pot +++ b/addons/base_module_merge/i18n/base_module_merge.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_module_publish/i18n/base_module_publish.pot b/addons/base_module_publish/i18n/base_module_publish.pot index 5af9c863e57..c67a8351ae7 100644 --- a/addons/base_module_publish/i18n/base_module_publish.pot +++ b/addons/base_module_publish/i18n/base_module_publish.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -439,8 +439,8 @@ msgid "Vertical modules/Manufacturing industries" msgstr "" #. module: base_module_publish -#: code:addons/base_module_publish/wizard/base_module_publish.py:0 #: code:addons/base_module_publish/wizard/module_zip.py:0 +#: code:addons/base_module_publish/wizard/base_module_publish.py:0 #, python-format msgid "Error" msgstr "" diff --git a/addons/base_module_quality/i18n/base_module_quality.pot b/addons/base_module_quality/i18n/base_module_quality.pot index e4ff06141cc..14fe8e5490c 100644 --- a/addons/base_module_quality/i18n/base_module_quality.pot +++ b/addons/base_module_quality/i18n/base_module_quality.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -16,22 +16,59 @@ msgstr "" "Plural-Forms: \n" #. module: base_module_quality -#: model:ir.actions.wizard,name:base_module_quality.base_module_quality -msgid "Check the Quality of module" +#: field:quality.check.detail,general_info:0 +msgid "General Info" msgstr "" #. module: base_module_quality -#: wizard_button:base.module.quality,init,end:0 -msgid "Ok" -msgstr "" - -#. module: base_module_quality -#: wizard_view:base.module.quality,init:0 -msgid "Check quality" -msgstr "" - -#. module: base_module_quality -#: wizard_view:base.module.quality,init:0 +#: view:quality.check.detail:0 msgid "Summary" msgstr "" +#. module: base_module_quality +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: base_module_quality +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: base_module_quality +#: field:quality.check.detail,detail:0 +#: view:quality.check.detail:0 +msgid "Detail" +msgstr "" + +#. module: base_module_quality +#: field:wizard.quality.check,verbose_detail:0 +msgid "Verbose Detail" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_quality_check_detail +msgid "quality.check.detail" +msgstr "" + +#. module: base_module_quality +#: view:wizard.quality.check:0 +#: view:quality.check.detail:0 +msgid "Result" +msgstr "" + +#. module: base_module_quality +#: model:ir.model,name:base_module_quality.model_wizard_quality_check +msgid "wizard.quality.check" +msgstr "" + +#. module: base_module_quality +#: view:wizard.quality.check:0 +msgid "Verbose detail" +msgstr "" + +#. module: base_module_quality +#: field:quality.check.detail,quality_check:0 +msgid "Quality" +msgstr "" + diff --git a/addons/base_module_record/i18n/base_module_record.pot b/addons/base_module_record/i18n/base_module_record.pot index 86a4a4ee3b2..bd39c1b94ac 100644 --- a/addons/base_module_record/i18n/base_module_record.pot +++ b/addons/base_module_record/i18n/base_module_record.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_creator/i18n/base_report_creator.pot b/addons/base_report_creator/i18n/base_report_creator.pot index afbc2817ec4..6ccbc4c4eeb 100644 --- a/addons/base_report_creator/i18n/base_report_creator.pot +++ b/addons/base_report_creator/i18n/base_report_creator.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -242,11 +242,6 @@ msgstr "" msgid "Parent Menu" msgstr "" -#. module: base_report_creator -#: view:base_report_creator.report:0 -msgid "Fields" -msgstr "" - #. module: base_report_creator #: field:base_report_creator.report,type:0 msgid "Report Type" @@ -314,6 +309,11 @@ msgstr "" msgid "Graph Orientation" msgstr "" +#. module: base_report_creator +#: view:base_report_creator.report:0 +msgid "Fields" +msgstr "" + #. module: base_report_creator #: view:base_report_creator.report:0 msgid "Authorized Groups (empty for all)" diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index e02fa25267b..50b066159ad 100644 --- a/addons/base_report_designer/i18n/base_report_designer.pot +++ b/addons/base_report_designer/i18n/base_report_designer.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot index 6c38c7cc778..7bb897cb77c 100644 --- a/addons/base_setup/i18n/base_setup.pot +++ b/addons/base_setup/i18n/base_setup.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -1209,7 +1209,7 @@ msgstr "" #: selection:base_setup.base_setup,company,country_id:0 #: selection:base_setup.base_setup,update,country_id:0 #: selection:base_setup.base_setup,init,country_id:0 -msgid "Czech Republic" +msgid "Northern Mariana Islands" msgstr "" #. module: base_setup @@ -1872,10 +1872,10 @@ msgid "Neutral Zone" msgstr "" #. module: base_setup -#: selection:base_setup.base_setup,company,state_id:0 -#: selection:base_setup.base_setup,update,state_id:0 -#: selection:base_setup.base_setup,init,state_id:0 -msgid "Amapá" +#: selection:base_setup.base_setup,company,country_id:0 +#: selection:base_setup.base_setup,update,country_id:0 +#: selection:base_setup.base_setup,init,country_id:0 +msgid "Vanuatu" msgstr "" #. module: base_setup @@ -2395,10 +2395,10 @@ msgid "GBP" msgstr "" #. module: base_setup -#: selection:base_setup.base_setup,company,country_id:0 -#: selection:base_setup.base_setup,update,country_id:0 -#: selection:base_setup.base_setup,init,country_id:0 -msgid "Vanuatu" +#: selection:base_setup.base_setup,company,state_id:0 +#: selection:base_setup.base_setup,update,state_id:0 +#: selection:base_setup.base_setup,init,state_id:0 +msgid "Amapá" msgstr "" #. module: base_setup @@ -3608,7 +3608,7 @@ msgstr "" #: selection:base_setup.base_setup,company,country_id:0 #: selection:base_setup.base_setup,update,country_id:0 #: selection:base_setup.base_setup,init,country_id:0 -msgid "Northern Mariana Islands" +msgid "Czech Republic" msgstr "" #. module: base_setup diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index afcf558c6d4..3cc0a526378 100644 --- a/addons/base_vat/i18n/base_vat.pot +++ b/addons/base_vat/i18n/base_vat.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/board.pot b/addons/board/i18n/board.pot index c640ccaf8cd..d0ad466765a 100644 --- a/addons/board/i18n/board.pot +++ b/addons/board/i18n/board.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_account/i18n/board_account.pot b/addons/board_account/i18n/board_account.pot index a4ec9a71302..16488c44368 100644 --- a/addons/board_account/i18n/board_account.pot +++ b/addons/board_account/i18n/board_account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_association/i18n/board_association.pot b/addons/board_association/i18n/board_association.pot index 33817283f8b..07f43a3eb79 100644 --- a/addons/board_association/i18n/board_association.pot +++ b/addons/board_association/i18n/board_association.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_auction/i18n/board_auction.pot b/addons/board_auction/i18n/board_auction.pot index 8f1cdf3ca49..99b8e49288b 100644 --- a/addons/board_auction/i18n/board_auction.pot +++ b/addons/board_auction/i18n/board_auction.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_crm_configuration/i18n/board_crm_configuration.pot b/addons/board_crm_configuration/i18n/board_crm_configuration.pot index fbb0b397fa0..04b0a9267c5 100644 --- a/addons/board_crm_configuration/i18n/board_crm_configuration.pot +++ b/addons/board_crm_configuration/i18n/board_crm_configuration.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -106,8 +106,3 @@ msgstr "" msgid "CRM - Statistics Dashboard" msgstr "" -#. module: board_crm_configuration -#: view:board.board:0 -msgid "My Jobs Requests" -msgstr "" - diff --git a/addons/board_document/i18n/board_document.pot b/addons/board_document/i18n/board_document.pot index e42b363d379..ec282db5f8a 100644 --- a/addons/board_document/i18n/board_document.pot +++ b/addons/board_document/i18n/board_document.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_manufacturing/i18n/board_manufacturing.pot b/addons/board_manufacturing/i18n/board_manufacturing.pot index 339e19e0422..6cf876e152f 100644 --- a/addons/board_manufacturing/i18n/board_manufacturing.pot +++ b/addons/board_manufacturing/i18n/board_manufacturing.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_project/i18n/board_project.pot b/addons/board_project/i18n/board_project.pot index 8edfbab385a..6dacf3303f4 100644 --- a/addons/board_project/i18n/board_project.pot +++ b/addons/board_project/i18n/board_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board_sale/i18n/board_sale.pot b/addons/board_sale/i18n/board_sale.pot index 737c89113eb..f891ea45565 100644 --- a/addons/board_sale/i18n/board_sale.pot +++ b/addons/board_sale/i18n/board_sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/crm/i18n/crm.pot b/addons/crm/i18n/crm.pot index 29ccf6d9819..a75daab184c 100644 --- a/addons/crm/i18n/crm.pot +++ b/addons/crm/i18n/crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -632,11 +632,6 @@ msgstr "" msgid "Set responsible to" msgstr "" -#. module: crm -#: view:crm.case:0 -msgid "General" -msgstr "" - #. module: crm #: view:crm.case.rule:0 msgid "The rule use a AND operator. The case must match all non empty fields so that the rule execute the action described in the 'Actions' tab." @@ -1196,6 +1191,11 @@ msgstr "" msgid "All Pending " msgstr "" +#. module: crm +#: view:crm.case:0 +msgid "General" +msgstr "" + #. module: crm #: model:ir.model,name:crm.model_crm_segmentation #: view:crm.segmentation:0 diff --git a/addons/crm_configuration/i18n/crm_configuration.pot b/addons/crm_configuration/i18n/crm_configuration.pot index 8d26221433b..7eff8cea034 100644 --- a/addons/crm_configuration/i18n/crm_configuration.pot +++ b/addons/crm_configuration/i18n/crm_configuration.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -910,11 +910,6 @@ msgstr "" msgid "My Unclosed Requests" msgstr "" -#. module: crm_configuration -#: model:ir.ui.menu,name:crm_configuration.menu_presale -msgid "Pre-Sales" -msgstr "" - #. module: crm_configuration #: field:crm.menu.config_wizard,name:0 #: view:crm.case:0 @@ -1425,6 +1420,11 @@ msgstr "" msgid "Cases by section and stage" msgstr "" +#. module: crm_configuration +#: model:ir.ui.menu,name:crm_configuration.menu_presale +msgid "Sales" +msgstr "" + #. module: crm_configuration #: view:crm.case:0 msgid "General" diff --git a/addons/crm_profiling/i18n/crm_profiling.pot b/addons/crm_profiling/i18n/crm_profiling.pot index aa73771df24..9de3bbed7b9 100644 --- a/addons/crm_profiling/i18n/crm_profiling.pot +++ b/addons/crm_profiling/i18n/crm_profiling.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/delivery/i18n/delivery.pot b/addons/delivery/i18n/delivery.pot index 7f805ce2c36..5342d384f38 100644 --- a/addons/delivery/i18n/delivery.pot +++ b/addons/delivery/i18n/delivery.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document/i18n/document.pot b/addons/document/i18n/document.pot index 07a0c17b3ee..adc030ec95d 100644 --- a/addons/document/i18n/document.pot +++ b/addons/document/i18n/document.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/document_ics/i18n/document_ics.pot b/addons/document_ics/i18n/document_ics.pot index 132167ed406..5a14526a556 100644 --- a/addons/document_ics/i18n/document_ics.pot +++ b/addons/document_ics/i18n/document_ics.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event/i18n/event.pot b/addons/event/i18n/event.pot index e3e1fd31953..5762010d97c 100644 --- a/addons/event/i18n/event.pot +++ b/addons/event/i18n/event.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/event_project/i18n/event_project.pot b/addons/event_project/i18n/event_project.pot index e8c971365e9..e1550249653 100644 --- a/addons/event_project/i18n/event_project.pot +++ b/addons/event_project/i18n/event_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/google_map/i18n/google_map.pot b/addons/google_map/i18n/google_map.pot index 6c3b3431ceb..f78dec4b2c6 100644 --- a/addons/google_map/i18n/google_map.pot +++ b/addons/google_map/i18n/google_map.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr/i18n/hr.pot b/addons/hr/i18n/hr.pot index 37ec68d6e58..ce27c4d7244 100644 --- a/addons/hr/i18n/hr.pot +++ b/addons/hr/i18n/hr.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -96,11 +96,6 @@ msgstr "" msgid "Work from" msgstr "" -#. module: hr -#: model:process.transition,note:hr.process_transition_employeeuser0 -msgid "Create openerp user" -msgstr "" - #. module: hr #: code:addons/hr/wizard/sign_in_out.py:0 #, python-format @@ -117,11 +112,6 @@ msgstr "" msgid "Female" msgstr "" -#. module: hr -#: model:process.node,note:hr.process_node_jobshiring0 -msgid "Process to search, interview and evaluate new candidates" -msgstr "" - #. module: hr #: code:addons/hr/wizard/sign_in_out.py:0 #, python-format @@ -268,11 +258,6 @@ msgstr "" msgid "Note" msgstr "" -#. module: hr -#: model:process.transition,note:hr.process_transition_employeejob0 -msgid "After confirming job, he will be a employee" -msgstr "" - #. module: hr #: view:hr.employee:0 msgid "Contact Information" @@ -310,11 +295,6 @@ msgstr "" msgid "Day of week" msgstr "" -#. module: hr -#: model:process.transition,name:hr.process_transition_employeejob0 -msgid "Employee Job" -msgstr "" - #. module: hr #: field:hr.employee,ssnid:0 msgid "SSN No" @@ -335,6 +315,12 @@ msgstr "" msgid "Employee Complete Form" msgstr "" +#. module: hr +#: model:ir.actions.act_window,name:hr.open_view_categ_form +#: model:ir.ui.menu,name:hr.menu_view_employee_category_form +msgid "Categories of Employee" +msgstr "" + #. module: hr #: view:hr.department:0 msgid "Companies" @@ -346,14 +332,8 @@ msgid "Wednesday" msgstr "" #. module: hr -#: model:ir.actions.act_window,name:hr.open_view_categ_form -#: model:ir.ui.menu,name:hr.menu_view_employee_category_form -msgid "Categories of Employee" -msgstr "" - -#. module: hr -#: model:process.node,name:hr.process_node_jobshiring0 -msgid "Jobs hiring" +#: model:process.transition,note:hr.process_transition_employeeuser0 +msgid "Create openerp user" msgstr "" #. module: hr diff --git a/addons/hr_attendance/i18n/hr_attendance.pot b/addons/hr_attendance/i18n/hr_attendance.pot index 89f61ff56f6..8400d903593 100644 --- a/addons/hr_attendance/i18n/hr_attendance.pot +++ b/addons/hr_attendance/i18n/hr_attendance.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -43,9 +43,9 @@ msgid "(*) A positive delay means that the employee worked less than recorded." msgstr "" #. module: hr_attendance +#: wizard_view:hr.si_so,si_ask_so:0 #: wizard_view:hr.si_so,so_ask_si:0 #: wizard_view:hr.si_so,init:0 -#: wizard_view:hr.si_so,si_ask_so:0 #: model:ir.actions.wizard,name:hr_attendance.si_so #: model:ir.ui.menu,name:hr_attendance.menu_si_so msgid "Sign in / Sign out" @@ -196,8 +196,8 @@ msgid "Define attendance reason" msgstr "" #. module: hr_attendance -#: wizard_button:hr.si_so,init,si_test:0 #: wizard_button:hr.si_so,si_ask_so,si:0 +#: wizard_button:hr.si_so,init,si_test:0 #: selection:hr.action.reason,action_type:0 msgid "Sign in" msgstr "" @@ -229,9 +229,9 @@ msgid "Attendance Errors" msgstr "" #. module: hr_attendance +#: wizard_field:hr.si_so,si_ask_so,name:0 #: wizard_field:hr.si_so,so_ask_si,name:0 #: wizard_field:hr.si_so,init,name:0 -#: wizard_field:hr.si_so,si_ask_so,name:0 msgid "Employee's name" msgstr "" @@ -301,9 +301,9 @@ msgid "Warning" msgstr "" #. module: hr_attendance +#: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.si_so,so_ask_si,end:0 #: wizard_button:hr.si_so,init,end:0 -#: wizard_button:hr.si_so,si_ask_so,end:0 #: wizard_button:hr.timesheet.attendance.report,init,end:0 msgid "Cancel" msgstr "" diff --git a/addons/hr_contract/i18n/hr_contract.pot b/addons/hr_contract/i18n/hr_contract.pot index 44084f2c2fc..6798a849f5a 100644 --- a/addons/hr_contract/i18n/hr_contract.pot +++ b/addons/hr_contract/i18n/hr_contract.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_expense/i18n/hr_expense.pot b/addons/hr_expense/i18n/hr_expense.pot index 09acc8bf30e..f6f6a70f5e9 100644 --- a/addons/hr_expense/i18n/hr_expense.pot +++ b/addons/hr_expense/i18n/hr_expense.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_holidays/i18n/hr_holidays.pot b/addons/hr_holidays/i18n/hr_holidays.pot index 9cd1d61528e..4fdbe08e089 100644 --- a/addons/hr_holidays/i18n/hr_holidays.pot +++ b/addons/hr_holidays/i18n/hr_holidays.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet/i18n/hr_timesheet.pot b/addons/hr_timesheet/i18n/hr_timesheet.pot index cadc9a5b6b8..70fc0da7f98 100644 --- a/addons/hr_timesheet/i18n/hr_timesheet.pot +++ b/addons/hr_timesheet/i18n/hr_timesheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot index f0a17d27f4e..603b858204d 100644 --- a/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot +++ b/addons/hr_timesheet_invoice/i18n/hr_timesheet_invoice.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,8 +26,8 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:0 +#: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 #, python-format msgid "Analytic account incomplete" msgstr "" diff --git a/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot b/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot index 00f82f5620e..847e7946645 100644 --- a/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot +++ b/addons/hr_timesheet_project/i18n/hr_timesheet_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,14 +15,9 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" -#. module: hr_timesheet_project -#: model:process.node,note:hr_timesheet_project.process_node_taskwork0 -msgid "Work on task" -msgstr "" - #. module: hr_timesheet_project #: model:process.node,name:hr_timesheet_project.process_node_timesheettask0 -msgid "Timesheet_task" +msgid "Timesheet task" msgstr "" #. module: hr_timesheet_project @@ -45,14 +40,19 @@ msgstr "" msgid "Task encoding" msgstr "" +#. module: hr_timesheet_project +#: model:process.transition,note:hr_timesheet_project.process_transition_tasktimesheet0 +msgid "Moves task entry into the timesheet line" +msgstr "" + #. module: hr_timesheet_project #: model:process.transition,name:hr_timesheet_project.process_transition_tasktimesheet0 msgid "Task timesheet" msgstr "" #. module: hr_timesheet_project -#: model:process.transition,note:hr_timesheet_project.process_transition_tasktimesheet0 -msgid "Moves task entry into the timesheet line" +#: model:process.node,name:hr_timesheet_project.process_node_workontask0 +msgid "Work on Task" msgstr "" #. module: hr_timesheet_project @@ -81,7 +81,7 @@ msgid "Hours From Tasks" msgstr "" #. module: hr_timesheet_project -#: model:process.node,name:hr_timesheet_project.process_node_workontask0 -msgid "Work on Task" +#: model:process.node,note:hr_timesheet_project.process_node_taskwork0 +msgid "Work on task" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot index 5e1b380de72..9e409cd230f 100644 --- a/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot +++ b/addons/hr_timesheet_sheet/i18n/hr_timesheet_sheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -70,7 +70,8 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 #: model:process.node,name:hr_timesheet_sheet.process_node_timesheet0 -#: model:process.transition,name:hr_timesheet_sheet.process_transition_timesheet0 +#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetconfirming0 +#: model:process.transition,name:hr_timesheet_sheet.process_transition_timesheetdraft0 msgid "Timesheet" msgstr "" @@ -144,8 +145,8 @@ msgid "Total Difference" msgstr "" #. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetconfirming0 -msgid "Timesheet Confirming" +#: model:process.transition,name:hr_timesheet_sheet.process_transition_phonecallencoding0 +msgid "Phone call encoding" msgstr "" #. module: hr_timesheet_sheet @@ -212,7 +213,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.day,total_attendance:0 #: model:process.node,name:hr_timesheet_sheet.process_node_attendance0 -#: model:process.transition,name:hr_timesheet_sheet.process_transition_attendance0 +#: model:process.transition,name:hr_timesheet_sheet.process_transition_attendancetimesheet0 msgid "Attendance" msgstr "" @@ -350,8 +351,8 @@ msgid "Review of work" msgstr "" #. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetline0 -msgid "Timesheet Line" +#: model:process.node,name:hr_timesheet_sheet.process_node_invoiceonwork0 +msgid "Invoice on Work" msgstr "" #. module: hr_timesheet_sheet @@ -442,11 +443,6 @@ msgstr "" msgid "Invoice based on timesheet" msgstr "" -#. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_reviewofwork0 -msgid "Review of your work at the end of the day" -msgstr "" - #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "Creates invoice based on timesheet" @@ -480,7 +476,7 @@ msgid "Confirmed Timesheet" msgstr "" #. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_attendance0 +#: model:process.transition,note:hr_timesheet_sheet.process_transition_attendancetimesheet0 msgid "Attendance entry moves into the timesheet" msgstr "" @@ -490,8 +486,8 @@ msgid "Creates your analytic cost accoording to quantity" msgstr "" #. module: hr_timesheet_sheet -#: model:process.node,name:hr_timesheet_sheet.process_node_invoiceonwork0 -msgid "Invoice on Work" +#: model:process.node,name:hr_timesheet_sheet.process_node_timesheetline0 +msgid "Timesheet Line" msgstr "" #. module: hr_timesheet_sheet @@ -571,7 +567,7 @@ msgid "Absent" msgstr "" #. module: hr_timesheet_sheet -#: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheet0 +#: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheetdraft0 msgid "timesheet entry is into draft state." msgstr "" @@ -591,8 +587,8 @@ msgid "Encode how much time u spent on phone call" msgstr "" #. module: hr_timesheet_sheet -#: model:process.transition,name:hr_timesheet_sheet.process_transition_phonecallencoding0 -msgid "Phone call encoding" +#: model:process.transition,note:hr_timesheet_sheet.process_transition_reviewofwork0 +msgid "Review of your work at the end of the day" msgstr "" #. module: hr_timesheet_sheet diff --git a/addons/idea/i18n/idea.pot b/addons/idea/i18n/idea.pot index c4e307c15f2..e42cf21fa69 100644 --- a/addons/idea/i18n/idea.pot +++ b/addons/idea/i18n/idea.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_be/i18n/l10n_be.pot b/addons/l10n_be/i18n/l10n_be.pot index 79abbf62be3..ae4eff62040 100644 --- a/addons/l10n_be/i18n/l10n_be.pot +++ b/addons/l10n_be/i18n/l10n_be.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot b/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot index 0fa9b86526d..bb9938514cb 100644 --- a/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot +++ b/addons/l10n_chart_uk_minimal/i18n/l10n_chart_uk_minimal.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/l10n_fr/i18n/l10n_fr.pot b/addons/l10n_fr/i18n/l10n_fr.pot index 0dab0a19127..7a37795382f 100644 --- a/addons/l10n_fr/i18n/l10n_fr.pot +++ b/addons/l10n_fr/i18n/l10n_fr.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,13 +21,24 @@ msgid "Receivable" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_equity -msgid "Equity" +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_immobilisations -msgid "Immobilisations" +#: field:l10n.fr.report,code:0 +msgid "Code" +msgstr "" + +#. module: l10n_fr +#: model:account.account.type,name:l10n_fr.account_type_stocks +msgid "Actif circulant" +msgstr "" + +#. module: l10n_fr +#: model:ir.actions.todo,note:l10n_fr.config_call_account_template +msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" +" This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." msgstr "" #. module: l10n_fr @@ -35,6 +46,12 @@ msgstr "" msgid "Print Balance Sheet" msgstr "" +#. module: l10n_fr +#: model:ir.actions.wizard,name:l10n_fr.wizard_l10n_fr_cdr_report +#: model:ir.ui.menu,name:l10n_fr.menu_action_cdr +msgid "Compte de resultat" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_asset msgid "Asset" @@ -45,6 +62,22 @@ msgstr "" msgid "Income" msgstr "" +#. module: l10n_fr +#: wizard_button:l10n.fr.bilan.report,init,report:0 +#: wizard_button:l10n.fr.cdr.report,init,report:0 +msgid "Print" +msgstr "" + +#. module: l10n_fr +#: model:ir.model,name:l10n_fr.model_l10n_fr_report +msgid "Report for l10n_fr" +msgstr "" + +#. module: l10n_fr +#: wizard_view:l10n.fr.bilan.report,init:0 +msgid "Select year" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_dettes msgid "Dettes long terme" @@ -55,16 +88,39 @@ msgstr "" msgid "Provisions" msgstr "" +#. module: l10n_fr +#: model:ir.actions.act_window,name:l10n_fr.action_l10n_fr_line_tree +#: model:ir.ui.menu,name:l10n_fr.menu_l10n_fr_line_tree +#: view:l10n.fr.line:0 +msgid "Entrées" +msgstr "" + #. module: l10n_fr #: wizard_field:account.chart.report,init,company_id:0 msgid "Company" msgstr "" +#. module: l10n_fr +#: model:ir.actions.wizard,name:l10n_fr.wizard_l10n_fr_bilan_report +#: model:ir.ui.menu,name:l10n_fr.menu_action_bilan +msgid "Bilan" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_payable msgid "Payable" msgstr "" +#. module: l10n_fr +#: view:l10n.fr.report:0 +msgid "Rapport" +msgstr "" + +#. module: l10n_fr +#: field:l10n.fr.line,report_id:0 +msgid "Report" +msgstr "" + #. module: l10n_fr #: constraint:account.tax.code.template:0 msgid "Error ! You can not create recursive Tax Codes." @@ -75,16 +131,47 @@ msgstr "" msgid "Engagements" msgstr "" +#. module: l10n_fr +#: model:ir.model,name:l10n_fr.model_l10n_fr_line +msgid "Report Lines for l10n_fr" +msgstr "" + #. module: l10n_fr #: wizard_field:account.chart.report,init,target_move:0 msgid "Target Moves" msgstr "" +#. module: l10n_fr +#: model:ir.ui.menu,name:l10n_fr.menu_synthesis +msgid "Documents de synthèse" +msgstr "" + +#. module: l10n_fr +#: field:l10n.fr.line,definition:0 +msgid "Definition" +msgstr "" + +#. module: l10n_fr +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + +#. module: l10n_fr +#: field:l10n.fr.line,name:0 +#: field:l10n.fr.report,name:0 +msgid "Name" +msgstr "" + #. module: l10n_fr #: selection:account.chart.report,init,target_move:0 msgid "All Posted Entries" msgstr "" +#. module: l10n_fr +#: field:l10n.fr.report,line_ids:0 +msgid "Lines" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_cash msgid "Cash" @@ -101,8 +188,19 @@ msgid "Comptes spéciaux" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_stocks -msgid "Actif circulant" +#: model:ir.actions.act_window,name:l10n_fr.action_l10n_fr_report_tree +#: model:ir.ui.menu,name:l10n_fr.menu_l10n_fr_report_tree +msgid "Rapports" +msgstr "" + +#. module: l10n_fr +#: model:account.account.type,name:l10n_fr.account_type_equity +msgid "Equity" +msgstr "" + +#. module: l10n_fr +#: model:account.account.type,name:l10n_fr.account_type_immobilisations +msgid "Immobilisations" msgstr "" #. module: l10n_fr @@ -120,20 +218,24 @@ msgstr "" msgid "Expense" msgstr "" +#. module: l10n_fr +#: wizard_view:l10n.fr.cdr.report,init:0 +msgid "Select period" +msgstr "" + #. module: l10n_fr #: model:account.account.type,name:l10n_fr.account_type_view msgid "View" msgstr "" #. module: l10n_fr -#: model:ir.actions.todo,note:l10n_fr.config_call_account_template -msgid "Generate Chart of Accounts from a Chart Template. You will be asked to pass the name of the company, the chart template to follow, the no. of digits to generate the code for your accounts and Bank account, currency to create Journals. Thus,the pure copy of chart Template is generated.\n" -"This is the same wizard that runs from Financial Management/Configuration/Financial Accounting/Financial Accounts/Generate Chart of Accounts from a Chart Template." +#: model:account.account.type,name:l10n_fr.account_type_stock +msgid "Stocks" msgstr "" #. module: l10n_fr -#: model:account.account.type,name:l10n_fr.account_type_stock -msgid "Stocks" +#: model:ir.ui.menu,name:l10n_fr.menu_synthesis_config +msgid "Configuration" msgstr "" #. module: l10n_fr @@ -149,11 +251,15 @@ msgstr "" #. module: l10n_fr #: wizard_field:account.chart.report,init,fiscalyear:0 +#: wizard_field:l10n.fr.bilan.report,init,fiscalyear:0 +#: wizard_field:l10n.fr.cdr.report,init,fiscalyear:0 msgid "Fiscal year" msgstr "" #. module: l10n_fr #: wizard_button:account.chart.report,init,end:0 +#: wizard_button:l10n.fr.bilan.report,init,end:0 +#: wizard_button:l10n.fr.cdr.report,init,end:0 msgid "Cancel" msgstr "" @@ -162,6 +268,11 @@ msgstr "" msgid "Cloture" msgstr "" +#. module: l10n_fr +#: field:l10n.fr.line,code:0 +msgid "Variable Name" +msgstr "" + #. module: l10n_fr #: selection:account.chart.report,init,target_move:0 msgid "All Entries" diff --git a/addons/l10n_lu/i18n/l10n_lu.pot b/addons/l10n_lu/i18n/l10n_lu.pot index b0b237074b1..bd50bf403d3 100644 --- a/addons/l10n_lu/i18n/l10n_lu.pot +++ b/addons/l10n_lu/i18n/l10n_lu.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/membership/i18n/membership.pot b/addons/membership/i18n/membership.pot index 949cd25257e..5537feb13bc 100644 --- a/addons/membership/i18n/membership.pot +++ b/addons/membership/i18n/membership.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp/i18n/mrp.pot b/addons/mrp/i18n/mrp.pot index c9dac23a220..67664d17e5e 100644 --- a/addons/mrp/i18n/mrp.pot +++ b/addons/mrp/i18n/mrp.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -35,11 +35,6 @@ msgstr "" msgid "Revision" msgstr "" -#. module: mrp -#: model:process.node,name:mrp.process_node_stockableorder0 -msgid "Stockable Order" -msgstr "" - #. module: mrp #: model:ir.actions.wizard,name:mrp.wiz_mrp_proc2 #: model:ir.ui.menu,name:mrp.menu_wiz_mrp_proc2 @@ -62,11 +57,6 @@ msgstr "" msgid "Finnished Products" msgstr "" -#. module: mrp -#: model:process.node,note:mrp.process_node_maketostock1 -msgid "If Procurement is make to stock" -msgstr "" - #. module: mrp #: rml:bom.structure:0 msgid "UoM" @@ -128,6 +118,11 @@ msgstr "" msgid "Set / Pack" msgstr "" +#. module: mrp +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "" + #. module: mrp #: help:res.company,security_lead:0 msgid "This is the days added to what you promise to customers for security purpose" @@ -198,7 +193,7 @@ msgid "Packing Exception" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_requestforquotation2 +#: model:process.node,note:mrp.process_node_orderrfq0 msgid "A purchase order is created for a sub-contracting demand." msgstr "" @@ -212,6 +207,11 @@ msgstr "" msgid "Analytic Accounting" msgstr "" +#. module: mrp +#: model:process.node,note:mrp.process_node_servicemts0 +msgid "Do nothing" +msgstr "" + #. module: mrp #: code:addons/mrp/report/price.py:0 #, python-format @@ -267,7 +267,7 @@ msgid "Status" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockableproductionorder0 +#: model:process.transition,name:mrp.process_transition_stockproduction0 msgid "Stockable Production Order" msgstr "" @@ -282,7 +282,7 @@ msgid "This wizard will schedule procurements." msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockablerequest0 +#: model:process.transition,name:mrp.process_transition_stockrfq0 msgid "Stockable Request" msgstr "" @@ -292,6 +292,11 @@ msgstr "" msgid "Workcenter name" msgstr "" +#. module: mrp +#: model:process.node,name:mrp.process_node_serviceonorder0 +msgid "Service on Order" +msgstr "" + #. module: mrp #: help:stock.warehouse.orderpoint,product_max_qty:0 #: help:stock.warehouse.orderpoint,product_min_qty:0 @@ -299,7 +304,7 @@ msgid "When the virtual stock goes belong the Min Quantity, Open ERP generates a msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockablemaketostock0 +#: model:process.transition,name:mrp.process_transition_stockmts0 msgid "Stockable Make to Stock" msgstr "" @@ -361,7 +366,7 @@ msgid "Production orders" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockableproductionorder0 +#: model:process.transition,note:mrp.process_transition_stockproduction0 msgid "If Procure method is Make to order and supply method is produce" msgstr "" @@ -387,8 +392,8 @@ msgid "BoM Lines" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockablemaketostock0 -#: model:process.transition,note:mrp.process_transition_stockablerequest0 +#: model:process.transition,note:mrp.process_transition_stockmts0 +#: model:process.transition,note:mrp.process_transition_stockrfq0 msgid "If Product type is Stockable and procure method is make to stock" msgstr "" @@ -465,7 +470,7 @@ msgid "Author" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockableproductstock0 +#: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Stockable Product Stock" msgstr "" @@ -520,6 +525,11 @@ msgstr "" msgid "Reservation" msgstr "" +#. module: mrp +#: model:process.process,name:mrp.process_process_serviceproductworkflow0 +msgid "Service Product Workflow" +msgstr "" + #. module: mrp #: field:res.company,manufacturing_lead:0 msgid "Manufacturity Lead Time" @@ -564,7 +574,7 @@ msgid "Time in hours for doing one cycle." msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockableproductstock0 +#: model:process.transition,note:mrp.process_transition_stockproduct0 msgid "Product type is Stockable and procure method is make to stock" msgstr "" @@ -609,7 +619,8 @@ msgid "Type" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_stockableproduct0 +#: model:process.node,note:mrp.process_node_stockproduct0 +#: model:process.node,note:mrp.process_node_stockproduct1 msgid "For stockable and consumable" msgstr "" @@ -640,8 +651,9 @@ msgid "Printing date" msgstr "" #. module: mrp -#: constraint:ir.ui.view:0 -msgid "Invalid XML for View Architecture!" +#: model:process.node,name:mrp.process_node_orderrfq0 +#: model:process.node,name:mrp.process_node_rfq0 +msgid "RFQ" msgstr "" #. module: mrp @@ -656,7 +668,7 @@ msgid "Hours Cost" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_productionorder1 +#: model:process.node,note:mrp.process_node_production0 msgid "Production orders are created for the product manufacturing." msgstr "" @@ -688,12 +700,18 @@ msgid "Procurement Lines" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_servicemaketostock0 +#: model:process.transition,note:mrp.process_transition_servicemts0 msgid "If Product type is service and procure method is Make to stock" msgstr "" +#. module: mrp +#: model:process.process,name:mrp.process_process_stockableproductworkflow0 +msgid "Stockable Product Workflow" +msgstr "" + #. module: mrp #: model:process.node,note:mrp.process_node_serviceproduct0 +#: model:process.node,note:mrp.process_node_serviceproduct1 msgid "If Product type is service" msgstr "" @@ -740,12 +758,12 @@ msgid "This wizard will planify the procurement for this product. This procureme msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_maketostock0 +#: model:process.node,note:mrp.process_node_mts0 msgid "The system waits for requested products in stock." msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_serivcestockableorder0 +#: model:process.transition,name:mrp.process_transition_servicemto0 msgid "Serivce Stockable Order" msgstr "" @@ -760,7 +778,8 @@ msgid "Properties categories" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_stockableproduct0 +#: model:process.node,name:mrp.process_node_stockproduct0 +#: model:process.node,name:mrp.process_node_stockproduct1 msgid "Stockable Product" msgstr "" @@ -790,8 +809,8 @@ msgid "Property Group" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 -msgid "An entry is being made from billing material to routing." +#: field:mrp.bom,bom_id:0 +msgid "Parent BoM" msgstr "" #. module: mrp @@ -835,7 +854,7 @@ msgid "Machine" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_maketostock1 +#: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" msgstr "" @@ -952,7 +971,7 @@ msgid "Time Efficiency" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_stockablestock0 +#: model:process.node,name:mrp.process_node_stock0 msgid "Stockable Stock" msgstr "" @@ -997,12 +1016,6 @@ msgstr "" msgid "Per week" msgstr "" -#. module: mrp -#: model:process.node,name:mrp.process_node_requestforquotation1 -#: model:process.node,name:mrp.process_node_requestforquotation2 -msgid "Request For Quotation" -msgstr "" - #. module: mrp #: wizard_button:mrp.procurement.compute.all,init,compute:0 #: wizard_button:mrp.procurement.compute,init,compute:0 @@ -1011,7 +1024,7 @@ msgid "Compute Procurements" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_stockablestock0 +#: model:process.node,note:mrp.process_node_stock0 msgid "Wait for available products for reservation" msgstr "" @@ -1078,7 +1091,7 @@ msgid "Orderpoint minimum rule" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_servicemaketostock0 +#: model:process.transition,name:mrp.process_transition_servicemts0 msgid "Service Make to Stock" msgstr "" @@ -1134,12 +1147,12 @@ msgid "Procurement orders" msgstr "" #. module: mrp -#: model:process.node,name:mrp.process_node_maketostock0 +#: model:process.node,name:mrp.process_node_mts0 msgid "Make to Stock" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_serivcestockableorder0 +#: model:process.transition,note:mrp.process_transition_servicemto0 msgid "If product type is service and procure method is Make to order" msgstr "" @@ -1465,7 +1478,7 @@ msgid "Source Location" msgstr "" #. module: mrp -#: model:process.transition,name:mrp.process_transition_stockableorderrequest0 +#: model:process.transition,name:mrp.process_transition_servicerfq0 msgid "Stockable Order Request" msgstr "" @@ -1486,7 +1499,7 @@ msgid "numeric indices" msgstr "" #. module: mrp -#: model:process.transition,note:mrp.process_transition_stockableorderrequest0 +#: model:process.transition,note:mrp.process_transition_servicerfq0 msgid "If Procure method is Make to order and supply method is buy" msgstr "" @@ -1557,8 +1570,8 @@ msgstr "" #: model:ir.actions.report.xml,name:mrp.report_mrp_production_report #: field:mrp.production.product.line,production_id:0 #: field:mrp.production.workcenter.line,production_id:0 +#: model:process.node,name:mrp.process_node_production0 #: model:process.node,name:mrp.process_node_productionorder0 -#: model:process.node,name:mrp.process_node_productionorder1 msgid "Production Order" msgstr "" @@ -1654,7 +1667,7 @@ msgid "Recreate Picking" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_stockableorder0 +#: model:process.node,note:mrp.process_node_serviceonorder0 msgid "If procurement is make to order" msgstr "" @@ -1749,7 +1762,7 @@ msgid "New Production Order" msgstr "" #. module: mrp -#: model:process.node,note:mrp.process_node_requestforquotation1 +#: model:process.node,note:mrp.process_node_rfq0 msgid "A Request for Quotation is created and sent to the supplier." msgstr "" @@ -1803,8 +1816,8 @@ msgid "Procurement Reason" msgstr "" #. module: mrp -#: field:mrp.bom,bom_id:0 -msgid "Parent BoM" +#: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 +msgid "An entry is being made from billing material to routing." msgstr "" #. module: mrp @@ -1889,6 +1902,7 @@ msgstr "" #. module: mrp #: model:process.node,name:mrp.process_node_serviceproduct0 +#: model:process.node,name:mrp.process_node_serviceproduct1 msgid "Service Product" msgstr "" diff --git a/addons/mrp_operations/i18n/mrp_operations.pot b/addons/mrp_operations/i18n/mrp_operations.pot index 57ba06b9f8f..6c26347edda 100644 --- a/addons/mrp_operations/i18n/mrp_operations.pot +++ b/addons/mrp_operations/i18n/mrp_operations.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,6 +15,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_startoperation0 +msgid "Start Operation" +msgstr "" + #. module: mrp_operations #: selection:mrp.production.workcenter.line,state:0 msgid "In Progress" @@ -32,6 +37,16 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_startoperation0 +msgid "Operation is started" +msgstr "" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_productionorder0 +msgid "Production Order" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Start working" @@ -43,9 +58,9 @@ msgid "mrp_operations.operation.code" msgstr "" #. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid "Production Order Cannot start in [%s] state" +#: model:process.node,note:mrp_operations.process_node_canceloperation0 +#: model:process.transition,note:mrp_operations.process_transition_startcanceloperation0 +msgid "Operation is cancelled" msgstr "" #. module: mrp_operations @@ -74,6 +89,11 @@ msgstr "" msgid "Draft" msgstr "" +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_workorder0 +msgid "Work Center" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Set Draft" @@ -115,6 +135,11 @@ msgstr "" msgid "Product" msgstr "" +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 +msgid "Start Cancel Operation" +msgstr "" + #. module: mrp_operations #: selection:mrp_operations.operation.code,start_stop:0 #: view:mrp.production.workcenter.line:0 @@ -153,6 +178,11 @@ msgstr "" msgid "Operation is already finished !" msgstr "" +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 +msgid "Start Done Operation" +msgstr "" + #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 #, python-format @@ -171,6 +201,16 @@ msgstr "" msgid "Sorry!" msgstr "" +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_productionorder0 +msgid "Production order for any products" +msgstr "" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 +msgid "From work order, define the cycles and hour for creating product" +msgstr "" + #. module: mrp_operations #: field:mrp_operations.operation.code,name:0 msgid "Operation Name" @@ -198,6 +238,12 @@ msgstr "" msgid "This is delay between operation start and stop in this workcenter" msgstr "" +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:0 +#, python-format +msgid "Production Order Cannot start in [%s] state" +msgstr "" + #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_operation_action msgid "Work Order Events Using Bar Codes" @@ -219,10 +265,21 @@ msgstr "" msgid "Operation is not started yet !" msgstr "" +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_canceloperation0 +msgid "Cancel Operation" +msgstr "" + #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:0 #, python-format -msgid "Error!" +msgid " You cannot Resume the operation other then Pause state !" +msgstr "" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_doneoperation0 +#: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 +msgid "Operation is done" msgstr "" #. module: mrp_operations @@ -230,6 +287,16 @@ msgstr "" msgid "Workcenter" msgstr "" +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_workorder0 +msgid "Production Work Center" +msgstr "" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_productionstart0 +msgid "Production start Operation" +msgstr "" + #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Graph view in hours by workcenter" @@ -263,15 +330,25 @@ msgstr "" msgid "Work Orders to Do" msgstr "" +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:0 +#, python-format +msgid "Error!" +msgstr "" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 +msgid "Work start Operation" +msgstr "" + #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: code:addons/mrp_operations/mrp_operations.py:0 -#, python-format -msgid " You cannot Resume the operation other then Pause state !" +#: model:process.node,name:mrp_operations.process_node_doneoperation0 +msgid "Done Operation" msgstr "" #. module: mrp_operations @@ -284,6 +361,11 @@ msgstr "" msgid "Canceled" msgstr "" +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_productionstart0 +msgid "From production order, create the workorder" +msgstr "" + #. module: mrp_operations #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" @@ -322,3 +404,8 @@ msgstr "" msgid "Operation has already started !' 'You can either Pause /Finish/Cancel the operation" msgstr "" +#. module: mrp_operations +#: model:process.process,name:mrp_operations.process_process_mrpoperationworkflow0 +msgid "Mrp Operation Workflow" +msgstr "" + diff --git a/addons/mrp_repair/i18n/mrp_repair.pot b/addons/mrp_repair/i18n/mrp_repair.pot index 13c9685d9c7..27e33436580 100644 --- a/addons/mrp_repair/i18n/mrp_repair.pot +++ b/addons/mrp_repair/i18n/mrp_repair.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_subproduct/i18n/mrp_subproduct.pot b/addons/mrp_subproduct/i18n/mrp_subproduct.pot index df055ad472b..213f72fc5df 100644 --- a/addons/mrp_subproduct/i18n/mrp_subproduct.pot +++ b/addons/mrp_subproduct/i18n/mrp_subproduct.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/point_of_sale/i18n/point_of_sale.pot b/addons/point_of_sale/i18n/point_of_sale.pot index f88152c0b4d..989735624b9 100644 --- a/addons/point_of_sale/i18n/point_of_sale.pot +++ b/addons/point_of_sale/i18n/point_of_sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/process/i18n/process.pot b/addons/process/i18n/process.pot index 18f5bffec47..b3b1f83ac1b 100644 --- a/addons/process/i18n/process.pot +++ b/addons/process/i18n/process.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -107,6 +107,7 @@ msgstr "" #. module: process #: field:process.condition,model_id:0 #: field:process.node,model_id:0 +#: field:process.process,model_id:0 msgid "Object" msgstr "" @@ -204,6 +205,12 @@ msgstr "" msgid "Action ID" msgstr "" +#. module: process +#: code:addons/process/process.py:0 +#, python-format +msgid "%s - Resource: %s, State: %s" +msgstr "" + #. module: process #: selection:process.transition.action,state:0 msgid "Action" diff --git a/addons/product/i18n/product.pot b/addons/product/i18n/product.pot index 9b6eb8764dd..63375f6f74d 100644 --- a/addons/product/i18n/product.pot +++ b/addons/product/i18n/product.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -36,8 +36,8 @@ msgid "Service" msgstr "" #. module: product -#: field:product.pricelist.item,price_min_margin:0 -msgid "Price Min. Margin" +#: help:product.template,purchase_ok:0 +msgid "Determine if the product is visible in the list of products within a selection from a purchase order line." msgstr "" #. module: product @@ -95,12 +95,6 @@ msgstr "" msgid "Consumable" msgstr "" -#. module: product -#: model:product.category,name:product.product_category_7 -#: model:product.template,name:product.product_product_1_product_template -msgid "Onsite Intervention" -msgstr "" - #. module: product #: wizard_field:product.price_list,init,price_list:0 msgid "PriceList" @@ -157,11 +151,6 @@ msgstr "" msgid "Company" msgstr "" -#. module: product -#: help:product.template,purchase_ok:0 -msgid "Determine if the product is visible in the list of products within a selection from a purchase order line." -msgstr "" - #. module: product #: field:product.product,lst_price:0 msgid "List Price" @@ -251,6 +240,11 @@ msgstr "" msgid "Partner section of the product form" msgstr "" +#. module: product +#: constraint:product.pricelist.version:0 +msgid "You can not have 2 pricelist version that overlaps!" +msgstr "" + #. module: product #: help:product.packaging,rows:0 msgid "The number of layer on a palet or box" @@ -291,8 +285,8 @@ msgid "Warning !" msgstr "" #. module: product -#: help:product.pricelist.item,product_id:0 -msgid "Set a product if this rule only apply to one product. Keep empty for all products" +#: field:product.pricelist.item,price_min_margin:0 +msgid "Price Min. Margin" msgstr "" #. module: product @@ -997,6 +991,12 @@ msgstr "" msgid "Active" msgstr "" +#. module: product +#: model:product.category,name:product.product_category_7 +#: model:product.template,name:product.product_product_1_product_template +msgid "Onsite Intervention" +msgstr "" + #. module: product #: field:product.product,price_margin:0 msgid "Variant Price Margin" @@ -1114,8 +1114,10 @@ msgid "Variable" msgstr "" #. module: product -#: help:product.template,uom_id:0 -msgid "Default Unit of Measure used for all stock operation." +#: field:product.category,sequence:0 +#: field:product.packaging,sequence:0 +#: field:product.pricelist.item,sequence:0 +msgid "Sequence" msgstr "" #. module: product @@ -1266,6 +1268,11 @@ msgstr "" msgid "Unit Price" msgstr "" +#. module: product +#: field:product.template,warranty:0 +msgid "Warranty (months)" +msgstr "" + #. module: product #: model:process.node,name:product.process_node_supplier0 msgid "Supplier Info" @@ -1369,8 +1376,8 @@ msgid "Variants" msgstr "" #. module: product -#: field:product.template,warranty:0 -msgid "Warranty (months)" +#: help:product.template,uom_id:0 +msgid "Default Unit of Measure used for all stock operation." msgstr "" #. module: product @@ -1488,11 +1495,6 @@ msgstr "" msgid "The weight of a full of products palet or box." msgstr "" -#. module: product -#: constraint:product.pricelist.version:0 -msgid "You can not have 2 pricelist version that overlaps!" -msgstr "" - #. module: product #: field:product.product,virtual_available:0 msgid "Virtual Stock" @@ -1526,10 +1528,8 @@ msgid "Unit" msgstr "" #. module: product -#: field:product.category,sequence:0 -#: field:product.packaging,sequence:0 -#: field:product.pricelist.item,sequence:0 -msgid "Sequence" +#: help:product.pricelist.item,product_id:0 +msgid "Set a product if this rule only apply to one product. Keep empty for all products" msgstr "" #. module: product diff --git a/addons/product_margin/i18n/product_margin.pot b/addons/product_margin/i18n/product_margin.pot index 3cc0dbbb58c..057dcab84a8 100644 --- a/addons/product_margin/i18n/product_margin.pot +++ b/addons/product_margin/i18n/product_margin.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_accounting/i18n/profile_accounting.pot b/addons/profile_accounting/i18n/profile_accounting.pot index 42b32fb8917..d3bc7402b0b 100644 --- a/addons/profile_accounting/i18n/profile_accounting.pot +++ b/addons/profile_accounting/i18n/profile_accounting.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_association/i18n/profile_association.pot b/addons/profile_association/i18n/profile_association.pot index 7e92d3a7842..6c732c1e6de 100644 --- a/addons/profile_association/i18n/profile_association.pot +++ b/addons/profile_association/i18n/profile_association.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_manufacturing/i18n/profile_manufacturing.pot b/addons/profile_manufacturing/i18n/profile_manufacturing.pot index 9cfe38a52f7..00161993a60 100644 --- a/addons/profile_manufacturing/i18n/profile_manufacturing.pot +++ b/addons/profile_manufacturing/i18n/profile_manufacturing.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/profile_service/i18n/profile_service.pot b/addons/profile_service/i18n/profile_service.pot index dc0b2fb6f29..da4569f9348 100644 --- a/addons/profile_service/i18n/profile_service.pot +++ b/addons/profile_service/i18n/profile_service.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project/i18n/project.pot b/addons/project/i18n/project.pot index 17bbd69b407..883aba6a963 100644 --- a/addons/project/i18n/project.pot +++ b/addons/project/i18n/project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -905,11 +905,6 @@ msgstr "" msgid "Remaining Hours" msgstr "" -#. module: project -#: model:process.node,note:project.process_node_triggerinvoice0 -msgid "Trigger invoices from sale order lines (sale subflow)" -msgstr "" - #. module: project #: field:project.project,timesheet_id:0 msgid "Working Time" @@ -1033,6 +1028,11 @@ msgstr "" msgid "Hours Spent" msgstr "" +#. module: project +#: model:process.node,note:project.process_node_triggerinvoice0 +msgid "Trigger invoices from sale order lines" +msgstr "" + #. module: project #: model:ir.actions.act_window,name:project.open_view_template_project #: model:ir.ui.menu,name:project.menu_template_project diff --git a/addons/project_gtd/i18n/project_gtd.pot b/addons/project_gtd/i18n/project_gtd.pot index e0da2f5f292..50c772b7a86 100644 --- a/addons/project_gtd/i18n/project_gtd.pot +++ b/addons/project_gtd/i18n/project_gtd.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/project_mrp/i18n/project_mrp.pot b/addons/project_mrp/i18n/project_mrp.pot index b03365fbb78..6c6ea81986f 100644 --- a/addons/project_mrp/i18n/project_mrp.pot +++ b/addons/project_mrp/i18n/project_mrp.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgid "For each product, on type service and on order" msgstr "" #. module: project_mrp -#: model:process.node,name:project_mrp.process_node_procuretask0 +#: model:process.node,name:project_mrp.process_node_mrptask0 #: model:process.node,name:project_mrp.process_node_procuretasktask0 msgid "Task" msgstr "" @@ -41,23 +41,13 @@ msgstr "" msgid "If procure method is Make to order and supply method is produce" msgstr "" -#. module: project_mrp -#: model:process.transition.action,name:project_mrp.process_transition_action_orderconfirmtask0 -msgid "Confirm" -msgstr "" - #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_procuretask0 msgid "Procure Task" msgstr "" #. module: project_mrp -#: model:process.transition.action,name:project_mrp.process_transition_action_taskrunprocurement0 -msgid "Run Procurement" -msgstr "" - -#. module: project_mrp -#: model:process.node,note:project_mrp.process_node_procuretask0 +#: model:process.node,note:project_mrp.process_node_mrptask0 msgid "A task is created to provide the service." msgstr "" @@ -66,23 +56,18 @@ msgstr "" msgid "Order Task" msgstr "" +#. module: project_mrp +#: model:process.node,name:project_mrp.process_node_saleordertask0 +msgid "Sale Order Task" +msgstr "" + #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_createtask0 msgid "Create Task" msgstr "" -#. module: project_mrp -#: model:process.transition.action,name:project_mrp.process_transition_action_ordercanceltask0 -msgid "Cancel" -msgstr "" - #. module: project_mrp #: model:process.node,note:project_mrp.process_node_saleordertask0 -msgid "In case you sell services on sale order (task subflow)" -msgstr "" - -#. module: project_mrp -#: model:process.node,name:project_mrp.process_node_saleordertask0 -msgid "Sale_Order_Task" +msgid "In case you sell services on sale order" msgstr "" diff --git a/addons/project_timesheet/i18n/project_timesheet.pot b/addons/project_timesheet/i18n/project_timesheet.pot index ed82129e161..bc37bb725ba 100644 --- a/addons/project_timesheet/i18n/project_timesheet.pot +++ b/addons/project_timesheet/i18n/project_timesheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/purchase/i18n/purchase.pot b/addons/purchase/i18n/purchase.pot index 624bf655271..0d7ce24f7de 100644 --- a/addons/purchase/i18n/purchase.pot +++ b/addons/purchase/i18n/purchase.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -97,6 +97,11 @@ msgstr "" msgid "Fax :" msgstr "" +#. module: purchase +#: model:process.transition,note:purchase.process_transition_productrecept0 +msgid "Create invoice from product recept" +msgstr "" + #. module: purchase #: help:purchase.order,pricelist_id:0 msgid "The pricelist sets the currency used for this purchase order. It also computes the supplier price for the selected products/quantities." @@ -241,6 +246,11 @@ msgid "From Order: a draft invoice will be pre-generated based on the purchase o "Manual: no invoice will be pre-generated. The accountant will have to encode manually." msgstr "" +#. module: purchase +#: model:process.node,note:purchase.process_node_packinginvoice0 +msgid "Invoice based on deliveries" +msgstr "" + #. module: purchase #: rml:purchase.order:0 msgid "Net Price" @@ -268,6 +278,11 @@ msgstr "" msgid "Confirmed" msgstr "" +#. module: purchase +#: model:process.node,name:purchase.process_node_productrecept0 +msgid "Product Receipt" +msgstr "" + #. module: purchase #: model:process.transition.action,name:purchase.process_transition_action_confirmpurchaseorder0 msgid "Confirm" @@ -278,6 +293,12 @@ msgstr "" msgid "Invoice Control" msgstr "" +#. module: purchase +#: model:process.node,name:purchase.process_node_draftpurchaseorder0 +#: model:process.node,name:purchase.process_node_draftpurchaseorder1 +msgid "RFQ" +msgstr "" + #. module: purchase #: selection:purchase.order,state:0 msgid "Waiting" @@ -522,6 +543,11 @@ msgstr "" msgid "Request for quotation is proposed by the system." msgstr "" +#. module: purchase +#: model:process.transition,name:purchase.process_transition_packinginvoice0 +msgid "Packing Invoice" +msgstr "" + #. module: purchase #: model:process.transition,note:purchase.process_transition_invoicefrompackinglist0 msgid "Creates invoice from packin list" @@ -543,6 +569,11 @@ msgstr "" msgid "There is no expense account defined for this product: \"%s\" (id:%d)" msgstr "" +#. module: purchase +#: model:process.node,name:purchase.process_node_packinginvoice0 +msgid "Out Packing" +msgstr "" + #. module: purchase #: model:process.transition,note:purchase.process_transition_purchaseinvoice0 msgid "After Purchase order , Create invoice." @@ -669,8 +700,6 @@ msgstr "" #. module: purchase #: model:ir.actions.report.xml,name:purchase.report_purchase_quotation #: selection:purchase.order,state:0 -#: model:process.node,name:purchase.process_node_draftpurchaseorder0 -#: model:process.node,name:purchase.process_node_draftpurchaseorder1 msgid "Request for Quotation" msgstr "" @@ -679,6 +708,11 @@ msgstr "" msgid "Tél. :" msgstr "" +#. module: purchase +#: model:process.node,note:purchase.process_node_productrecept0 +msgid "Control invoices on receptions" +msgstr "" + #. module: purchase #: rml:purchase.order:0 msgid "Date Req." @@ -707,6 +741,11 @@ msgstr "" msgid "Description" msgstr "" +#. module: purchase +#: model:process.transition,name:purchase.process_transition_productrecept0 +msgid "Product recept invoice" +msgstr "" + #. module: purchase #: rml:purchase.quotation:0 msgid "Expected Delivery address:" @@ -801,6 +840,11 @@ msgstr "" msgid "Purchase Management" msgstr "" +#. module: purchase +#: model:process.transition,note:purchase.process_transition_packinginvoice0 +msgid "From Packing list, Create invoice." +msgstr "" + #. module: purchase #: field:purchase.order,amount_total:0 msgid "Total" diff --git a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot index bab9d1b7a1a..64319e32df8 100644 --- a/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot +++ b/addons/purchase_analytic_plans/i18n/purchase_analytic_plans.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_account/i18n/report_account.pot b/addons/report_account/i18n/report_account.pot index 92b71261bb2..4c317a0ac5b 100644 --- a/addons/report_account/i18n/report_account.pot +++ b/addons/report_account/i18n/report_account.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic/i18n/report_analytic.pot b/addons/report_analytic/i18n/report_analytic.pot index b9a85975cbc..2c64d81e2b1 100644 --- a/addons/report_analytic/i18n/report_analytic.pot +++ b/addons/report_analytic/i18n/report_analytic.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_line/i18n/report_analytic_line.pot b/addons/report_analytic_line/i18n/report_analytic_line.pot index 012d254901a..743173530d8 100644 --- a/addons/report_analytic_line/i18n/report_analytic_line.pot +++ b/addons/report_analytic_line/i18n/report_analytic_line.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_analytic_planning/i18n/report_analytic_planning.pot b/addons/report_analytic_planning/i18n/report_analytic_planning.pot index 17f49e7d4d3..044dbba0774 100644 --- a/addons/report_analytic_planning/i18n/report_analytic_planning.pot +++ b/addons/report_analytic_planning/i18n/report_analytic_planning.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_crm/i18n/report_crm.pot b/addons/report_crm/i18n/report_crm.pot index b709034add4..ecc710d0ab6 100644 --- a/addons/report_crm/i18n/report_crm.pot +++ b/addons/report_crm/i18n/report_crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_document/i18n/report_document.pot b/addons/report_document/i18n/report_document.pot index aa634ff90d4..0dcf611c7d5 100644 --- a/addons/report_document/i18n/report_document.pot +++ b/addons/report_document/i18n/report_document.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_intrastat/i18n/report_intrastat.pot b/addons/report_intrastat/i18n/report_intrastat.pot index 1eee3ee3c70..ce35bf29e90 100644 --- a/addons/report_intrastat/i18n/report_intrastat.pot +++ b/addons/report_intrastat/i18n/report_intrastat.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_mrp/i18n/report_mrp.pot b/addons/report_mrp/i18n/report_mrp.pot index 0eceaa3f690..bb10317a7ba 100644 --- a/addons/report_mrp/i18n/report_mrp.pot +++ b/addons/report_mrp/i18n/report_mrp.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_project/i18n/report_project.pot b/addons/report_project/i18n/report_project.pot index ee7c4fc1e64..135585803cc 100644 --- a/addons/report_project/i18n/report_project.pot +++ b/addons/report_project/i18n/report_project.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_purchase/i18n/report_purchase.pot b/addons/report_purchase/i18n/report_purchase.pot index 1b8a18f5652..bc76b08c40a 100644 --- a/addons/report_purchase/i18n/report_purchase.pot +++ b/addons/report_purchase/i18n/report_purchase.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_sale/i18n/report_sale.pot b/addons/report_sale/i18n/report_sale.pot index 4e9ce1d1c03..7c01ac4bb9d 100644 --- a/addons/report_sale/i18n/report_sale.pot +++ b/addons/report_sale/i18n/report_sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/report_timesheet/i18n/report_timesheet.pot b/addons/report_timesheet/i18n/report_timesheet.pot index f6ea239439c..bbe00ef05d7 100644 --- a/addons/report_timesheet/i18n/report_timesheet.pot +++ b/addons/report_timesheet/i18n/report_timesheet.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale/i18n/sale.pot b/addons/sale/i18n/sale.pot index 36c9fc163fa..66c004fbfc4 100644 --- a/addons/sale/i18n/sale.pot +++ b/addons/sale/i18n/sale.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -153,13 +153,6 @@ msgstr "" msgid "Origin" msgstr "" -#. module: sale -#: model:process.node,name:sale.process_node_quotation0 -#: model:process.node,note:sale.process_node_saleorder0 -#: model:process.node,name:sale.process_node_saleorder0 -msgid "Ok" -msgstr "" - #. module: sale #: view:sale.order:0 msgid "Stock Moves" @@ -179,6 +172,7 @@ msgstr "" #: model:ir.model,name:sale.model_sale_order #: field:stock.picking,sale_id:0 #: view:sale.order:0 +#: model:process.node,name:sale.process_node_saleorder0 #: model:res.request.link,name:sale.req_link_sale_order msgid "Sale Order" msgstr "" @@ -610,6 +604,11 @@ msgstr "" msgid "Packing Default Policy" msgstr "" +#. module: sale +#: model:process.node,note:sale.process_node_saleorder0 +msgid "Manages the delivery and invoicing progress" +msgstr "" + #. module: sale #: field:sale.config.picking_policy,order_policy:0 msgid "Shipping Default Policy" @@ -813,6 +812,7 @@ msgstr "" #. module: sale #: selection:sale.order,state:0 +#: model:process.node,name:sale.process_node_quotation0 msgid "Quotation" msgstr "" diff --git a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot index 64d9512b88c..7700048a7c2 100644 --- a/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot +++ b/addons/sale_analytic_plans/i18n/sale_analytic_plans.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_crm/i18n/sale_crm.pot b/addons/sale_crm/i18n/sale_crm.pot index e0c26b6e98d..640b9ab76e2 100644 --- a/addons/sale_crm/i18n/sale_crm.pot +++ b/addons/sale_crm/i18n/sale_crm.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/sale_journal/i18n/sale_journal.pot b/addons/sale_journal/i18n/sale_journal.pot index f694671ad35..2f33ed11cf8 100644 --- a/addons/sale_journal/i18n/sale_journal.pot +++ b/addons/sale_journal/i18n/sale_journal.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/scrum/i18n/scrum.pot b/addons/scrum/i18n/scrum.pot index 82a1d567d64..46f01f70c3b 100644 --- a/addons/scrum/i18n/scrum.pot +++ b/addons/scrum/i18n/scrum.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock/i18n/stock.pot b/addons/stock/i18n/stock.pot index 836b795e0e2..0bb130d4ed0 100644 --- a/addons/stock/i18n/stock.pot +++ b/addons/stock/i18n/stock.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -151,11 +151,6 @@ msgstr "" msgid "Partner" msgstr "" -#. module: stock -#: model:process.node,note:stock.process_node_packinginvoice0 -msgid "Invoice based on deliveries" -msgstr "" - #. module: stock #: help:product.product,track_incoming:0 msgid "Force to use a Production Lot during receptions" @@ -277,16 +272,6 @@ msgstr "" msgid "Products Sent" msgstr "" -#. module: stock -#: model:process.node,note:stock.process_node_productrecept0 -msgid "Control invoices on receptions" -msgstr "" - -#. module: stock -#: selection:stock.location,icon:0 -msgid "STOCK_GOTO_FIRST" -msgstr "" - #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree6 #: model:ir.ui.menu,name:stock.menu_action_picking_tree6 @@ -515,11 +500,6 @@ msgstr "" msgid "Customer Invoice" msgstr "" -#. module: stock -#: model:process.node,name:stock.process_node_packinginvoice0 -msgid "Out Packing" -msgstr "" - #. module: stock #: field:stock.location,child_ids:0 msgid "Contains" @@ -618,11 +598,6 @@ msgstr "" msgid "STOCK_INDEX" msgstr "" -#. module: stock -#: model:process.transition,name:stock.process_transition_productrecept0 -msgid "Product recept invoice" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -1022,11 +997,6 @@ msgstr "" msgid "STOCK_APPLY" msgstr "" -#. module: stock -#: model:process.transition,note:stock.process_transition_packinginvoice0 -msgid "From Packing list, Create invoice." -msgstr "" - #. module: stock #: code:addons/stock/wizard/inventory_merge.py:0 #, python-format @@ -1198,11 +1168,6 @@ msgstr "" msgid "Available Moves" msgstr "" -#. module: stock -#: model:process.node,name:stock.process_node_productrecept0 -msgid "Product Recept" -msgstr "" - #. module: stock #: view:stock.inventory:0 msgid "Confirm Inventory" @@ -1319,11 +1284,6 @@ msgstr "" msgid "Tracking a move" msgstr "" -#. module: stock -#: model:process.transition,note:stock.process_transition_productrecept0 -msgid "Create invoice from product recept" -msgstr "" - #. module: stock #: selection:stock.location,icon:0 msgid "STOCK_FIND_AND_REPLACE" @@ -1738,7 +1698,7 @@ msgstr "" #. module: stock #: selection:stock.location,icon:0 -msgid "STOCK_REDO" +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: stock @@ -2228,11 +2188,6 @@ msgstr "" msgid "Packings" msgstr "" -#. module: stock -#: model:process.transition,name:stock.process_transition_packinginvoice0 -msgid "Packing Invoice" -msgstr "" - #. module: stock #: view:stock.location:0 msgid "Localisation" @@ -2462,6 +2417,11 @@ msgstr "" msgid "Move State" msgstr "" +#. module: stock +#: selection:stock.location,icon:0 +msgid "STOCK_REDO" +msgstr "" + #. module: stock #: model:stock.location,name:stock.stock_location_locations msgid "Physical Locations" diff --git a/addons/stock_location/i18n/stock_location.pot b/addons/stock_location/i18n/stock_location.pot index dc81cf8d771..5f1ce4b604f 100644 --- a/addons/stock_location/i18n/stock_location.pot +++ b/addons/stock_location/i18n/stock_location.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot index 3b0f06db717..c1e13fc7d0e 100644 --- a/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot +++ b/addons/stock_no_autopicking/i18n/stock_no_autopicking.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/subscription/i18n/subscription.pot b/addons/subscription/i18n/subscription.pot index e24b6e77782..0a756046930 100644 --- a/addons/subscription/i18n/subscription.pot +++ b/addons/subscription/i18n/subscription.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/warning/i18n/warning.pot b/addons/warning/i18n/warning.pot index df63eea2e07..2d552bec6c3 100644 --- a/addons/warning/i18n/warning.pot +++ b/addons/warning/i18n/warning.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/wiki/i18n/wiki.pot b/addons/wiki/i18n/wiki.pot index cd63aeab57b..a1ce6803d52 100644 --- a/addons/wiki/i18n/wiki.pot +++ b/addons/wiki/i18n/wiki.pot @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0_rc2\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2008-12-30 13:19:55+0000\n" +"PO-Revision-Date: 2008-12-30 13:19:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n"